Searched refs:u64 (Results 1 - 25 of 236) sorted by relevance

12345678910

/vbox/src/VBox/HostDrivers/VBoxUSB/
H A DUSBLib.cpp40 register uint64_t u64 = UINT64_C(14695981039346656037); local
46 u64 = (u64 * UINT64_C(1099511628211)) ^ u8;
50 return u64;
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dtime-r0drv-linux.c45 uint64_t u64; local
48 u64 = Ts.tv_sec * RT_NS_1SEC_64 + Ts.tv_nsec;
49 return u64;
58 uint64_t u64 = get_jiffies_64();
60 u64 += INITIAL_JIFFIES;
62 u64 *= TICK_NSEC;
63 return u64;
71 uint64_t u64 = jiffies;
73 u64 += INITIAL_JIFFIES;
75 u64 *
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstRTAssertCompile.cpp47 uint64_t u64; NOREF(u64); local
51 AssertCompileSize(u64, 8);
59 AssertCompileSizeAlignment(u64, 1);
60 AssertCompileSizeAlignment(u64, 2);
61 AssertCompileSizeAlignment(u64, 4);
62 AssertCompileSizeAlignment(u64, 8);
68 uint64_t u64; member in struct:STRUCT12S
81 AssertCompileMemberSize(STRUCT1, u64, 8);
89 AssertCompileMemberSizeAlignment(STRUCT1, u64,
[all...]
H A DtstRTTime.cpp62 uint64_t u64 = RTTimeNanoTS(); local
63 if (u64 <= u64Prev)
66 RTTestFailed(hTest, "i=%#010x u64=%#llx u64Prev=%#llx (1)\n", i, u64, u64Prev);
70 u64 = RTTimeNanoTS();
72 else if (u64 - u64Prev > 1000000000 /* 1sec */)
74 RTTestFailed(hTest, "i=%#010x u64=%#llx u64Prev=%#llx delta=%lld\n", i, u64, u64Prev, u64 - u64Prev);
78 u64
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/vxge/
H A Dvxge_reg.h29 #define vxge_vBIT(val, loc, sz) (((u64)(val)) << (64-(loc)-(sz)))
36 ((((u64)bits) >> (64-(loc+n))) & ((0x1ULL << n) - 1))
648 /*0x00010*/ u64 toc_swapper_fb;
650 /*0x00018*/ u64 pifm_rd_swap_en;
652 /*0x00020*/ u64 pifm_rd_flip_en;
654 /*0x00028*/ u64 pifm_wr_swap_en;
656 /*0x00030*/ u64 pifm_wr_flip_en;
658 /*0x00038*/ u64 toc_first_pointer;
660 /*0x00040*/ u64 host_access_en;
669 /*0x00050*/ u64 toc_common_pointe
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Dtime-win.cpp106 uint64_t u64; /* manual say larger integer, should be safe to assume it's the same. */
107 GetSystemTimeAsFileTime((LPFILETIME)&u64);
108 return u64 * 100;
157 uint64_t u64; local
158 AssertCompile(sizeof(u64) == sizeof(FILETIME));
159 GetSystemTimeAsFileTime((LPFILETIME)&u64);
160 return RTTimeSpecSetNtTime(pTime, u64);
166 uint64_t u64; local
167 AssertCompile(sizeof(u64) == sizeof(FILETIME));
168 GetSystemTimeAsFileTime((LPFILETIME)&u64);
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/igbvf/
H A Digbvf_vf.h96 u64 pkt_addr; /* Packet buffer address */
97 u64 hdr_addr; /* Header buffer address */
131 u64 buffer_addr; /* Address of descriptor's data buf */
136 u64 rsvd; /* Reserved */
174 u64 base_gprc;
175 u64 base_gptc;
176 u64 base_gorc;
177 u64 base_gotc;
178 u64 base_mprc;
179 u64 base_gotlb
[all...]
/vbox/src/VBox/Runtime/common/string/
H A Dstrtonum.cpp114 uint64_t u64; local
165 u64 = 0;
174 u64Prev = u64;
175 u64 *= uBase;
176 u64 += chDigit;
177 if (u64Prev > u64 || (u64Prev >> iShift))
186 u64 = -(int64_t)u64;
190 *pu64 = u64;
262 uint64_t u64; local
291 uint64_t u64; local
325 uint64_t u64; local
378 uint64_t u64; local
412 uint64_t u64; local
465 uint64_t u64; local
499 uint64_t u64; local
[all...]
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dtime-r0drv-darwin.cpp56 uint64_t u64;
57 absolutetime_to_nanoseconds(mach_absolute_time(), &u64); local
58 return u64;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dtypes.h53 #define u64 x86emuu64 macro
68 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dtypes.h53 #define u64 x86emuu64 macro
68 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dtypes.h54 #define u64 x86emuu64 macro
69 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dtypes.h54 #define u64 x86emuu64 macro
69 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dtypes.h54 #define u64 x86emuu64 macro
69 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dtypes.h54 #define u64 x86emuu64 macro
69 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dtypes.h53 #define u64 x86emuu64 macro
68 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dtypes.h53 #define u64 x86emuu64 macro
68 typedef uint64_t u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dtypes.h53 #define u64 x86emuu64 macro
68 typedef uint64_t u64; typedef
/vbox/src/VBox/VMM/VMMAll/
H A DTMAllVirtual.cpp157 uint64_t u64 = CTXALLSUFF(pVM->tm.s.pfnVirtualGetRaw)(&CTXALLSUFF(pVM->tm.s.VirtualGetRawData)); local
160 uint64_t u64 = pVM->tm.s.CTX_SUFF(pfnVirtualGetRaw)(&pVM->tm.s.CTX_SUFF(VirtualGetRawData));
164 /*DBGFTRACE_POS_U64(pVM, u64);*/
165 return u64;
181 uint64_t u64 = tmVirtualGetRawNanoTS(pVM); local
182 u64 -= pVM->tm.s.u64VirtualWarpDriveStart;
183 u64 *= pVM->tm.s.u32VirtualWarpDrivePercentage;
184 u64 /= 100;
185 u64 += pVM->tm.s.u64VirtualWarpDriveStart;
192 u64
216 uint64_t u64; local
316 tmVirtualSyncGetHandleCatchUpLocked(PVM pVM, uint64_t u64, uint64_t off, uint64_t *pcNsToDeadline) argument
429 tmVirtualSyncGetLocked(PVM pVM, uint64_t u64, uint64_t *pcNsToDeadline) argument
521 uint64_t u64; local
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DtstDarwinKeyboard.cpp79 uint64_t u64 = RTTimeNanoTS(); local
81 u64Grab += RTTimeNanoTS() - u64;
83 u64 = RTTimeNanoTS();
85 u64Release += RTTimeNanoTS() - u64;
/vbox/include/iprt/
H A Dasm-math.h59 uint64_t u64; local
62 : "=A" (u64)
65 u64 = __emulu(u32F1, u32F2);
72 mov dword ptr [u64], eax
73 mov dword ptr [u64 + 4], edx
76 return u64;
184 * @returns u64 / u32.
187 DECLASM(uint32_t) ASMDivU64ByU32RetU32(uint64_t u64, uint32_t u32);
189 DECLINLINE(uint32_t) ASMDivU64ByU32RetU32(uint64_t u64, uint32_t u32) argument
196 : "A" (u64), "
260 ASMModU64ByU32RetU32(uint64_t u64, uint32_t u32) argument
[all...]
/vbox/src/VBox/Runtime/common/asm/
H A Dasm-fake.cpp59 RTDECL(uint64_t) ASMAtomicXchgU64(volatile uint64_t *pu64, uint64_t u64) argument
62 *pu64 = u64;
129 RTDECL(uint64_t) ASMAtomicAddU64(uint64_t volatile *pu64, uint64_t u64) argument
132 *pu64 = u64Old + u64;
166 RTDECL(void) ASMAtomicOrU64(uint64_t volatile *pu64, uint64_t u64) argument
168 *pu64 |= u64;
171 RTDECL(void) ASMAtomicAndU64(uint64_t volatile *pu64, uint64_t u64) argument
173 *pu64 &= u64;
463 RTDECL(uint64_t) ASMByteSwapU64(uint64_t u64) argument
465 return RT_MAKE_U64_FROM_U8(RT_BYTE8(u64), RT_BYTE
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dtypes.h54 #define u64 x86emuu64 macro
89 typedef unsigned long long u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dtypes.h54 #define u64 x86emuu64 macro
89 typedef unsigned long long u64; typedef
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dtypes.h54 #define u64 x86emuu64 macro
89 typedef unsigned long long u64; typedef

Completed in 281 milliseconds

12345678910