Searched defs:phigh (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
64 *phigh = rh.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
87 *phigh = rh;
/external/qemu/include/qemu/
H A Dhost-utils.h32 static inline void mulu64(uint64_t *plow, uint64_t *phigh, argument
37 *phigh = r >> 64;
40 static inline void muls64(uint64_t *plow, uint64_t *phigh, argument
45 *phigh = r >> 64;
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
285 (*phigh)++;
286 *phigh += b;
289 static void neg128(uint64_t *plow, uint64_t *phigh) argument
292 *phigh = ~ *phigh;
293 add128(plow, phigh, 1, 0);
297 static int div64(uint64_t *plow, uint64_t *phigh, uint64_t b) argument
303 a1 = *phigh;
308 *phigh
335 idiv64(uint64_t *plow, uint64_t *phigh, int64_t b) argument
[all...]

Completed in 102 milliseconds