Searched defs:plow (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
57 *plow = qword.ulLo;
/vbox/src/recompiler/
H A Dhost-utils.c38 static void add128 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
40 *plow += a;
42 if (*plow < a)
47 static void neg128 (uint64_t *plow, uint64_t *phigh) argument
49 *plow = ~*plow;
51 add128(plow, phigh, 1, 0);
54 static void mul64 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
66 *plow = v;
70 add128(plow, phig
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
5413 *plow += a;
5415 if (*plow < a)
5420 static void neg128(uint64_t *plow, uint64_t *phigh) argument
5422 *plow = ~ *plow;
5424 add128(plow, phigh, 1, 0);
5428 static int div64(uint64_t *plow, uint64_t *phigh, uint64_t b) argument
5433 a0 = *plow;
5438 *plow
5466 idiv64(uint64_t *plow, uint64_t *phigh, int64_t b) argument
[all...]

Completed in 57 milliseconds