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

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2rng.c47 static BOOL clockTickTime(unsigned long *phigh, unsigned long *plow) argument
56 *phigh = qword.ulHi;
/vbox/src/recompiler/
H A Dhost-utils.c38 static void add128 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
43 (*phigh)++;
44 *phigh += b;
47 static void neg128 (uint64_t *plow, uint64_t *phigh) argument
50 *phigh = ~*phigh;
51 add128(plow, phigh, 1, 0);
54 static void mul64 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
67 *phigh = 0;
70 add128(plow, phigh,
80 mulu64(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
90 muls64(uint64_t *plow, uint64_t *phigh, int64_t a, int64_t b) argument
[all...]
H A Dhost-utils.h30 static inline void mulu64(uint64_t *plow, uint64_t *phigh, argument
34 : "=d" (*phigh), "=a" (*plow)
38 static inline void muls64(uint64_t *plow, uint64_t *phigh, argument
42 : "=d" (*phigh), "=a" (*plow)
46 void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b);
47 void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
/vbox/src/recompiler/target-i386/
H A Dop_helper.c5411 static void add128(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
5416 (*phigh)++;
5417 *phigh += b;
5420 static void neg128(uint64_t *plow, uint64_t *phigh) argument
5423 *phigh = ~ *phigh;
5424 add128(plow, phigh, 1, 0);
5428 static int div64(uint64_t *plow, uint64_t *phigh, uint64_t b) argument
5434 a1 = *phigh;
5439 *phigh
5466 idiv64(uint64_t *plow, uint64_t *phigh, int64_t b) argument
[all...]

Completed in 103 milliseconds