Lines Matching refs:height
74 (fptr->width * fptr->height / 8U); in get_glyph_ptr()
81 return glyph_ptr[x * (fptr->height / 8U) + y]; in get_glyph_byte()
116 for (size_t g_y = 0; g_y < fptr->height;) { in draw_char_vtmono()
125 const uint8_t bottom_lines = ((offset + fptr->height) % 8); in draw_char_vtmono()
179 if (((fptr->height - g_y) < 8) && (bottom_lines != 0)) { in draw_char_vtmono()
201 } else if ((fptr->height - g_y) >= 8) { in draw_char_vtmono()
275 if (fptr->height % 8) { in draw_text()
286 y += fptr->height; in draw_text()
340 uint16_t width, uint16_t height) in cfb_invert_area() argument
364 if (y + height > fb->y_res) { in cfb_invert_area()
365 height = fb->y_res - y; in cfb_invert_area()
369 for (size_t j = y; j < (y + height); j++) { in cfb_invert_area()
376 const uint8_t remains = y + height - j; in cfb_invert_area()
476 .height = fb->y_res, in cfb_framebuffer_finalize()
530 uint8_t *height) in cfb_get_font_size() argument
542 if (height) { in cfb_get_font_size()
543 *height = TYPE_SECTION_START(cfb_font)[idx].height; in cfb_get_font_size()