| /GUIX-v6.2.1/ports/win32/src/renesas/ |
| D | gx_dave2d_simulation_display_driver_24xrgb_pixelmap_draw.c | 267 UCHAR temp; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() local 319 temp = (*get) & 0xf0; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 320 pixel = (GX_COLOR)(temp << 8) | pixel; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 321 temp = (*get++) & 0x0f; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 322 pixel = (GX_COLOR)(temp << 4) | pixel; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 324 temp = (*get++) & 0x0f; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 325 pixel = (GX_COLOR)(temp << 20) | pixel; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 358 temp = (*(get + 1)) & 0xf0; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 359 alpha_value = temp; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() 364 temp = (*get) & 0xf0; in _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write() [all …]
|
| D | gx_dave2d_simulation_display_driver_16bpp_pixelmap_draw.c | 236 UCHAR temp; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() local 294 temp = (*get) & 0xf0; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 295 pixel = (USHORT)(temp << 3) | pixel; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 296 temp = (*get++) & 0x0f; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 297 pixel = (USHORT)(temp << 1) | pixel; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 299 temp = (*get++) & 0x0f; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 300 pixel = (USHORT)(temp << 12) | pixel; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 337 temp = (*(get + 1)) & 0xf0; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 338 alpha_value = temp; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() 349 temp = (*get) & 0xf0; in _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write() [all …]
|
| D | gx_dave2d_simulation_display_driver_16bpp_rotated_pixelmap_draw.c | 265 UCHAR temp; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() local 347 temp = (*get) & 0xf0; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 348 pixel = (USHORT)(temp << 3) | pixel; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 349 temp = (*get++) & 0x0f; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 350 pixel = (USHORT)(temp << 1) | pixel; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 353 temp = (*get++) & 0x0f; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 354 pixel = (USHORT)(temp << 12) | pixel; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 392 temp = (*(get + 1)) & 0xf0; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 393 alpha_value = temp; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() 405 temp = (*get) & 0xf0; in _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write() [all …]
|
| /GUIX-v6.2.1/guix_studio/ |
| D | splash_screen.cpp | 148 CString temp; in OnPaint() local 165 temp = "Version "; in OnPaint() 166 temp += studiox_version_string; in OnPaint() 167 dc->TextOut(xpos, ypos, temp); in OnPaint() 180 temp = "Studio Build Date: "; in OnPaint() 181 temp += month + '-' + day + '-' + year; in OnPaint() 182 dc->DrawText(temp, rc, DT_LEFT|DT_SINGLELINE); in OnPaint()
|
| D | template_service_provider.cpp | 68 CString temp = prefix + info->app_name; in WriteExtendedProperties() local 69 out.Format(_T("GX_TEMPLATE_PROPERTIES %s_properties =\n{\n"), temp); in WriteExtendedProperties() 73 …temp.Format(_T(" &%s%s_define, /* base info */\n"), gen->GetScreenNamePrefix(), base->app_name… in WriteExtendedProperties() 77 temp.Format(_T(" %s_%s_define, /* base info */\n"), parent_name, base->app_name); in WriteExtendedProperties() 79 out += temp; in WriteExtendedProperties() 80 … temp.Format(_T(" %s, /* base create function */\n"), bp->GetCreateFromDefFunctionName()); in WriteExtendedProperties() 81 out += temp; in WriteExtendedProperties() 83 temp.Format(_T(" {%d, %d, %d, %d} /* widget size */\n};\n"), in WriteExtendedProperties() 88 out += temp; in WriteExtendedProperties()
|
| D | menu_service_provider.cpp | 297 GX_WIDGET *temp; in TopLevelMenuContainerFind() local 316 temp = TopLevelMenuContainerFind(parent); in TopLevelMenuContainerFind() 317 if (temp) in TopLevelMenuContainerFind() 319 found = temp; in TopLevelMenuContainerFind() 330 temp = TopLevelMenuContainerFind(parent); in TopLevelMenuContainerFind() 331 if (temp) in TopLevelMenuContainerFind() 333 found = temp; in TopLevelMenuContainerFind()
|
| D | string_scroll_wheel_service_provider.cpp | 68 CString temp; in WriteExtendedProperties() local 93 temp.Format(_T(" \"%s\"\n"), string); in WriteExtendedProperties() 97 temp.Format(_T(" \"%s\",\n"), string); in WriteExtendedProperties() 99 out.Append(temp); in WriteExtendedProperties() 113 temp.Format(_T(" %s\n"), id_name); in WriteExtendedProperties() 117 temp.Format(_T(" %s,\n"), id_name); in WriteExtendedProperties() 119 out.Append(temp); in WriteExtendedProperties() 135 temp.Format(_T("GX_STRING_SCROLL_WHEEL_PROPERTIES %s_properties =\n") in WriteExtendedProperties() 146 out.Append(temp); in WriteExtendedProperties()
|
| D | sprite_service_provider.cpp | 98 CString temp; in WriteExtendedProperties() local 128 temp.Format(_T(" {\n") in WriteExtendedProperties() 145 temp += "\n"; in WriteExtendedProperties() 149 temp += ",\n"; in WriteExtendedProperties() 151 list += temp; in WriteExtendedProperties() 156 temp.Format(_T("GX_SPRITE_PROPERTIES %s_properties =\n") in WriteExtendedProperties() 163 list += temp; in WriteExtendedProperties()
|
| /GUIX-v6.2.1/ports/win32/src/ |
| D | gx_win32_display_driver_4bpp_grayscale.c | 69 INT temp = 0; in win32_4bpp_grayscale_bitmap_header_create() local 85 color = (temp << 16) | (temp << 8) | temp | 0xff000000; in win32_4bpp_grayscale_bitmap_header_create() 87 temp += 0x11; in win32_4bpp_grayscale_bitmap_header_create()
|
| /GUIX-v6.2.1/samples/demo_guix_calculator/ |
| D | evaluate.c | 250 double temp; in dtoa() local 268 temp = ans; in dtoa() 269 while(temp >= 10) in dtoa() 271 temp /= 10; in dtoa() 278 temp = sw_pow(10, digit_num - 1); in dtoa() 281 integer = (INT)(ans / temp); in dtoa() 283 ans -= integer * temp; in dtoa() 284 temp /= 10; in dtoa()
|
| /GUIX-v6.2.1/common/src/ |
| D | gx_system_private_string.c | 542 GX_UBYTE *temp; in _gx_system_private_string_get() local 558 temp = (GX_UBYTE *)input -> gx_string_ptr; in _gx_system_private_string_get() 559 temp += 2; in _gx_system_private_string_get() 560 output -> gx_string_ptr = (GX_CHAR *)temp; in _gx_system_private_string_get() 615 GX_UBYTE *temp; in _gx_system_private_string_list_get() local 623 temp = (GX_UBYTE *)input; in _gx_system_private_string_list_get() 624 temp += 2; in _gx_system_private_string_list_get() 626 *output = (GX_CONST GX_CHAR **)temp; in _gx_system_private_string_list_get()
|
| D | gx_animation_drag_event_process.c | 93 INT temp; in _gx_animation_drag_event_check() local 183 temp = animation -> gx_animation_slide_target_index_1; in _gx_animation_drag_event_check() 185 animation -> gx_animation_slide_target_index_2 = (GX_VALUE)temp; in _gx_animation_drag_event_check() 230 temp = animation -> gx_animation_slide_target_index_1; in _gx_animation_drag_event_check() 232 animation -> gx_animation_slide_target_index_2 = (GX_VALUE)temp; in _gx_animation_drag_event_check()
|
| D | gx_binres_theme_load.c | 758 UINT temp; in _gx_binres_font_buffer_size_get() local 813 temp = sizeof(GX_FONT); in _gx_binres_font_buffer_size_get() 818 temp += sizeof(GX_COMPRESSED_GLYPH) * glyph_count; in _gx_binres_font_buffer_size_get() 823 temp += sizeof(GX_KERNING_GLYPH) * glyph_count; in _gx_binres_font_buffer_size_get() 828 temp += sizeof(GX_GLYPH) * glyph_count; in _gx_binres_font_buffer_size_get() 831 GX_UTILITY_MATH_UINT_ADD(size, temp, size); in _gx_binres_font_buffer_size_get() 908 UINT temp; in _gx_binres_theme_buffer_allocate() local 955 status = _gx_binres_font_buffer_size_get(info, &temp, GX_FALSE); in _gx_binres_theme_buffer_allocate() 962 … GX_UTILITY_MATH_UINT_ADD(info -> gx_binres_buffer_size, temp, info -> gx_binres_buffer_size); in _gx_binres_theme_buffer_allocate() 970 … temp = ((UINT)(theme_header.gx_theme_header_pixelmap_count + 1)) * sizeof(GX_PIXELMAP *); in _gx_binres_theme_buffer_allocate() [all …]
|
| /GUIX-v6.2.1/cmake/ |
| D | utilities.cmake | 3 # Store the current list in a temp 11 # Add this target into the temp 13 # Copy the temp back up to the parent list
|
| /GUIX-v6.2.1/test/example_internal/drop_list/ |
| D | demo_guix_drop_list.c | 78 GX_CHAR temp[10]; in drop_list_row_create() local 84 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 85 strcat(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/tutorials/demo_guix_drop_list/ |
| D | demo_guix_drop_list.c | 125 GX_CHAR temp[10]; in drop_list_row_create() local 131 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 132 strcat(item->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_5_2_0/ |
| D | demo_guix_all_widgets_5_2_0.c | 156 GX_CHAR temp[10]; in drop_list_row_create() local 161 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 162 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_5_2_5/ |
| D | demo_guix_all_widgets_5_2_5.c | 180 GX_CHAR temp[10]; in drop_list_row_create() local 185 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 186 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_32argb/ |
| D | demo_guix_all_widgets_32argb.c | 266 GX_CHAR temp[10]; in drop_list_row_create() local 272 gx_utility_ltoa(index + 1, temp, sizeof(temp)); in drop_list_row_create() 273 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_synergy_565rgb/ |
| D | demo_guix_all_widgets_synergy_565rgb.c | 190 GX_CHAR temp[10]; in drop_list_row_create() local 196 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 197 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_synergy_16bpp_flip/ |
| D | demo_guix_all_widgets_synergy_16bpp_flip.c | 190 GX_CHAR temp[10]; in drop_list_row_create() local 196 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 197 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_synergy_8bpp/ |
| D | demo_guix_all_widgets_synergy_8bpp.c | 204 GX_CHAR temp[10]; in drop_list_row_create() local 209 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 210 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_synergy_8bpp_6_1_3/ |
| D | demo_guix_all_widgets_synergy_8bpp_6_1_3.c | 204 GX_CHAR temp[10]; in drop_list_row_create() local 209 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 210 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_synergy_8bpp_rotated_ccw/ |
| D | demo_guix_all_widgets_synergy_8bpp_rotated_ccw.c | 213 GX_CHAR temp[10]; in drop_list_row_create() local 218 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 219 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|
| /GUIX-v6.2.1/test/example_internal/all_widgets_5_3_0/ |
| D | demo_guix_all_widgets_5_3_0.c | 212 GX_CHAR temp[10]; in drop_list_row_create() local 217 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create() 218 GX_STRCAT(entry->text, (char*)temp); in drop_list_row_create()
|