| /GUIX-v6.2.1/test/guix_test/regression_test/utility/ |
| D | gx_show_canvas.c | 21 int width = 0; variable 29 static void win32_16srgb_bitmap_header_create(int width, int height) in win32_16srgb_bitmap_header_create() argument 38 bmp_info.bmiHeader.biWidth = width; in win32_16srgb_bitmap_header_create() 43 bmp_info.bmiHeader.biSizeImage = width * height * 2; in win32_16srgb_bitmap_header_create() 57 static void win32_565bgr_bitmap_header_create(int width, int height) in win32_565bgr_bitmap_header_create() argument 66 bmp_info.bmiHeader.biWidth = width; in win32_565bgr_bitmap_header_create() 71 bmp_info.bmiHeader.biSizeImage = width * height * 2; in win32_565bgr_bitmap_header_create() 85 static void win32_1555xrgb_bitmap_header_create(int width, int height) in win32_1555xrgb_bitmap_header_create() argument 94 bmp_info.bmiHeader.biWidth = width; in win32_1555xrgb_bitmap_header_create() 99 bmp_info.bmiHeader.biSizeImage = width * height * 2; in win32_1555xrgb_bitmap_header_create() [all …]
|
| D | gx_validation_display_driver_4bpp.c | 28 static int width, height; variable 61 width = test_parameter.x_end - test_parameter.x_start + 1; in _gx_validation_display_buffer_4bpp_grayscale_toggle() 64 if(width & 0x07) in _gx_validation_display_buffer_4bpp_grayscale_toggle() 66 width += 8 - (width & 0x07); in _gx_validation_display_buffer_4bpp_grayscale_toggle() 69 test_parameter.x_end = test_parameter.x_start + width - 1; in _gx_validation_display_buffer_4bpp_grayscale_toggle() 71 gx_validation_create_output_file("4bpp", width, height); in _gx_validation_display_buffer_4bpp_grayscale_toggle() 72 gx_validation_create_frame_buffer((width >> 1) * height); in _gx_validation_display_buffer_4bpp_grayscale_toggle() 90 write_pos = (overlap.gx_rectangle_top - test_parameter.y_start) * width; in _gx_validation_display_buffer_4bpp_grayscale_toggle() 151 write_pos += width; in _gx_validation_display_buffer_4bpp_grayscale_toggle()
|
| D | gx_validation_display_driver_1bpp.c | 28 static int width, height; variable 59 width = test_parameter.x_end - test_parameter.x_start + 1; in _gx_validation_display_buffer_monochrome_toggle() 62 if(width & 0x1f) in _gx_validation_display_buffer_monochrome_toggle() 64 width += 32 - (width & 0x1f); in _gx_validation_display_buffer_monochrome_toggle() 67 gx_validation_create_output_file("1bpp", width, height); in _gx_validation_display_buffer_monochrome_toggle() 68 gx_validation_create_frame_buffer((width >> 3) * height); in _gx_validation_display_buffer_monochrome_toggle() 86 write_pos = (overlap.gx_rectangle_top - test_parameter.y_start) * width; in _gx_validation_display_buffer_monochrome_toggle() 125 write_pos += width; in _gx_validation_display_buffer_monochrome_toggle()
|
| /GUIX-v6.2.1/common/src/ |
| D | gx_utility_gradient_create.c | 140 INT width; in _gx_utility_horizontal_alpha_gradient_create() local 146 width = gradient -> gx_gradient_pixelmap.gx_pixelmap_width; in _gx_utility_horizontal_alpha_gradient_create() 150 for (column = 0; column < width / 2; column++) in _gx_utility_horizontal_alpha_gradient_create() 158 data += width; in _gx_utility_horizontal_alpha_gradient_create() 163 for (; column < width; column++) in _gx_utility_horizontal_alpha_gradient_create() 171 data += width; in _gx_utility_horizontal_alpha_gradient_create() 179 for (column = 0; column < width; column++) in _gx_utility_horizontal_alpha_gradient_create() 187 data += width; in _gx_utility_horizontal_alpha_gradient_create() 239 INT width; in _gx_utility_vertical_alpha_gradient_create() local 243 width = gradient -> gx_gradient_pixelmap.gx_pixelmap_width; in _gx_utility_vertical_alpha_gradient_create() [all …]
|
| D | gx_canvas_line_draw.c | 103 GX_VALUE width; in _gx_canvas_line_draw() local 216 width = (GX_VALUE)((brush_width + 1) / 2); in _gx_canvas_line_draw() 220 width = (GX_VALUE)(width + 1); in _gx_canvas_line_draw() 224 bound.gx_rectangle_top = (GX_VALUE)(bound.gx_rectangle_top - width); in _gx_canvas_line_draw() 225 bound.gx_rectangle_left = (GX_VALUE)(bound.gx_rectangle_left - width); in _gx_canvas_line_draw() 226 bound.gx_rectangle_right = (GX_VALUE)(bound.gx_rectangle_right + width); in _gx_canvas_line_draw() 227 bound.gx_rectangle_bottom = (GX_VALUE)(bound.gx_rectangle_bottom + width); in _gx_canvas_line_draw() 261 width = (GX_VALUE)((clip_rect.gx_rectangle_left - x_start) & 0x1F); in _gx_canvas_line_draw() 262 context -> gx_draw_context_brush.gx_brush_pattern_mask >>= width; in _gx_canvas_line_draw() 273 width = (GX_VALUE)((x_end - clip_rect.gx_rectangle_right) & 0x1F); in _gx_canvas_line_draw() [all …]
|
| D | gx_utility_1bpp_pixelmap_rotate.c | 95 INT width, height; in _gx_utility_1bpp_pixelmap_rotate() local 121 width = (xres << 1); in _gx_utility_1bpp_pixelmap_rotate() 144 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_1bpp_pixelmap_rotate() 147 putstride = (width + 3) >> 2; in _gx_utility_1bpp_pixelmap_rotate() 180 for (x = 0; x < width; x++) in _gx_utility_1bpp_pixelmap_rotate() 288 INT width, height; in _gx_utility_1bpp_pixelmap_simple_raw_rotate() local 297 width = src -> gx_pixelmap_height; in _gx_utility_1bpp_pixelmap_simple_raw_rotate() 302 GX_SWAP_VALS(width, height); in _gx_utility_1bpp_pixelmap_simple_raw_rotate() 305 putstride = (width + 7) >> 3; in _gx_utility_1bpp_pixelmap_simple_raw_rotate() 325 for (x = 0; x < width; x++) in _gx_utility_1bpp_pixelmap_simple_raw_rotate() [all …]
|
| D | gx_utility_4bpp_pixelmap_rotate.c | 95 INT width, height; in _gx_utility_4bpp_pixelmap_rotate() local 126 width = (xres << 1); in _gx_utility_4bpp_pixelmap_rotate() 149 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_4bpp_pixelmap_rotate() 152 putstride = (width + 1) >> 1; in _gx_utility_4bpp_pixelmap_rotate() 153 putauxstride = (width + 7) >> 3; in _gx_utility_4bpp_pixelmap_rotate() 199 for (x = 0; x < width; x++) in _gx_utility_4bpp_pixelmap_rotate() 324 INT width, height; in _gx_utility_4bpp_pixelmap_simple_raw_rotate() local 333 width = src -> gx_pixelmap_height; in _gx_utility_4bpp_pixelmap_simple_raw_rotate() 338 GX_SWAP_VALS(width, height); in _gx_utility_4bpp_pixelmap_simple_raw_rotate() 341 putstride = (width + 1) >> 1; in _gx_utility_4bpp_pixelmap_simple_raw_rotate() [all …]
|
| D | gx_radial_progress_bar_size_update.c | 77 GX_VALUE width; in _gx_radial_progress_bar_size_update() local 81 width = info -> gx_radial_progress_bar_info_selected_brush_width; in _gx_radial_progress_bar_size_update() 83 if (width < info -> gx_radial_progress_bar_info_normal_brush_width) in _gx_radial_progress_bar_size_update() 85 width = info -> gx_radial_progress_bar_info_normal_brush_width; in _gx_radial_progress_bar_size_update() 88 width = (GX_VALUE)((width + 1) >> 1); in _gx_radial_progress_bar_size_update() 90 …(info -> gx_radial_progress_bar_info_xcenter - info -> gx_radial_progress_bar_info_radius - width); in _gx_radial_progress_bar_size_update() 91 …(info -> gx_radial_progress_bar_info_xcenter + info -> gx_radial_progress_bar_info_radius + width); in _gx_radial_progress_bar_size_update() 92 …(info -> gx_radial_progress_bar_info_ycenter - info -> gx_radial_progress_bar_info_radius - width); in _gx_radial_progress_bar_size_update() 93 …(info -> gx_radial_progress_bar_info_ycenter + info -> gx_radial_progress_bar_info_radius + width); in _gx_radial_progress_bar_size_update()
|
| D | gx_display_driver_4bpp_block_move.c | 80 INT width; in _gx_display_driver_4bpp_block_move() local 98 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1; in _gx_display_driver_4bpp_block_move() 99 width -= xshift; in _gx_display_driver_4bpp_block_move() 105 getrow += (block -> gx_rectangle_left + width - 1) >> 1; in _gx_display_driver_4bpp_block_move() 121 if ((block -> gx_rectangle_left + width - 1) & 0x01) in _gx_display_driver_4bpp_block_move() 130 for (column = 0; column < width; column++) in _gx_display_driver_4bpp_block_move() 182 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1; in _gx_display_driver_4bpp_block_move() 183 width += xshift; in _gx_display_driver_4bpp_block_move() 214 for (column = 0; column < width; column++) in _gx_display_driver_4bpp_block_move() 260 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1; in _gx_display_driver_4bpp_block_move() [all …]
|
| D | gx_display_driver_1bpp_block_move.c | 80 INT width; in _gx_display_driver_1bpp_block_move() local 98 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1; in _gx_display_driver_1bpp_block_move() 99 width -= xshift; in _gx_display_driver_1bpp_block_move() 105 getrow += (block -> gx_rectangle_left + width - 1) >> 3; in _gx_display_driver_1bpp_block_move() 113 getmask = (GX_UBYTE)(0x80 >> ((block -> gx_rectangle_left + width - 1) & 0x07)); in _gx_display_driver_1bpp_block_move() 115 for (column = 0; column < width; column++) in _gx_display_driver_1bpp_block_move() 154 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1; in _gx_display_driver_1bpp_block_move() 155 width += xshift; in _gx_display_driver_1bpp_block_move() 171 for (column = 0; column < width; column++) in _gx_display_driver_1bpp_block_move() 204 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1; in _gx_display_driver_1bpp_block_move() [all …]
|
| D | gx_utility_332rgb_pixelmap_rotate.c | 103 INT width, height; in _gx_utility_332rgb_pixelmap_raw_rotate() local 137 width = (xres << 1); in _gx_utility_332rgb_pixelmap_raw_rotate() 160 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_332rgb_pixelmap_raw_rotate() 165 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_332rgb_pixelmap_raw_rotate() 175 destination -> gx_pixelmap_aux_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_332rgb_pixelmap_raw_rotate() 191 for (x = 0; x < width; x++) in _gx_utility_332rgb_pixelmap_raw_rotate() 387 INT width, height; in _gx_utility_332rgb_pixelmap_alpha_rotate() local 421 width = (xres << 1); in _gx_utility_332rgb_pixelmap_alpha_rotate() 444 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_332rgb_pixelmap_alpha_rotate() 449 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_332rgb_pixelmap_alpha_rotate() [all …]
|
| D | gx_utility_565rgb_pixelmap_rotate.c | 105 INT width, height; in _gx_utility_565rgb_pixelmap_raw_rotate() local 139 width = (xres << 1); in _gx_utility_565rgb_pixelmap_raw_rotate() 162 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_565rgb_pixelmap_raw_rotate() 167 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(USHORT); in _gx_utility_565rgb_pixelmap_raw_rotate() 177 destination -> gx_pixelmap_aux_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_565rgb_pixelmap_raw_rotate() 193 for (x = 0; x < width; x++) in _gx_utility_565rgb_pixelmap_raw_rotate() 389 INT width, height; in _gx_utility_565rgb_pixelmap_alpha_rotate() local 424 width = (xres << 1); in _gx_utility_565rgb_pixelmap_alpha_rotate() 447 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_565rgb_pixelmap_alpha_rotate() 452 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(USHORT); in _gx_utility_565rgb_pixelmap_alpha_rotate() [all …]
|
| D | gx_utility_pixelmap_resize.c | 84 UINT _gx_utility_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_pixelmap_resize() argument 108 GX_SWAP_VALS(width, height); in _gx_utility_pixelmap_resize() 119 status = _gx_utility_32argb_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize() 124 status = _gx_utility_16bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize() 128 status = _gx_utility_1555xrgb_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize() 132 status = _gx_utility_4444argb_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize() 138 status = _gx_utility_8bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize() 142 status = _gx_utility_8bit_alphamap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize() 146 status = _gx_utility_4bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize() 150 status = _gx_utility_1bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
|
| D | gx_radial_progress_bar_resize.c | 86 INT width; in _gx_radial_progress_bar_resize() local 93 width = info -> gx_radial_progress_bar_info_selected_brush_width; in _gx_radial_progress_bar_resize() 95 if (width < info -> gx_radial_progress_bar_info_normal_brush_width) in _gx_radial_progress_bar_resize() 97 width = info -> gx_radial_progress_bar_info_normal_brush_width; in _gx_radial_progress_bar_resize() 100 width = (GX_VALUE)((width + 1) >> 1); in _gx_radial_progress_bar_resize() 107 new_radius = (GX_VALUE)(new_radius - width); in _gx_radial_progress_bar_resize() 118 width = size -> gx_rectangle_right - size -> gx_rectangle_left + 1; in _gx_radial_progress_bar_resize() 122 (width != radial_progress -> gx_radial_progress_bar_canvas.gx_canvas_x_resolution || in _gx_radial_progress_bar_resize()
|
| D | gx_display_driver_8bpp_pixelmap_draw.c | 74 INT width; in _gx_display_driver_8bpp_pixelmap_raw_write() local 90 width = clip -> gx_rectangle_right - clip -> gx_rectangle_left + 1; in _gx_display_driver_8bpp_pixelmap_raw_write() 97 for (xval = 0; xval < width; xval++) in _gx_display_driver_8bpp_pixelmap_raw_write() 166 INT width; in _gx_display_driver_8bpp_pixelmap_compressed_write() local 205 width = pixelmap -> gx_pixelmap_width; in _gx_display_driver_8bpp_pixelmap_compressed_write() 227 if (count < width) in _gx_display_driver_8bpp_pixelmap_compressed_write() 233 length = width; in _gx_display_driver_8bpp_pixelmap_compressed_write() 235 width -= length; in _gx_display_driver_8bpp_pixelmap_compressed_write() 257 width -= length; in _gx_display_driver_8bpp_pixelmap_compressed_write() 324 INT width; in _gx_display_driver_8bpp_pixelmap_transparent_write() local [all …]
|
| D | gx_utility_8bpp_pixelmap_rotate.c | 95 INT width, height; in _gx_utility_8bpp_pixelmap_rotate() local 124 width = (xres << 1); in _gx_utility_8bpp_pixelmap_rotate() 147 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_8bpp_pixelmap_rotate() 153 destination -> gx_pixelmap_data_size = (UINT)(width * height) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_rotate() 171 for (x = 0; x < width; x++) in _gx_utility_8bpp_pixelmap_rotate() 250 INT width, height; in _gx_utility_8bpp_pixelmap_simple_rotate() local 255 width = src -> gx_pixelmap_height; in _gx_utility_8bpp_pixelmap_simple_rotate() 260 destination -> gx_pixelmap_data_size = (UINT)(width * height) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_simple_rotate() 274 for (x = 0; x < width; x++) in _gx_utility_8bpp_pixelmap_simple_rotate() 277 get += (width - 1 - x) * height; in _gx_utility_8bpp_pixelmap_simple_rotate() [all …]
|
| D | gx_utility_1bpp_pixelmap_resize.c | 77 …utility_1bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_1bpp_pixelmap_raw_resize() argument 96 xradio = ((src -> gx_pixelmap_width) << 8) / width; in _gx_utility_1bpp_pixelmap_raw_resize() 99 putstride = (width + 7) >> 3; in _gx_utility_1bpp_pixelmap_raw_resize() 110 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_1bpp_pixelmap_raw_resize() 131 for (x = 0; x < width; x++) in _gx_utility_1bpp_pixelmap_raw_resize() 207 …1bpp_pixelmap_transparent_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_1bpp_pixelmap_transparent_resize() argument 228 xradio = ((src -> gx_pixelmap_width) << 8) / width; in _gx_utility_1bpp_pixelmap_transparent_resize() 231 putstride = (width + 3) >> 2; in _gx_utility_1bpp_pixelmap_transparent_resize() 242 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_1bpp_pixelmap_transparent_resize() 264 for (x = 0; x < width; x++) in _gx_utility_1bpp_pixelmap_transparent_resize() [all …]
|
| D | gx_utility_4bpp_pixelmap_resize.c | 77 …utility_4bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_4bpp_pixelmap_raw_resize() argument 97 xradio = ((src -> gx_pixelmap_width) << 8) / width; in _gx_utility_4bpp_pixelmap_raw_resize() 100 putstride = (width + 1) >> 1; in _gx_utility_4bpp_pixelmap_raw_resize() 111 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_4bpp_pixelmap_raw_resize() 132 for (x = 0; x < width; x++) in _gx_utility_4bpp_pixelmap_raw_resize() 209 …4bpp_pixelmap_transparent_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_4bpp_pixelmap_transparent_resize() argument 235 xradio = ((src -> gx_pixelmap_width) << 8) / width; in _gx_utility_4bpp_pixelmap_transparent_resize() 238 putstride = (width + 1) >> 1; in _gx_utility_4bpp_pixelmap_transparent_resize() 239 putauxstride = (width + 7) >> 3; in _gx_utility_4bpp_pixelmap_transparent_resize() 251 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_4bpp_pixelmap_transparent_resize() [all …]
|
| D | gx_image_reader_colorspace_convert.c | 78 UINT width; in _gx_image_reader_one_row_dither() local 89 width = image_reader -> gx_image_reader_image_width; in _gx_image_reader_one_row_dither() 90 err_width = width + 2; in _gx_image_reader_one_row_dither() 96 for (col = 0; col < width; col++) in _gx_image_reader_one_row_dither() 249 static VOID _gx_image_reader_one_row_convert(GX_IMAGE_READER *image_reader, INT *width) in _gx_image_reader_one_row_convert() argument 254 for (xval = 0; xval < (*width); xval++) in _gx_image_reader_one_row_convert() 304 static VOID _gx_image_reader_one_row_rotated_convert(GX_IMAGE_READER *image_reader, INT *width) in _gx_image_reader_one_row_rotated_convert() argument 312 for (xval = 0; xval < (*width); xval++) in _gx_image_reader_one_row_rotated_convert() 371 INT width; in _gx_image_reader_colorspace_convert() local 375 width = outmap -> gx_pixelmap_width; in _gx_image_reader_colorspace_convert() [all …]
|
| D | gx_system_string_width_get.c | 78 INT width = 0; in _gx_system_string_width_compressed_font_get() local 121 width += glyph -> gx_glyph_advance; in _gx_system_string_width_compressed_font_get() 126 *return_width = (GX_VALUE)width; in _gx_system_string_width_compressed_font_get() 181 INT width = 0; in _gx_system_string_width_kerning_font_get() local 250 width += glyph -> gx_glyph_advance; in _gx_system_string_width_kerning_font_get() 251 width += kerning_offset; in _gx_system_string_width_kerning_font_get() 259 *return_width = (GX_VALUE)width; in _gx_system_string_width_kerning_font_get() 385 INT width = 0; in _gx_system_string_width_get_ext() local 449 width += glyph -> gx_glyph_advance; in _gx_system_string_width_get_ext() 454 if (width > 0x7fff) in _gx_system_string_width_get_ext() [all …]
|
| D | gx_utility_8bpp_pixelmap_resize.c | 88 …utility_8bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_8bpp_pixelmap_raw_resize() argument 103 xradio = ((src -> gx_pixelmap_width) << 8) / width; in _gx_utility_8bpp_pixelmap_raw_resize() 114 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_8bpp_pixelmap_raw_resize() 118 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_raw_resize() 133 for (x = 0; x < width; x++) in _gx_utility_8bpp_pixelmap_raw_resize() 198 …ility_8bpp_pixelmap_alpha_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_8bpp_pixelmap_alpha_resize() argument 221 xradio = ((src -> gx_pixelmap_width) << 8) / width; in _gx_utility_8bpp_pixelmap_alpha_resize() 229 destination -> gx_pixelmap_width = (GX_VALUE)width; in _gx_utility_8bpp_pixelmap_alpha_resize() 233 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_alpha_resize() 237 destination -> gx_pixelmap_aux_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_alpha_resize() [all …]
|
| D | gx_display_driver_8bpp_block_move.c | 78 int width; in _gx_display_driver_8bpp_block_move() local 94 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1 - xshift; in _gx_display_driver_8bpp_block_move() 96 if (width <= 0) in _gx_display_driver_8bpp_block_move() 104 memmove(pPut, pGet, (size_t)width); in _gx_display_driver_8bpp_block_move() 121 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1 + xshift; in _gx_display_driver_8bpp_block_move() 123 if (width <= 0) in _gx_display_driver_8bpp_block_move() 130 memmove(pPut, pGet, (size_t)width); in _gx_display_driver_8bpp_block_move() 139 width = block -> gx_rectangle_right - block -> gx_rectangle_left + 1; in _gx_display_driver_8bpp_block_move() 156 memmove(pPut, pGet, (size_t)width); in _gx_display_driver_8bpp_block_move() 177 memmove(pPut, pGet, (size_t)width); in _gx_display_driver_8bpp_block_move()
|
| /GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/ |
| D | gx_display_driver_hardware_24xrgb.c | 156 …ntal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) in gx_chromeart_horizontal_line_draw() argument 172 gx_dma_init(DMA2D_R2M, put, canvas->gx_canvas_x_resolution - length, length, width); in gx_chromeart_horizontal_line_draw() 179 …ical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) in gx_chromeart_vertical_line_draw() argument 188 gx_dma_init(DMA2D_R2M, put, canvas->gx_canvas_x_resolution - width, width, yend - ystart + 1); in gx_chromeart_vertical_line_draw() 200 INT width; in gx_chromeart_canvas_copy() local 210 width = overlap.gx_rectangle_right - overlap.gx_rectangle_left + 1; in gx_chromeart_canvas_copy() 225 …gx_dma_init(DMA2D_M2M, (uint32_t) write, BOARD_SCREEN_WIDTH - width, width, overlap.gx_rectangle_b… in gx_chromeart_canvas_copy() 229 DMA2D->FGOR = canvas->gx_canvas_x_resolution - width; // foreground offset in gx_chromeart_canvas_copy() 241 INT width; in gx_chromeart_alphamap_draw() local 279 width = clip->gx_rectangle_right - clip -> gx_rectangle_left + 1; in gx_chromeart_alphamap_draw() [all …]
|
| D | gx_display_driver_hardware_565rgb.c | 137 …ntal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) in gx_chromeart_horizontal_line_draw() argument 148 gx_dma_init(DMA2D_R2M, put, canvas->gx_canvas_x_resolution - length, length, width); in gx_chromeart_horizontal_line_draw() 155 …ical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) in gx_chromeart_vertical_line_draw() argument 164 gx_dma_init(DMA2D_R2M, put, canvas->gx_canvas_x_resolution - width, width, yend - ystart + 1); in gx_chromeart_vertical_line_draw() 176 INT width; in gx_chromeart_canvas_copy() local 186 width = overlap.gx_rectangle_right - overlap.gx_rectangle_left + 1; in gx_chromeart_canvas_copy() 201 …gx_dma_init(DMA2D_M2M, (uint32_t) write, BOARD_SCREEN_WIDTH - width, width, overlap.gx_rectangle_b… in gx_chromeart_canvas_copy() 205 DMA2D->FGOR = canvas->gx_canvas_x_resolution - width; // foreground offset in gx_chromeart_canvas_copy() 214 INT width; in gx_chromeart_pixelmap_draw() local 266 width = clip->gx_rectangle_right - clip -> gx_rectangle_left + 1; in gx_chromeart_pixelmap_draw() [all …]
|
| /GUIX-v6.2.1/test/guix_test/regression_test/tests/ |
| D | validation_guix_system_string_width_get_no_output.c | 52 GX_VALUE width; in control_thread_entry() local 59 status = gx_system_string_width_get(font, invalid_string, GX_MAX_STRING_LENGTH, &width); in control_thread_entry() 62 status = gx_system_string_width_get(font, invalid_string, -1, &width); in control_thread_entry() 65 status = gx_system_string_width_get(font, test_string, -1, &width); in control_thread_entry() 70 status = gx_system_string_width_get_ext(GX_NULL, &string, &width); in control_thread_entry() 73 status = gx_system_string_width_get_ext(font, GX_NULL, &width); in control_thread_entry() 79 status = gx_system_string_width_get_ext(&invalid_font, &string, &width); in control_thread_entry() 83 status = gx_system_string_width_get_ext(font, &string, &width); in control_thread_entry() 87 status = gx_system_string_width_get_ext(font, &string, &width); in control_thread_entry()
|