Home
last modified time | relevance | path

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

/GUIX-v6.2.1/ports/win32/src/
Dgx_win32_display_driver_4bpp_grayscale.c70 INT temp = 0; in win32_4bpp_grayscale_bitmap_header_create() local
86 color = (temp << 16) | (temp << 8) | temp | 0xff000000; in win32_4bpp_grayscale_bitmap_header_create()
88 temp += 0x11; in win32_4bpp_grayscale_bitmap_header_create()
/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/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.c543 GX_UBYTE *temp; in _gx_system_private_string_get() local
559 temp = (GX_UBYTE *)input -> gx_string_ptr; in _gx_system_private_string_get()
560 temp += 2; in _gx_system_private_string_get()
561 output -> gx_string_ptr = (GX_CHAR *)temp; in _gx_system_private_string_get()
616 GX_UBYTE *temp; in _gx_system_private_string_list_get() local
624 temp = (GX_UBYTE *)input; in _gx_system_private_string_list_get()
625 temp += 2; in _gx_system_private_string_list_get()
627 *output = (GX_CONST GX_CHAR **)temp; in _gx_system_private_string_list_get()
Dgx_animation_drag_event_process.c94 INT temp; in _gx_animation_drag_event_check() local
184 temp = animation -> gx_animation_slide_target_index_1; in _gx_animation_drag_event_check()
186 animation -> gx_animation_slide_target_index_2 = (GX_VALUE)temp; in _gx_animation_drag_event_check()
231 temp = animation -> gx_animation_slide_target_index_1; in _gx_animation_drag_event_check()
233 animation -> gx_animation_slide_target_index_2 = (GX_VALUE)temp; in _gx_animation_drag_event_check()
Dgx_binres_theme_load.c746 UINT temp; in _gx_binres_theme_buffer_allocate() local
837 temp = sizeof(GX_FONT); in _gx_binres_theme_buffer_allocate()
842 temp += sizeof(GX_COMPRESSED_GLYPH) * glyph_count; in _gx_binres_theme_buffer_allocate()
847 temp += sizeof(GX_KERNING_GLYPH) * glyph_count; in _gx_binres_theme_buffer_allocate()
852 temp += sizeof(GX_GLYPH) * glyph_count; in _gx_binres_theme_buffer_allocate()
855 … GX_UTILITY_MATH_UINT_ADD(info -> gx_binres_buffer_size, temp, info -> gx_binres_buffer_size); in _gx_binres_theme_buffer_allocate()
871temp = ((UINT)(theme_header.gx_theme_header_pixelmap_count + 1)) * sizeof(GX_PIXELMAP *); in _gx_binres_theme_buffer_allocate()
872 temp += sizeof(GX_PIXELMAP) * theme_header.gx_theme_header_pixelmap_count; in _gx_binres_theme_buffer_allocate()
874 … GX_UTILITY_MATH_UINT_ADD(info -> gx_binres_buffer_size, temp, info -> gx_binres_buffer_size); in _gx_binres_theme_buffer_allocate()
Dgx_display_driver_generic_polygon_fill.c634 GX_POLYGON_EDGE temp; in _gx_display_driver_polygon_active_edge_table_update_and_restore() local
663 temp = aet[yi]; in _gx_display_driver_polygon_active_edge_table_update_and_restore()
665 aet[xi] = temp; in _gx_display_driver_polygon_active_edge_table_update_and_restore()
Dgx_display_driver_generic_rotated_polygon_fill.c737 GX_POLYGON_EDGE temp; in _gx_display_driver_polygon_active_edge_table_update_and_restore() local
766 temp = aet[yi]; in _gx_display_driver_polygon_active_edge_table_update_and_restore()
768 aet[xi] = temp; in _gx_display_driver_polygon_active_edge_table_update_and_restore()
Dgx_utility_bidi_paragraph_reorder.c1680 INT temp = 0; in _gx_utility_bidi_bracket_pair_search() local
1754 temp = bracket_pair[run_index]; in _gx_utility_bidi_bracket_pair_search()
1756 bracket_pair[text_index] = temp; in _gx_utility_bidi_bracket_pair_search()
1758 temp = bracket_pair[run_index + 1]; in _gx_utility_bidi_bracket_pair_search()
1760 bracket_pair[text_index + 1] = temp; in _gx_utility_bidi_bracket_pair_search()
2578 GX_BIDI_UNIT temp; in _gx_utility_bidi_reordering_resolve_2() local
2643 temp = *unit; in _gx_utility_bidi_reordering_resolve_2()
2645 *tail_unit = temp; in _gx_utility_bidi_reordering_resolve_2()
/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/samples/demo_guix_widget_types/
Ddemo_guix_widget_types.c388 GX_CHAR temp[10]; in drop_list_row_create() local
394 gx_utility_ltoa(index + 1, temp, 10); in drop_list_row_create()
395 strcat(entry->text, (char*)temp); in drop_list_row_create()