| /bsp/samd21/sam_d2x_asflib/common2/services/gfx_mono/ |
| A D | gfx_mono_ug_2832hsweg04.c | 63 uint8_t column; in gfx_mono_ssd1306_init() local 80 for (column = 0; column < GFX_MONO_LCD_WIDTH; column++) { in gfx_mono_ssd1306_init() 220 gfx_coord_t column, gfx_coord_t width) in gfx_mono_ssd1306_put_page() argument 226 ssd1306_set_column_address(column); in gfx_mono_ssd1306_put_page() 252 gfx_coord_t column, gfx_coord_t width) in gfx_mono_ssd1306_get_page() argument 258 ssd1306_set_column_address(column); in gfx_mono_ssd1306_get_page() 291 gfx_mono_framebuffer_put_byte(page, column, data); in gfx_mono_ssd1306_put_byte() 295 ssd1306_set_column_address(column); in gfx_mono_ssd1306_put_byte() 320 return gfx_mono_framebuffer_get_byte(page, column); in gfx_mono_ssd1306_get_byte() 324 ssd1306_set_column_address(column); in gfx_mono_ssd1306_get_byte() [all …]
|
| A D | gfx_mono_c12832_a1z.c | 66 uint8_t column; in gfx_mono_st7565r_init() local 83 for (column = 0; column < GFX_MONO_LCD_WIDTH; column++) { in gfx_mono_st7565r_init() 84 gfx_mono_put_byte(page, column, 0x00); in gfx_mono_st7565r_init() 221 gfx_coord_t column, gfx_coord_t width) in gfx_mono_st7565r_put_page() argument 227 st7565r_set_column_address(column); in gfx_mono_st7565r_put_page() 253 gfx_coord_t column, gfx_coord_t width) in gfx_mono_st7565r_get_page() argument 259 st7565r_set_column_address(column); in gfx_mono_st7565r_get_page() 288 gfx_mono_framebuffer_put_byte(page, column, data); in gfx_mono_st7565r_put_byte() 292 st7565r_set_column_address(column); in gfx_mono_st7565r_put_byte() 321 st7565r_set_column_address(column); in gfx_mono_st7565r_get_byte() [all …]
|
| A D | gfx_mono_framebuffer.c | 84 gfx_coord_t column, gfx_coord_t width) in gfx_mono_framebuffer_put_page() argument 88 ((page * GFX_MONO_LCD_WIDTH) + column); in gfx_mono_framebuffer_put_page() 110 gfx_coord_t column, gfx_coord_t width) in gfx_mono_framebuffer_get_page() argument 113 ((page * GFX_MONO_LCD_WIDTH) + column); in gfx_mono_framebuffer_get_page() 204 void gfx_mono_framebuffer_put_byte(gfx_coord_t page, gfx_coord_t column, in gfx_mono_framebuffer_put_byte() argument 207 *(fbpointer + (page * GFX_MONO_LCD_WIDTH) + column) = data; in gfx_mono_framebuffer_put_byte() 222 uint8_t gfx_mono_framebuffer_get_byte(gfx_coord_t page, gfx_coord_t column) in gfx_mono_framebuffer_get_byte() argument 224 return *(fbpointer + (page * GFX_MONO_LCD_WIDTH) + column); in gfx_mono_framebuffer_get_byte() 244 void gfx_mono_framebuffer_mask_byte(gfx_coord_t page, gfx_coord_t column, in gfx_mono_framebuffer_mask_byte() argument 249 temp = gfx_mono_get_byte(page, column); in gfx_mono_framebuffer_mask_byte() [all …]
|
| A D | gfx_mono_c12832_a1z.h | 121 #define gfx_mono_put_page(data, page, column, width) \ argument 122 gfx_mono_st7565r_put_page(data, page, column, width) 124 #define gfx_mono_get_page(data, page, column, width) \ argument 125 gfx_mono_st7565r_get_page(data, page, column, width) 127 #define gfx_mono_put_byte(page, column, data) \ argument 128 gfx_mono_st7565r_put_byte(page, column, data) 130 #define gfx_mono_get_byte(page, column) \ argument 131 gfx_mono_st7565r_get_byte(page, column) 133 #define gfx_mono_mask_byte(page, column, pixel_mask, color) \ argument 134 gfx_mono_st7565r_mask_byte(page, column, pixel_mask, color) [all …]
|
| A D | gfx_mono_ug_2832hsweg04.h | 121 #define gfx_mono_put_page(data, page, column, width) \ argument 122 gfx_mono_ssd1306_put_page(data, page, column, width) 124 #define gfx_mono_get_page(data, page, column, width) \ argument 125 gfx_mono_ssd1306_get_page(data, page, column, width) 127 #define gfx_mono_put_byte(page, column, data) \ argument 128 gfx_mono_ssd1306_put_byte(page, column, data, false) 130 #define gfx_mono_get_byte(page, column) \ argument 131 gfx_mono_ssd1306_get_byte(page, column) 133 #define gfx_mono_mask_byte(page, column, pixel_mask, color) \ argument 134 gfx_mono_ssd1306_mask_byte(page, column, pixel_mask, color) [all …]
|
| A D | gfx_mono_null.h | 112 #define gfx_mono_put_page(data, page, column, width) \ argument 113 gfx_mono_framebuffer_put_page(data, page, column, width) 115 #define gfx_mono_get_page(data, page, column, width) \ argument 116 gfx_mono_framebuffer_get_page(data, page, column, width) 118 #define gfx_mono_put_byte(page, column, data) \ argument 119 gfx_mono_framebuffer_put_byte(page, column, data) 121 #define gfx_mono_get_byte(page, column) \ argument 122 gfx_mono_framebuffer_get_byte(page, column) 124 #define gfx_mono_mask_byte(page, column, pixel_mask, color) \ argument 125 gfx_mono_framebuffer_mask_byte(page, column, pixel_mask, color)
|
| A D | gfx_mono_screen_dump.h | 136 for (uint16_t column = 0; column < GFX_MONO_LCD_WIDTH; in gfx_mono_screen_dump() local 137 ++column) { in gfx_mono_screen_dump() 138 if ((page_buffer[column] & (0x01 << row)) != in gfx_mono_screen_dump()
|
| A D | gfx_mono_framebuffer.h | 82 void gfx_mono_framebuffer_put_byte(gfx_coord_t page, gfx_coord_t column, 85 uint8_t gfx_mono_framebuffer_get_byte(gfx_coord_t page, gfx_coord_t column); 87 void gfx_mono_framebuffer_mask_byte(gfx_coord_t page, gfx_coord_t column,
|
| A D | gfx_mono_generic.c | 477 gfx_coord_t column; in gfx_mono_generic_put_bitmap() local 484 for (column = 0; column < bitmap->width; column++) { in gfx_mono_generic_put_bitmap() 487 + column); in gfx_mono_generic_put_bitmap() 488 gfx_mono_put_byte(i + page, column + x, temp); in gfx_mono_generic_put_bitmap()
|
| /bsp/nxp/imx/imxrt/libraries/drivers/vglite/VGLite/ |
| A D | vg_lite_matrix.c | 52 int row, column; in multiply() local 57 for (column = 0; column < 3; column++) { in multiply() 59 temp.m[row][column] = (matrix->m[row][0] * mult->m[0][column]) in multiply() 60 + (matrix->m[row][1] * mult->m[1][column]) in multiply() 61 + (matrix->m[row][2] * mult->m[2][column]); in multiply()
|
| /bsp/nxp/imx/imxrt/libraries/drivers/vglite/font/ |
| A D | vg_lite_text.c | 190 int row, column; in matrix_multiply() local 195 for (column = 0; column < 3; column++) { in matrix_multiply() 197 temp.m[row][column] = (matrix->m[row][0] * mult->m[0][column]) in matrix_multiply() 198 + (matrix->m[row][1] * mult->m[1][column]) in matrix_multiply() 199 + (matrix->m[row][2] * mult->m[2][column]); in matrix_multiply()
|
| /bsp/x86/drivers/ |
| A D | keyboard.c | 38 PRIVATE int column = 0; /* keyrow[column] is one value of keymap */ variable 116 column = 0; in keyboard_read() 125 column = 1; in keyboard_read() 129 column = 2; in keyboard_read() 132 key = keyrow[column]; in keyboard_read()
|
| /bsp/nxp/imx/imxrt/libraries/drivers/vglite/elementary/src/ |
| A D | elm_draw.c | 37 int row, column; in multiply() local 42 for (column = 0; column < 3; column++) { in multiply() 44 temp.m[row][column] = (matrix->m[row][0] * mult->m[0][column]) in multiply() 45 + (matrix->m[row][1] * mult->m[1][column]) in multiply() 46 + (matrix->m[row][2] * mult->m[2][column]); in multiply()
|
| /bsp/stm32/stm32h7r7-artpi2/ |
| A D | README_en.md | 116 - Write column articles.
|
| /bsp/simulator/SDL2/include/ |
| A D | SDL_opengl.h | 1755 GLenum type, const GLvoid *row, const GLvoid *column ); 1758 GLenum type, GLvoid *row, GLvoid *column, GLvoid *span );
|
| A D | SDL_opengl_glext.h | 3012 …rmat, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); 3135 …rmat, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); 3853 …ARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); 3854 …t, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); 3886 …etSeparableFilter (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); 3887 …t, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); 4255 …rmat, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); 4276 …rmat, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); 6944 …BLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); 6958 …eparableFilterEXT (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); [all …]
|