| /GUIX-v6.2.1/common/src/ |
| D | gx_display_driver_8bpp_rotated_canvas_copy.c | 77 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() 98 …read += (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() 110 … read += (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()
|
| D | gx_display_driver_32bpp_rotated_canvas_copy.c | 77 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() 97 …read += (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() 109 … read += (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()
|
| D | gx_display_driver_16bpp_rotated_canvas_copy.c | 77 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() 98 …read += (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() 110 … read += (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()
|
| D | gx_display_driver_32bpp_canvas_copy.c | 79 ULONG *read; in _gx_display_driver_32bpp_canvas_copy() local 93 read = (ULONG *)canvas -> gx_canvas_memory; in _gx_display_driver_32bpp_canvas_copy() 96 … read += (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()
|
| D | gx_display_driver_8bpp_canvas_copy.c | 79 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() 96 … read += (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()
|
| D | gx_display_driver_16bpp_canvas_copy.c | 82 USHORT *read; in _gx_display_driver_16bpp_canvas_copy() local 104 read = (USHORT *)canvas -> gx_canvas_memory; in _gx_display_driver_16bpp_canvas_copy() 107 … read += (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()
|
| D | gx_display_driver_1bpp_canvas_copy.c | 77 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()
|
| D | gx_display_driver_4bpp_canvas_copy.c | 77 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()
|
| D | gx_display_driver_1555xrgb_canvas_blend.c | 93 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()
|
| D | gx_display_driver_24xrgb_canvas_blend.c | 92 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()
|
| D | gx_display_driver_24xrgb_rotated_canvas_blend.c | 77 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()
|
| D | gx_display_driver_565rgb_canvas_blend.c | 94 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()
|
| D | gx_display_driver_565rgb_rotated_canvas_blend.c | 90 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()
|
| D | gx_display_driver_4444argb_canvas_blend.c | 91 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/ |
| D | gx_validation_display_driver_1bpp.c | 35 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()
|
| D | gx_validation_display_driver_4bpp.c | 36 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/ |
| D | gx_display_driver_hardware_565rgb.c | 174 USHORT *read; in gx_chromeart_canvas_copy() local 187 read = (USHORT *)canvas -> gx_canvas_memory; in gx_chromeart_canvas_copy() 190 … read += (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()
|
| D | gx_display_driver_hardware_24xrgb.c | 198 ULONG *read; in gx_chromeart_canvas_copy() local 211 read = (ULONG *)canvas -> gx_canvas_memory; in gx_chromeart_canvas_copy() 214 … read += (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/ |
| D | ftsystem.h | 335 FT_Stream_IoFunc read; member
|
| /GUIX-v6.2.1/guix_studio/libs/libgit2/include/git2/sys/ |
| D | stream.h | 37 ssize_t GIT_CALLBACK(read)(struct git_stream *, void *, size_t);
|
| D | odb_backend.h | 35 int GIT_CALLBACK(read)(
|
| D | transport.h | 312 int GIT_CALLBACK(read)(
|
| /GUIX-v6.2.1/guix_studio/ |
| D | resource_view.cpp | 2723 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 …]
|
| D | resource_view.h | 107 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/ |
| D | odb_backend.h | 96 int GIT_CALLBACK(read)(git_odb_stream *stream, char *buffer, size_t len);
|