Searched refs:STBTT_malloc (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imstb_truetype.h | 470 #ifndef STBTT_malloc 472 #define STBTT_malloc(x,u) ((void)(u),malloc(x)) macro 1666 vertices = (stbtt_vertex *) STBTT_malloc(m * sizeof(vertices[0]), info->userdata); in stbtt__GetGlyphShapeTT() 1838 …tmp = (stbtt_vertex*)STBTT_malloc((num_vertices+comp_num_verts)*sizeof(stbtt_vertex), info->userda… in stbtt__GetGlyphShapeTT() 2243 …*pvertices = (stbtt_vertex*)STBTT_malloc(count_ctx.num_vertices*sizeof(stbtt_vertex), info->userda… in stbtt__GetGlyphShapeT2() 2687 …stbtt__hheap_chunk *c = (stbtt__hheap_chunk *) STBTT_malloc(sizeof(stbtt__hheap_chunk) + size * co… in stbtt__hheap_alloc() 2842 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges() 3147 scanline = (float *) STBTT_malloc((result->w*2+1) * sizeof(float), userdata); in stbtt__rasterize_sorted_edges() 3349 e = (stbtt__edge *) STBTT_malloc(sizeof(*e) * (n+1), userdata); // add an extra one as a sentinel in stbtt__rasterize() 3474 *contour_lengths = (int *) STBTT_malloc(sizeof(**contour_lengths) * n, userdata); in stbtt_FlattenCurves() [all …]
|
D | imgui_draw.cpp | 132 #define STBTT_malloc(x,u) ((void)(u), ImGui::MemAlloc(x)) macro
|