Searched refs:plow (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
36 *plow += a;
38 if (*plow < a)
43 static void neg128 (uint64_t *plow, uint64_t *phigh) argument
45 *plow = ~*plow;
47 add128(plow, phigh, 1, 0);
50 static void mul64 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) argument
62 *plow = v;
66 add128(plow, phig
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
415 teams[i].plow = 999;
441 if (teams[j].plow > s->ping)
442 teams[j].plow = s->ping;
907 int plow, phigh, pavg; local
943 plow = tm->plow;
944 if (plow < 0 || plow > 999)
945 plow
[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
4541 *plow += a;
4543 if (*plow < a)
4548 static void neg128(uint64_t *plow, uint64_t *phigh) argument
4550 *plow = ~ *plow;
4552 add128(plow, phigh, 1, 0);
4556 static int div64(uint64_t *plow, uint64_t *phigh, uint64_t b) argument
4561 a0 = *plow;
4566 *plow
4594 idiv64(uint64_t *plow, uint64_t *phigh, int64_t b) argument
[all...]

Completed in 193 milliseconds