Home
last modified time | relevance | path

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

/GUIX-v6.2.1/common/src/
Dgx_display_driver_8bpp_rotated_canvas_copy.c77 GX_UBYTE *read; in _gx_display_driver_8bpp_rotated_canvas_copy() local
92 read = (GX_UBYTE *)canvas -> gx_canvas_memory; in _gx_display_driver_8bpp_rotated_canvas_copy()
98read += (dirty.gx_rectangle_right - overlap.gx_rectangle_right) * canvas -> gx_canvas_y_resolution; in _gx_display_driver_8bpp_rotated_canvas_copy()
101 read += overlap.gx_rectangle_top - dirty.gx_rectangle_top; in _gx_display_driver_8bpp_rotated_canvas_copy()
110read += (overlap.gx_rectangle_left - dirty.gx_rectangle_left) * canvas -> gx_canvas_y_resolution; in _gx_display_driver_8bpp_rotated_canvas_copy()
113 read += dirty.gx_rectangle_bottom - overlap.gx_rectangle_bottom; in _gx_display_driver_8bpp_rotated_canvas_copy()
122 memcpy(write, read, (size_t)width); /* Use case of memcpy is verified. */ in _gx_display_driver_8bpp_rotated_canvas_copy()
125 read += canvas -> gx_canvas_y_resolution; in _gx_display_driver_8bpp_rotated_canvas_copy()
Dgx_display_driver_32bpp_rotated_canvas_copy.c77 ULONG *read; in _gx_display_driver_32bpp_rotated_canvas_copy() local
91 read = (ULONG *)canvas -> gx_canvas_memory; in _gx_display_driver_32bpp_rotated_canvas_copy()
97read += (dirty.gx_rectangle_right - overlap.gx_rectangle_right) * canvas -> gx_canvas_y_resolution; in _gx_display_driver_32bpp_rotated_canvas_copy()
100 read += overlap.gx_rectangle_top - dirty.gx_rectangle_top; in _gx_display_driver_32bpp_rotated_canvas_copy()
109read += (overlap.gx_rectangle_left - dirty.gx_rectangle_left) * canvas -> gx_canvas_y_resolution; in _gx_display_driver_32bpp_rotated_canvas_copy()
112 read += dirty.gx_rectangle_bottom - overlap.gx_rectangle_bottom; in _gx_display_driver_32bpp_rotated_canvas_copy()
121 memcpy(write, read, (size_t)width * 4); /* Use case of memcpy is verified. */ in _gx_display_driver_32bpp_rotated_canvas_copy()
124 read += canvas -> gx_canvas_y_resolution; in _gx_display_driver_32bpp_rotated_canvas_copy()
Dgx_display_driver_16bpp_rotated_canvas_copy.c77 USHORT *read; in _gx_display_driver_16bpp_rotated_canvas_copy() local
92 read = (USHORT *)canvas -> gx_canvas_memory; in _gx_display_driver_16bpp_rotated_canvas_copy()
98read += (dirty.gx_rectangle_right - overlap.gx_rectangle_right) * canvas -> gx_canvas_y_resolution; in _gx_display_driver_16bpp_rotated_canvas_copy()
101 read += overlap.gx_rectangle_top - dirty.gx_rectangle_top; in _gx_display_driver_16bpp_rotated_canvas_copy()
110read += (overlap.gx_rectangle_left - dirty.gx_rectangle_left) * canvas -> gx_canvas_y_resolution; in _gx_display_driver_16bpp_rotated_canvas_copy()
113 read += dirty.gx_rectangle_bottom - overlap.gx_rectangle_bottom; in _gx_display_driver_16bpp_rotated_canvas_copy()
122 memcpy(write, read, (size_t)(width * 2)); /* Use case of memcpy is verified. */ in _gx_display_driver_16bpp_rotated_canvas_copy()
125 read += canvas -> gx_canvas_y_resolution; in _gx_display_driver_16bpp_rotated_canvas_copy()
Dgx_display_driver_32bpp_canvas_copy.c79 ULONG *read; in _gx_display_driver_32bpp_canvas_copy() local
93 read = (ULONG *)canvas -> gx_canvas_memory; in _gx_display_driver_32bpp_canvas_copy()
96read += (overlap.gx_rectangle_top - dirty.gx_rectangle_top) * canvas -> gx_canvas_x_resolution; in _gx_display_driver_32bpp_canvas_copy()
100 read += overlap.gx_rectangle_left - dirty.gx_rectangle_left; in _gx_display_driver_32bpp_canvas_copy()
109 memcpy(write, read, (size_t)width * 4); /* Use case of memcpy is verified. */ in _gx_display_driver_32bpp_canvas_copy()
112 read += canvas -> gx_canvas_x_resolution; in _gx_display_driver_32bpp_canvas_copy()
Dgx_display_driver_8bpp_canvas_copy.c79 GX_UBYTE *read; in _gx_display_driver_8bpp_canvas_copy() local
93 read = (GX_UBYTE *)canvas -> gx_canvas_memory; in _gx_display_driver_8bpp_canvas_copy()
96read += (overlap.gx_rectangle_top - dirty.gx_rectangle_top) * canvas -> gx_canvas_x_resolution; in _gx_display_driver_8bpp_canvas_copy()
100 read += overlap.gx_rectangle_left - dirty.gx_rectangle_left; in _gx_display_driver_8bpp_canvas_copy()
109 memcpy(write, read, (size_t)width); /* Use case of memcpy is verified. */ in _gx_display_driver_8bpp_canvas_copy()
112 read += canvas -> gx_canvas_x_resolution; in _gx_display_driver_8bpp_canvas_copy()
Dgx_display_driver_16bpp_canvas_copy.c82 USHORT *read; in _gx_display_driver_16bpp_canvas_copy() local
104 read = (USHORT *)canvas -> gx_canvas_memory; in _gx_display_driver_16bpp_canvas_copy()
107read += (overlap.gx_rectangle_top - dirty.gx_rectangle_top) * canvas -> gx_canvas_x_resolution; in _gx_display_driver_16bpp_canvas_copy()
111 read += overlap.gx_rectangle_left - dirty.gx_rectangle_left; in _gx_display_driver_16bpp_canvas_copy()
120 memcpy(write, read, (size_t)(width * 2)); /* Use case of memcpy is verified. */ in _gx_display_driver_16bpp_canvas_copy()
123 read += canvas -> gx_canvas_x_resolution; in _gx_display_driver_16bpp_canvas_copy()
Dgx_display_driver_1bpp_canvas_copy.c77 GX_UBYTE *read; in _gx_display_driver_1bpp_canvas_copy() local
105 read = (GX_UBYTE *)canvas -> gx_canvas_memory; in _gx_display_driver_1bpp_canvas_copy()
107 read += read_pos; in _gx_display_driver_1bpp_canvas_copy()
114 if (((*read) & read_mask) == read_mask) in _gx_display_driver_1bpp_canvas_copy()
126 read++; in _gx_display_driver_1bpp_canvas_copy()
Dgx_display_driver_4bpp_canvas_copy.c77 GX_UBYTE *read; in _gx_display_driver_4bpp_canvas_copy() local
106 read = (GX_UBYTE *)canvas->gx_canvas_memory; in _gx_display_driver_4bpp_canvas_copy()
109 read += read_pos; in _gx_display_driver_4bpp_canvas_copy()
132 color = (*read) & read_mask; in _gx_display_driver_4bpp_canvas_copy()
161 read++; in _gx_display_driver_4bpp_canvas_copy()
Dgx_display_driver_1555xrgb_canvas_blend.c93 USHORT *read; in _gx_display_driver_1555xrgb_canvas_blend() local
133 read = read_start; in _gx_display_driver_1555xrgb_canvas_blend()
139 fcolor = *read++; in _gx_display_driver_1555xrgb_canvas_blend()
Dgx_display_driver_24xrgb_canvas_blend.c92 ULONG *read; in _gx_display_driver_24xrgb_canvas_blend() local
132 read = read_start; in _gx_display_driver_24xrgb_canvas_blend()
138 fcolor = *read++; in _gx_display_driver_24xrgb_canvas_blend()
Dgx_display_driver_24xrgb_rotated_canvas_blend.c77 ULONG *read; in _gx_display_driver_24xrgb_rotated_canvas_blend() local
131 read = read_start; in _gx_display_driver_24xrgb_rotated_canvas_blend()
137 fcolor = *read++; in _gx_display_driver_24xrgb_rotated_canvas_blend()
Dgx_display_driver_565rgb_canvas_blend.c94 USHORT *read; in _gx_display_driver_565rgb_canvas_blend() local
142 read = read_start; in _gx_display_driver_565rgb_canvas_blend()
148 fcolor = *read++; in _gx_display_driver_565rgb_canvas_blend()
Dgx_display_driver_565rgb_rotated_canvas_blend.c90 USHORT *read; in _gx_display_driver_565rgb_rotated_canvas_blend() local
144 read = read_start; in _gx_display_driver_565rgb_rotated_canvas_blend()
150 fcolor = *read++; in _gx_display_driver_565rgb_rotated_canvas_blend()
Dgx_display_driver_4444argb_canvas_blend.c91 USHORT *read; in _gx_display_driver_4444argb_canvas_blend() local
135 read = read_start; in _gx_display_driver_4444argb_canvas_blend()
141 fcolor = *read++; in _gx_display_driver_4444argb_canvas_blend()
/GUIX-v6.2.1/test/guix_test/regression_test/utility/
Dgx_validation_display_driver_1bpp.c35 GX_UBYTE *read; in _gx_validation_display_buffer_monochrome_toggle() local
91 read = (GX_UBYTE *)canvas -> gx_canvas_memory; in _gx_validation_display_buffer_monochrome_toggle()
92 read += (read_pos >> 3); in _gx_validation_display_buffer_monochrome_toggle()
101 if((*read) & read_mask) in _gx_validation_display_buffer_monochrome_toggle()
114 read++; in _gx_validation_display_buffer_monochrome_toggle()
Dgx_validation_display_driver_4bpp.c36 GX_UBYTE *read; in _gx_validation_display_buffer_4bpp_grayscale_toggle() local
95 read = (GX_UBYTE *)canvas -> gx_canvas_memory; in _gx_validation_display_buffer_4bpp_grayscale_toggle()
96 read += (read_pos >> 1); in _gx_validation_display_buffer_4bpp_grayscale_toggle()
113 color = (*read) & read_mask; in _gx_validation_display_buffer_4bpp_grayscale_toggle()
140 read++; in _gx_validation_display_buffer_4bpp_grayscale_toggle()
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/
Dgx_display_driver_hardware_565rgb.c174 USHORT *read; in gx_chromeart_canvas_copy() local
187 read = (USHORT *)canvas -> gx_canvas_memory; in gx_chromeart_canvas_copy()
190read += (overlap.gx_rectangle_top - dirty.gx_rectangle_top) * canvas -> gx_canvas_x_resolution; in gx_chromeart_canvas_copy()
194 read += overlap.gx_rectangle_left - dirty.gx_rectangle_left; in gx_chromeart_canvas_copy()
204 DMA2D->FGMAR = (uint32_t) read; // foreground memory address in gx_chromeart_canvas_copy()
Dgx_display_driver_hardware_24xrgb.c198 ULONG *read; in gx_chromeart_canvas_copy() local
211 read = (ULONG *)canvas -> gx_canvas_memory; in gx_chromeart_canvas_copy()
214read += (overlap.gx_rectangle_top - dirty.gx_rectangle_top) * canvas -> gx_canvas_x_resolution; in gx_chromeart_canvas_copy()
218 read += overlap.gx_rectangle_left - dirty.gx_rectangle_left; in gx_chromeart_canvas_copy()
228 DMA2D->FGMAR = (uint32_t) read; // foreground memory address in gx_chromeart_canvas_copy()
/GUIX-v6.2.1/guix_studio/libs/freetype/include/freetype/
Dftsystem.h335 FT_Stream_IoFunc read; member
/GUIX-v6.2.1/guix_studio/libs/libgit2/include/git2/sys/
Dstream.h37 ssize_t GIT_CALLBACK(read)(struct git_stream *, void *, size_t);
Dodb_backend.h35 int GIT_CALLBACK(read)(
Dtransport.h312 int GIT_CALLBACK(read)(
/GUIX-v6.2.1/guix_studio/
Dresource_view.cpp2723 void resource_view::RestoreStringIdsFromBackup(folder_info *write, folder_info *read) in RestoreStringIdsFromBackup() argument
2725 while (write && read) in RestoreStringIdsFromBackup()
2727 RestoreStringIdsFromBackup(write->GetFirstChildWidget(), read->GetFirstChildWidget()); in RestoreStringIdsFromBackup()
2729 read = read->GetNextFolder(); in RestoreStringIdsFromBackup()
2734 void resource_view::RestoreStringIdsFromBackup(widget_info *write, widget_info *read) in RestoreStringIdsFromBackup() argument
2742 while(write && read) in RestoreStringIdsFromBackup()
2744 if (write->GetChildWidgetInfo() && read->GetChildWidgetInfo()) in RestoreStringIdsFromBackup()
2746 RestoreStringIdsFromBackup(write->GetChildWidgetInfo(), read->GetChildWidgetInfo()); in RestoreStringIdsFromBackup()
2749 if (read->basetype == GX_TYPE_STRING_SCROLL_WHEEL) in RestoreStringIdsFromBackup()
2751 read_id_list = read->ewi.string_scroll_wheel.string_id_list; in RestoreStringIdsFromBackup()
[all …]
Dresource_view.h107 void RestoreStringIdsFromBackup(widget_info *write, widget_info *read);
108 void RestoreStringIdsFromBackup(folder_info *write, folder_info *read);
/GUIX-v6.2.1/guix_studio/libs/libgit2/include/git2/
Dodb_backend.h96 int GIT_CALLBACK(read)(git_odb_stream *stream, char *buffer, size_t len);