Home
last modified time | relevance | path

Searched refs:qx (Results 1 – 10 of 10) sorted by relevance

/trueos/sys/boot/ficl/powerpc/
HDsysdep.c28 u_int64_t qx; in ficlLongMul() local
30 qx = (u_int64_t)x * (u_int64_t) y; in ficlLongMul()
32 q.hi = (u_int32_t)( qx >> 32 ); in ficlLongMul()
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL); in ficlLongMul()
41 u_int64_t qx, qh; in ficlLongDiv() local
44 qx = (qh << 32) | q.lo; in ficlLongDiv()
46 result.quot = qx / y; in ficlLongDiv()
47 result.rem = qx % y; in ficlLongDiv()
/trueos/sys/boot/ficl/arm/
HDsysdep.c28 u_int64_t qx; in ficlLongMul() local
30 qx = (u_int64_t)x * (u_int64_t) y; in ficlLongMul()
32 q.hi = (u_int32_t)( qx >> 32 ); in ficlLongMul()
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL); in ficlLongMul()
41 u_int64_t qx, qh; in ficlLongDiv() local
44 qx = (qh << 32) | q.lo; in ficlLongDiv()
46 result.quot = qx / y; in ficlLongDiv()
47 result.rem = qx % y; in ficlLongDiv()
/trueos/sys/boot/ficl/amd64/
HDsysdep.c28 u_int64_t qx; in ficlLongMul() local
30 qx = (u_int64_t)x * (u_int64_t) y; in ficlLongMul()
32 q.hi = (u_int32_t)( qx >> 32 ); in ficlLongMul()
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL); in ficlLongMul()
41 u_int64_t qx, qh; in ficlLongDiv() local
44 qx = (qh << 32) | q.lo; in ficlLongDiv()
46 result.quot = qx / y; in ficlLongDiv()
47 result.rem = qx % y; in ficlLongDiv()
/trueos/sys/boot/ficl/sparc64/
HDsysdep.c28 u_int64_t qx; in ficlLongMul() local
30 qx = (u_int64_t)x * (u_int64_t) y; in ficlLongMul()
32 q.hi = (u_int32_t)( qx >> 32 ); in ficlLongMul()
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL); in ficlLongMul()
41 u_int64_t qx, qh; in ficlLongDiv() local
44 qx = (qh << 32) | q.lo; in ficlLongDiv()
46 result.quot = qx / y; in ficlLongDiv()
47 result.rem = qx % y; in ficlLongDiv()
/trueos/sys/boot/ficl/mips/
HDsysdep.c28 u_int64_t qx; in ficlLongMul() local
30 qx = (u_int64_t)x * (u_int64_t) y; in ficlLongMul()
32 q.hi = (u_int32_t)( qx >> 32 ); in ficlLongMul()
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL); in ficlLongMul()
41 u_int64_t qx, qh; in ficlLongDiv() local
44 qx = (qh << 32) | q.lo; in ficlLongDiv()
46 result.quot = qx / y; in ficlLongDiv()
47 result.rem = qx % y; in ficlLongDiv()
/trueos/sys/boot/ficl/ia64/
HDsysdep.c28 u_int64_t qx; in ficlLongMul() local
30 qx = (u_int64_t)x * (u_int64_t) y; in ficlLongMul()
32 q.hi = (u_int32_t)( qx >> 32 ); in ficlLongMul()
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL); in ficlLongMul()
41 u_int64_t qx, qh; in ficlLongDiv() local
44 qx = (qh << 32) | q.lo; in ficlLongDiv()
46 result.quot = qx / y; in ficlLongDiv()
47 result.rem = qx % y; in ficlLongDiv()
/trueos/sys/boot/ficl/i386/
HDsysdep.c31 u_int64_t qx; in ficlLongMul() local
33 qx = (u_int64_t)x * (u_int64_t) y; in ficlLongMul()
35 q.hi = (u_int32_t)( qx >> 32 ); in ficlLongMul()
36 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL); in ficlLongMul()
44 u_int64_t qx, qh; in ficlLongDiv() local
47 qx = (qh << 32) | q.lo; in ficlLongDiv()
49 result.quot = qx / y; in ficlLongDiv()
50 result.rem = qx % y; in ficlLongDiv()
/trueos/contrib/tcpdump/
HDconfigure.in967 AC_MSG_ERROR([neither %llx nor %Lx nor %qx worked on a 64-bit integer])
/trueos/contrib/sendmail/
HDPGPKEYS2396 qx/RYm8P12lwv1U5777+UEFjU91RlA6fZTI/61LvC468TcADVnEn1OZo1INHdAhZ
/trueos/contrib/apr/
HDconfigure.in1635 uint64_t_hex_fmt='#define APR_UINT64_T_HEX_FMT "qx"'