Searched refs:powf (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dmath.h94 float __cdecl powf(float, float);
119 #define powf(x,y) ((float)pow((double)(x), (double)(y))) macro
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIImageTools.cpp273 int w = (int)sqrtf(powf(ls.width(), 2) / 2);
/vbox/include/iprt/nocrt/
H A Dmath.h358 float RT_NOCRT(powf)(float, float);
684 # define powf RT_NOCRT(powf) macro
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dwined3d_private.h249 else return sgn * powf(2, -14.0f) * ((float)m / 1024.0f);
251 return sgn * powf(2, (float)e - 15.0f) * (1.0f + ((float)m / 1024.0f));
267 else return sgn * powf(2, -6.0f) * ((float)m / 524288.0f);
271 return sgn * powf(2, (float)e - 7.0f) * (1.0f + ((float)m / 524288.0f));
H A Dsurface.c3224 if (tmp < powf(2, 10))
3230 } while (tmp < powf(2, 10));
3232 else if (tmp >= powf(2, 11))
3238 } while (tmp >= powf(2, 11));
H A Dstate.c1569 scaleFactor = powf(h * scaleFactor, 2);
1821 scale = powf(2, fmt->depth_size) - 1;

Completed in 2241 milliseconds