Home
last modified time | relevance | path

Searched refs:memptr (Results 1 – 25 of 136) sorted by relevance

123456

/GUIX-v6.2.1/test/guix_test/regression_test/utility/
Dgx_validation_display_driver_16bpp.c92 USHORT *memptr; in _gx_validation_display_buffer_16bpp_toggle() local
155 memptr = (USHORT *)rotated_memory; in _gx_validation_display_buffer_16bpp_toggle()
159 memptr = (USHORT *)(canvas -> gx_canvas_memory); in _gx_validation_display_buffer_16bpp_toggle()
163 memptr += (ysrc - canvas->gx_canvas_memory_offset_y) * canvas -> gx_canvas_memory_width; in _gx_validation_display_buffer_16bpp_toggle()
164 memptr += (xsrc - canvas->gx_canvas_memory_offset_x); in _gx_validation_display_buffer_16bpp_toggle()
166 memptr += ysrc * canvas -> gx_canvas_x_resolution; in _gx_validation_display_buffer_16bpp_toggle()
167 memptr += xsrc; in _gx_validation_display_buffer_16bpp_toggle()
178 memcpy((char *)frame_buffer, (char *)memptr, copy_width * sizeof(USHORT)); in _gx_validation_display_buffer_16bpp_toggle()
181 memptr += canvas -> gx_canvas_memory_width; in _gx_validation_display_buffer_16bpp_toggle()
183 memptr += canvas -> gx_canvas_x_resolution; in _gx_validation_display_buffer_16bpp_toggle()
Dgx_validation_display_driver_32bpp.c91 ULONG *memptr; in _gx_validation_display_buffer_32bpp_toggle() local
146 memptr = (GX_COLOR *)rotated_memory; in _gx_validation_display_buffer_32bpp_toggle()
150 memptr = (GX_COLOR *)(canvas -> gx_canvas_memory); in _gx_validation_display_buffer_32bpp_toggle()
153 memptr = memptr + overlap.gx_rectangle_top * canvas -> gx_canvas_x_resolution; in _gx_validation_display_buffer_32bpp_toggle()
154 memptr += overlap.gx_rectangle_left; in _gx_validation_display_buffer_32bpp_toggle()
164 memcpy((char *)frame_buffer, (char *)memptr, copy_width * sizeof(GX_COLOR)); in _gx_validation_display_buffer_32bpp_toggle()
167 memptr += canvas -> gx_canvas_x_resolution; in _gx_validation_display_buffer_32bpp_toggle()
Dgx_validation_display_driver_8bpp.c89 GX_UBYTE *memptr; in _gx_validation_display_buffer_8bpp_toggle() local
145 memptr = (GX_UBYTE *)rotated_memory; in _gx_validation_display_buffer_8bpp_toggle()
149 memptr = (GX_UBYTE *)(canvas -> gx_canvas_memory); in _gx_validation_display_buffer_8bpp_toggle()
152 memptr += overlap.gx_rectangle_top * canvas -> gx_canvas_x_resolution; in _gx_validation_display_buffer_8bpp_toggle()
153 memptr += overlap.gx_rectangle_left; in _gx_validation_display_buffer_8bpp_toggle()
163 memcpy((char *)frame_buffer, (char *)memptr, copy_width); in _gx_validation_display_buffer_8bpp_toggle()
165 memptr += canvas -> gx_canvas_x_resolution; in _gx_validation_display_buffer_8bpp_toggle()
/GUIX-v6.2.1/common/src/
Dgx_utility_alphamap_create.c75 GX_UBYTE *memptr; in _gx_utility_alphamap_create() local
93 memptr = (GX_UBYTE *)(_gx_system_memory_allocator(memsize)); in _gx_utility_alphamap_create()
95 if (memptr == GX_NULL) in _gx_utility_alphamap_create()
103 map -> gx_pixelmap_data = memptr; in _gx_utility_alphamap_create()
111 memset(memptr, 0, (size_t)memsize); in _gx_utility_alphamap_create()
/GUIX-v6.2.1/test/example_internal/png_draw_32bpp/
Ddemo_guix_png_draw_32bpp.c36 VOID *memptr; in decode_memory_allocate() local
37 if (tx_byte_allocate(&decode_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in decode_memory_allocate()
39 return memptr; in decode_memory_allocate()
/GUIX-v6.2.1/test/example_internal/png_draw_16bpp/
Ddemo_guix_png_draw_16bpp.c36 VOID *memptr; in decode_memory_allocate() local
37 if (tx_byte_allocate(&decode_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in decode_memory_allocate()
39 return memptr; in decode_memory_allocate()
/GUIX-v6.2.1/test/example_internal/runtime_allocate_16bpp/
Ddemo_runtime_allocate_16bpp.c34 VOID *memptr; in memory_allocate() local
36 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
38 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/template/
Ddemo_guix_template.c31 VOID *memptr; in memory_allocate() local
33 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
35 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/bidi_text_line_break_runtime/
Ddemo_guix_bidi_text_line_break_runtime.c34 VOID *memptr; in memory_allocate() local
36 if (tx_byte_allocate(&mem_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
38 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/system_screen_stack/
Ddemo_guix_system_screen_stack.c43 VOID *memptr; in memory_allocate() local
45 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
47 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/thai_glyph_shaping_runtime/
Ddemo_thai_glyph_shaping_runtime.c39 VOID *memptr; in memory_allocate() local
41 if (tx_byte_allocate(&mem_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
43 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/jpeg_draw_16bpp/
Ddemo_guix_jpeg_draw_16bpp.c42 VOID *memptr; in decode_memory_allocate() local
43 if (tx_byte_allocate(&decode_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in decode_memory_allocate()
45 return memptr; in decode_memory_allocate()
/GUIX-v6.2.1/test/example_internal/jpeg_draw_32bpp/
Ddemo_guix_jpeg_draw_32bpp.c44 VOID *memptr; in decode_memory_allocate() local
45 if (tx_byte_allocate(&decode_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in decode_memory_allocate()
47 return memptr; in decode_memory_allocate()
/GUIX-v6.2.1/test/guix_test/regression_test/tests/
Dvalidation_guix_image_reader_colorspace_convert_4bpp.c72 VOID *memptr; in test_memory_allocate() local
74 if (tx_byte_allocate(&test_memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in test_memory_allocate()
76 return memptr; in test_memory_allocate()
Dvalidation_guix_image_reader_start_no_output.c47 VOID *memptr; in test_memory_allocate() local
61 if (tx_byte_allocate(&decode_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in test_memory_allocate()
63 return memptr; in test_memory_allocate()
/GUIX-v6.2.1/test/example_internal/widgets_with_private_string/
Ddemo_guix_widgets_with_private_string.c44 VOID *memptr; in rotate_memory_allocate() local
46 if (tx_byte_allocate(&rotate_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in rotate_memory_allocate()
48 return memptr; in rotate_memory_allocate()
/GUIX-v6.2.1/samples/demo_guix_thermostat/
Ddemo_guix_thermostat.c32 VOID *memptr; in memory_allocate() local
34 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
36 return memptr; in memory_allocate()
/GUIX-v6.2.1/tutorials/demo_guix_circular_gauge/
Ddemo_guix_circular_gauge.c36 VOID *memptr; in memory_allocate() local
38 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
40 return memptr; in memory_allocate()
/GUIX-v6.2.1/tutorials/demo_guix_runtime_bidi_text/
Ddemo_guix_runtime_bidi_text.c40 VOID *memptr; in memory_allocate() local
42 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
44 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/thai_glyph_shaping/
Ddemo_thai_glyph_shaping.c39 VOID *memptr; in memory_allocate() local
41 if (tx_byte_allocate(&mem_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
43 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/arabic_glyph_shaping/
Ddemo_arabic_glyph_shaping.c39 VOID *memptr; in memory_allocate() local
41 if (tx_byte_allocate(&mem_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
43 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/dynamic_menu/
Ddemo_guix_menu.c39 VOID *memptr; in demo_allocator() local
41 if (tx_byte_allocate(&byte_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in demo_allocator()
43 return memptr; in demo_allocator()
/GUIX-v6.2.1/test/example_internal/bidi_text_line_break_static/
Ddemo_guix_bidi_text_line_break_static.c45 VOID* memptr; in memory_allocate() local
47 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
49 return memptr; in memory_allocate()
/GUIX-v6.2.1/test/example_internal/two_displays_binres/
Ddemo_guix_two_displays_binres.c41 VOID* memptr; in memory_allocate() local
43 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
45 return memptr; in memory_allocate()
/GUIX-v6.2.1/tutorials/demo_guix_binres_standalone/
Ddemo_guix_binres_standalone.c44 VOID* memptr; in memory_allocate() local
46 if (tx_byte_allocate(&memory_pool, &memptr, size, TX_NO_WAIT) == TX_SUCCESS) in memory_allocate()
48 return memptr; in memory_allocate()

123456