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

/external/qemu/
H A Dhost-utils.c34 static void add128 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
39 (*phigh)++;
40 *phigh += b;
43 static void neg128 (uint64_t *plow, uint64_t *phigh) argument
46 *phigh = ~*phigh;
47 add128(plow, phigh, 1, 0);
50 static void mul64 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
63 *phigh = 0;
66 add128(plow, phigh,
76 mulu64(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
86 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);
/external/quake/quake/src/QW/client/
H A Dsbar.c359 int plow, phigh, ptotal; member in struct:__anon12001
443 if (teams[j].phigh < s->ping)
444 teams[j].phigh = s->ping;
907 int plow, phigh, pavg; local
946 phigh = tm->phigh;
947 if (phigh < 0 || phigh > 999)
948 phigh = 999;
956 sprintf (num, "%3i/%3i/%3i", plow, pavg, phigh);
[all...]
/external/qemu/target-i386/
H A Dop_helper.c4539 static void add128(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
4544 (*phigh)++;
4545 *phigh += b;
4548 static void neg128(uint64_t *plow, uint64_t *phigh) argument
4551 *phigh = ~ *phigh;
4552 add128(plow, phigh, 1, 0);
4556 static int div64(uint64_t *plow, uint64_t *phigh, uint64_t b) argument
4562 a1 = *phigh;
4567 *phigh
4594 idiv64(uint64_t *plow, uint64_t *phigh, int64_t b) argument
[all...]

Completed in 89 milliseconds