Searched refs:fptr (Results 1 – 3 of 3) sorted by relevance
66 static inline uint8_t *get_glyph_ptr(const struct cfb_font *fptr, char c) in get_glyph_ptr() argument68 if (fptr->caps & CFB_FONT_MONO_VPACKED) { in get_glyph_ptr()69 return (uint8_t *)fptr->data + in get_glyph_ptr()70 (c - fptr->first_char) * in get_glyph_ptr()71 (fptr->width * fptr->height / 8U); in get_glyph_ptr()84 const struct cfb_font *fptr = &(fb->fonts[fb->font_idx]); in draw_char_vtmono() local87 != ((fptr->caps & CFB_FONT_MSB_FIRST) != 0)); in draw_char_vtmono()89 if (c < fptr->first_char || c > fptr->last_char) { in draw_char_vtmono()93 glyph_ptr = get_glyph_ptr(fptr, c); in draw_char_vtmono()98 for (size_t g_x = 0; g_x < fptr->width; g_x++) { in draw_char_vtmono()[all …]
316 #define TZ_NONSECURE_FUNC_PTR_DECLARE(fptr) tz_ns_func_ptr_t fptr argument325 #define TZ_NONSECURE_FUNC_PTR_CREATE(fptr) \ argument326 ((tz_ns_func_ptr_t)(cmse_nsfptr_create(fptr)))341 #define TZ_NONSECURE_FUNC_PTR_IS_NS(fptr) \ argument342 cmse_is_nsfptr(fptr)
245 void (**fptr)(void); in run_native_tasks() local247 for (fptr = native_pre_tasks[level]; fptr < native_pre_tasks[level+1]; in run_native_tasks()248 fptr++) { in run_native_tasks()249 if (*fptr) { /* LCOV_EXCL_BR_LINE */ in run_native_tasks()250 (*fptr)(); in run_native_tasks()