Searched refs:STBTT_malloc (Results 1 – 2 of 2) sorted by relevance
/lvgl-3.7.0/src/extra/libs/tiny_ttf/ |
D | stb_truetype_htcw.h | 500 #ifndef STBTT_malloc 502 #define STBTT_malloc(x,u) ((void)(u),malloc(x)) macro 1909 vertices = (stbtt_vertex *)STBTT_malloc(m * sizeof(vertices[0]), info->userdata); 2107 …tmp = (stbtt_vertex *)STBTT_malloc((num_vertices + comp_num_verts) * sizeof(stbtt_vertex), info->u… 2518 …*pvertices = (stbtt_vertex *)STBTT_malloc(count_ctx.num_vertices * sizeof(stbtt_vertex), info->use… 3037 …stbtt__hheap_chunk * c = (stbtt__hheap_chunk *)STBTT_malloc(sizeof(stbtt__hheap_chunk) + size * co… 3198 scanline = (unsigned char *)STBTT_malloc(result->w, userdata); 3589 scanline = (float *)STBTT_malloc((result->w * 2 + 1) * sizeof(float), userdata); 3793 … e = (stbtt__edge *)STBTT_malloc(sizeof(*e) * (n + 1), userdata); // add an extra one as a sentinel 3926 *contour_lengths = (int *)STBTT_malloc(sizeof(**contour_lengths) * n, userdata); [all …]
|
D | lv_tiny_ttf.c | 14 #define STBTT_malloc(x, u) ((void)(u), lv_mem_alloc(x)) macro
|