Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 91) sorted by relevance

1234

/GUIX-v6.2.1/ports/win32/src/renesas/
Dgx_dave2d_simulation_display_driver_24xrgb_pixelmap_draw.c267 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 …]
Dgx_dave2d_simulation_display_driver_16bpp_pixelmap_draw.c236 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 …]
Dgx_dave2d_simulation_display_driver_16bpp_rotated_pixelmap_draw.c265 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/
Dsplash_screen.cpp148 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()
Dtemplate_service_provider.cpp68 CString temp = prefix + info->app_name; in WriteExtendedProperties() local
69 out.Format(_T("GX_TEMPLATE_PROPERTIES %s_properties =\n{\n"), temp); in WriteExtendedProperties()
73temp.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()
80temp.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()
Dmenu_service_provider.cpp297 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()
Dstring_scroll_wheel_service_provider.cpp68 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()
Dsprite_service_provider.cpp98 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/
Dgx_win32_display_driver_4bpp_grayscale.c69 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/
Devaluate.c250 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/
Dgx_system_private_string.c542 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()
Dgx_animation_drag_event_process.c93 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()
Dgx_binres_theme_load.c758 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()
970temp = ((UINT)(theme_header.gx_theme_header_pixelmap_count + 1)) * sizeof(GX_PIXELMAP *); in _gx_binres_theme_buffer_allocate()
[all …]
/GUIX-v6.2.1/cmake/
Dutilities.cmake3 # 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/
Ddemo_guix_drop_list.c78 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/
Ddemo_guix_drop_list.c125 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/
Ddemo_guix_all_widgets_5_2_0.c156 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/
Ddemo_guix_all_widgets_5_2_5.c180 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/
Ddemo_guix_all_widgets_32argb.c266 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/
Ddemo_guix_all_widgets_synergy_565rgb.c190 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/
Ddemo_guix_all_widgets_synergy_16bpp_flip.c190 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/
Ddemo_guix_all_widgets_synergy_8bpp.c204 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/
Ddemo_guix_all_widgets_synergy_8bpp_6_1_3.c204 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/
Ddemo_guix_all_widgets_synergy_8bpp_rotated_ccw.c213 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/
Ddemo_guix_all_widgets_5_3_0.c212 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()

1234