Home
last modified time | relevance | path

Searched refs:STBTT_sqrt (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimstb_truetype.h447 #ifndef STBTT_sqrt
449 #define STBTT_sqrt(x) sqrt(x) macro
1820 m = (float) STBTT_sqrt(mtx[0]*mtx[0] + mtx[1]*mtx[1]); in stbtt__GetGlyphShapeTT()
1821 n = (float) STBTT_sqrt(mtx[2]*mtx[2] + mtx[3]*mtx[3]); in stbtt__GetGlyphShapeTT()
3426 …float longlen = (float) (STBTT_sqrt(dx0*dx0+dy0*dy0)+STBTT_sqrt(dx1*dx1+dy1*dy1)+STBTT_sqrt(dx2*dx… in stbtt__tesselate_cubic()
3427 float shortlen = (float) STBTT_sqrt(dx*dx+dy*dy); in stbtt__tesselate_cubic()
4246 float d = (float) STBTT_sqrt(discr); in stbtt__ray_intersect_bezier()
4383 float z = (float) STBTT_sqrt(d); in stbtt__solve_cubic()
4391 float u = (float) STBTT_sqrt(-p/3); in stbtt__solve_cubic()
4392 …float v = (float) STBTT_acos(-STBTT_sqrt(-27/p3) * q / 2) / 3; // p3 must be negative, since d is … in stbtt__solve_cubic()
[all …]
Dimgui_draw.cpp136 #define STBTT_sqrt(x) ImSqrt(x) macro