Searched refs:ul (Results 1 - 25 of 60) sorted by relevance

123

/vbox/src/VBox/Runtime/common/math/gcc/
H A Dnotdi2.c58 aa.ul[0] = ~aa.ul[0];
59 aa.ul[1] = ~aa.ul[1];
H A Ducmpdi2.c59 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 :
60 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Dnegdi2.c57 res.ul[L] = -aa.ul[L];
58 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
H A Dadddi3.c60 sum.ul[L] = aa.ul[L] + bb.ul[L];
61 sum.ul[H] = aa.ul[H] + bb.ul[H] + (sum.ul[L] < bb.ul[L]);
H A Dsubdi3.c59 diff.ul[L] = aa.ul[L] - bb.ul[L];
60 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
H A Danddi3.c58 aa.ul[0] &= bb.ul[0];
59 aa.ul[1] &= bb.ul[1];
H A Diordi3.c58 aa.ul[0] |= bb.ul[0];
59 aa.ul[1] |= bb.ul[1];
H A Dxordi3.c58 aa.ul[0] ^= bb.ul[0];
59 aa.ul[1] ^= bb.ul[1];
H A Dashldi3.c62 aa.ul[H] = aa.ul[L] << (shift - INT_BITS);
63 aa.ul[L] = 0;
65 aa.ul[H] = (aa.ul[H] << shift) |
66 (aa.ul[L] >> (INT_BITS - shift));
67 aa.ul[L] <<= shift;
H A Dlshldi3.c62 aa.ul[H] = aa.ul[L] << (shift - INT_BITS);
63 aa.ul[L] = 0;
65 aa.ul[H] = (aa.ul[H] << shift) |
66 (aa.ul[L] >> (INT_BITS - shift));
67 aa.ul[L] <<= shift;
H A Dlshrdi3.c61 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS);
62 aa.ul[H] = 0;
64 aa.ul[L] = (aa.ul[L] >> shift) |
65 (aa.ul[H] << (INT_BITS - shift));
66 aa.ul[H] >>= shift;
H A Dcmpdi2.c61 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Dashrdi3.c73 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS);
74 aa.ul[H] = s;
76 aa.ul[L] = (aa.ul[L] >> shift) |
77 (aa.ul[H] << (INT_BITS - shift));
H A Dmuldi3.c113 #define u1 u.ul[H]
114 #define u0 u.ul[L]
115 #define v1 v.ul[H]
116 #define v0 v.ul[L]
163 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
164 low.ul[H];
165 prod.ul[L] = low.ul[L];
246 prod.ul[
[all...]
H A Dqdivrem.c92 tmp.ul[H] = tmp.ul[L] = 1 / zero;
121 u[1] = (digit)HHALF(tmp.ul[H]);
122 u[2] = (digit)LHALF(tmp.ul[H]);
123 u[3] = (digit)HHALF(tmp.ul[L]);
124 u[4] = (digit)LHALF(tmp.ul[L]);
126 v[1] = (digit)HHALF(tmp.ul[H]);
127 v[2] = (digit)LHALF(tmp.ul[H]);
128 v[3] = (digit)HHALF(tmp.ul[L]);
129 v[4] = (digit)LHALF(tmp.ul[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DGetPowerOfTwo32.c43 return 1ul << HighBitSet32 (Operand);
/vbox/src/VBox/Runtime/r3/solaris/
H A Dsystemmem-solaris.cpp115 *pcb = (uint64_t)pData->value.ul * PAGE_SIZE;
143 *pcb = (uint64_t)pData->value.ul * PAGE_SIZE;
157 && pCurSize->value.ul > pMinSize->value.ul)
159 *pcb += pCurSize->value.ul - pMinSize->value.ul;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dbasetsd.h173 static inline void *ULongToHandle(ULONG32 ul) argument
175 return (void *)(ULONG_PTR)ul;
228 static inline void *ULongToPtr(ULONG32 ul) argument
230 return (void *)(ULONG_PTR)ul;
252 #define ULongToHandle(ul) ((HANDLE)(ULONG_PTR)(ul))
263 #define ULongToPtr(ul) ((void *)(ULONG_PTR)((ULONG)ul))
268 #define UlongToHandle(ul) ULongToHandle(ul)
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dbasetsd.h175 static inline void *ULongToHandle(ULONG32 ul) argument
177 return (void *)(ULONG_PTR)ul;
230 static inline void *ULongToPtr(ULONG32 ul) argument
232 return (void *)(ULONG_PTR)ul;
254 #define ULongToHandle(ul) ((HANDLE)(ULONG_PTR)(ul))
265 #define ULongToPtr(ul) ((void *)(ULONG_PTR)((ULONG)ul))
270 #define UlongToHandle(ul) ULongToHandle(ul)
[all...]
/vbox/src/VBox/Runtime/common/string/
H A Dstrformat.cpp177 unsigned long ul; local
211 ul = (fFlags & RTSTR_F_VALSIGNED) && (ullValue.ulLo & 0x80000000) ? -(int32_t)ullValue.ulLo : ullValue.ulLo;
215 ul /= uiBase;
216 } while (ul);
315 ul = (fFlags & RTSTR_F_VALSIGNED) && (ullValue.ulLo & 0x80000000) ? -(int32_t)ullValue.ulLo : ullValue.ulLo;
322 psz[i--] = pachDigits[ul % uiBase];
323 ul /= uiBase;
324 } while (ul);
330 psz[i--] = pachDigits[ul % uiBase];
331 ul /
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dip6_addr.c51 const ip6_addr_t ip6_addr_any = { { 0ul, 0ul, 0ul, 0ul } };
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dcompiler.h329 unsigned long ul; \
332 da.ul = 0; \
334 dbg_hex_dump_da ( da.ul, data, len ); \
361 unsigned long ul; \
364 da.ul = 0; \
366 dbg_md5_da ( da.ul, data, len ); \
413 unsigned long ul; \
416 dbg_stream.ul = 0; \
418 dbg_autocolourise ( dbg_stream.ul ); \
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dfbbits.h28 #define isClipped(c,ul,lr) (((c) | ((c) - (ul)) | ((lr) - (c))) & 0x80008000)
257 INT32 ul, lr; local
260 ul = coordToInt(pBox->x1 - xorg, pBox->y1 - yorg);
268 if (!isClipped(pt, ul, lr)) {
277 if (!isClipped(pt, ul, lr)) {
616 INT32 ul, lr; local
630 ul = coordToInt(pBox->x1 - xoff, pBox->y1 - yoff);
638 if (isClipped(pt1, ul, lr) | isClipped(pt2, ul, l
739 INT32 ul, lr; local
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dfbbits.h28 #define isClipped(c,ul,lr) (((c) | ((c) - (ul)) | ((lr) - (c))) & 0x80008000)
257 INT32 ul, lr; local
260 ul = coordToInt(pBox->x1 - xorg, pBox->y1 - yorg);
268 if (!isClipped(pt, ul, lr)) {
277 if (!isClipped(pt, ul, lr)) {
616 INT32 ul, lr; local
630 ul = coordToInt(pBox->x1 - xoff, pBox->y1 - yoff);
638 if (isClipped(pt1, ul, lr) | isClipped(pt2, ul, l
739 INT32 ul, lr; local
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dfbbits.h30 #define isClipped(c,ul,lr) ((((c) - (ul)) | ((lr) - (c))) & 0x80008000)
290 INT32 ul, lr; local
293 ul = coordToInt(pBox->x1 - xorg, pBox->y1 - yorg);
303 if (!isClipped(pt,ul,lr))
315 if (!isClipped(pt,ul,lr))
684 INT32 ul, lr; local
697 ul = coordToInt(pBox->x1 - xoff, pBox->y1 - yoff);
706 if (isClipped (pt1, ul, lr) | isClipped (pt2, ul, l
818 INT32 ul, lr; local
[all...]

Completed in 2569 milliseconds

123