Searched defs:plow (Results 1 - 3 of 3) sorted by relevance

/external/qemu/util/
H A Dhost-utils.c32 static inline void mul64(uint64_t *plow, uint64_t *phigh, argument
63 *plow = rl.ll;
68 void mulu64 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
70 mul64(plow, phigh, a, b);
74 void muls64 (uint64_t *plow, uint64_t *phigh, int64_t a, int64_t b) argument
78 mul64(plow, &rh, a, b);
/external/qemu/include/qemu/
H A Dhost-utils.h32 static inline void mulu64(uint64_t *plow, uint64_t *phigh, argument
36 *plow = r;
40 static inline void muls64(uint64_t *plow, uint64_t *phigh, argument
44 *plow = r;
48 void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b);
49 void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
/external/qemu/target-i386/
H A Dint_helper.c280 static void add128(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
282 *plow += a;
284 if (*plow < a)
289 static void neg128(uint64_t *plow, uint64_t *phigh) argument
291 *plow = ~ *plow;
293 add128(plow, phigh, 1, 0);
297 static int div64(uint64_t *plow, uint64_t *phigh, uint64_t b) argument
302 a0 = *plow;
307 *plow
335 idiv64(uint64_t *plow, uint64_t *phigh, int64_t b) argument
[all...]

Completed in 128 milliseconds