Searched refs:powf (Results 1 - 6 of 6) sorted by relevance
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | math.h | 94 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 D | UIImageTools.cpp | 273 int w = (int)sqrtf(powf(ls.width(), 2) / 2);
|
/vbox/include/iprt/nocrt/ |
H A D | math.h | 358 float RT_NOCRT(powf)(float, float); 684 # define powf RT_NOCRT(powf) macro
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | wined3d_private.h | 249 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 D | surface.c | 3224 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 D | state.c | 1569 scaleFactor = powf(h * scaleFactor, 2); 1821 scale = powf(2, fmt->depth_size) - 1;
|
Completed in 743 milliseconds