Searched defs:denom (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DXdiv.c2 The div, ldiv, and lldiv, functions compute numer / denom and
3 numer % denom in a single operation.
9 the arguments numer and denom. If either part of the result cannot be
32 div(int num, int denom) argument
37 r.quot = (int)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem);
48 ldiv(long num, long denom) argument
53 r.quot = (long)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem);
67 lldiv(long long num, long long denom) argument
72 r.quot = (long long)DivS64x64Remainder( (INT64)num, (INT64)denom, &bigrem);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dstdlib.h277 static inline div_t __wine_msvcrt_div(int num, int denom) argument
281 unsigned __int64 res = div(num,denom);
286 static inline ldiv_t __wine_msvcrt_ldiv(__msvcrt_long num, __msvcrt_long denom) argument
290 unsigned __int64 res = ldiv(num,denom);
295 #define div(num,denom) __wine_msvcrt_div(num,denom)
296 #define ldiv(num,denom) __wine_msvcrt_ldiv(num,denom)
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dstdlib.h256 static inline div_t __wine_msvcrt_div(int num, int denom) argument
260 unsigned __int64 res = div(num,denom);
265 static inline ldiv_t __wine_msvcrt_ldiv(__msvcrt_long num, __msvcrt_long denom) argument
269 unsigned __int64 res = ldiv(num,denom);
274 #define div(num,denom) __wine_msvcrt_div(num,denom)
275 #define ldiv(num,denom) __wine_msvcrt_ldiv(num,denom)
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.cpp2746 quint64 denom = 0; local
2748 denom = 1;
2750 denom = _1K;
2752 denom = _1M;
2754 denom = _1G;
2756 denom = _1T;
2758 denom = _1P;
2761 if (denom == 1)
2765 hund = hund * denom / 100;
2766 intg = intg * denom
2806 quint64 denom = 0; local
[all...]

Completed in 68 milliseconds