Searched refs:qx (Results 1 - 8 of 8) sorted by relevance

/freebsd-10-stable/sys/boot/ficl/arm/
H A Dsysdep.c28 u_int64_t qx; local
30 qx = (u_int64_t)x * (u_int64_t) y;
32 q.hi = (u_int32_t)( qx >> 32 );
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL);
41 u_int64_t qx, qh; local
44 qx = (qh << 32) | q.lo;
46 result.quot = qx / y;
47 result.rem = qx % y;
/freebsd-10-stable/sys/boot/ficl/ia64/
H A Dsysdep.c28 u_int64_t qx; local
30 qx = (u_int64_t)x * (u_int64_t) y;
32 q.hi = (u_int32_t)( qx >> 32 );
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL);
41 u_int64_t qx, qh; local
44 qx = (qh << 32) | q.lo;
46 result.quot = qx / y;
47 result.rem = qx % y;
/freebsd-10-stable/sys/boot/ficl/mips/
H A Dsysdep.c28 u_int64_t qx; local
30 qx = (u_int64_t)x * (u_int64_t) y;
32 q.hi = (u_int32_t)( qx >> 32 );
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL);
41 u_int64_t qx, qh; local
44 qx = (qh << 32) | q.lo;
46 result.quot = qx / y;
47 result.rem = qx % y;
/freebsd-10-stable/sys/boot/ficl/powerpc/
H A Dsysdep.c28 u_int64_t qx; local
30 qx = (u_int64_t)x * (u_int64_t) y;
32 q.hi = (u_int32_t)( qx >> 32 );
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL);
41 u_int64_t qx, qh; local
44 qx = (qh << 32) | q.lo;
46 result.quot = qx / y;
47 result.rem = qx % y;
/freebsd-10-stable/sys/boot/ficl/sparc64/
H A Dsysdep.c28 u_int64_t qx; local
30 qx = (u_int64_t)x * (u_int64_t) y;
32 q.hi = (u_int32_t)( qx >> 32 );
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL);
41 u_int64_t qx, qh; local
44 qx = (qh << 32) | q.lo;
46 result.quot = qx / y;
47 result.rem = qx % y;
/freebsd-10-stable/sys/boot/ficl/amd64/
H A Dsysdep.c28 u_int64_t qx; local
30 qx = (u_int64_t)x * (u_int64_t) y;
32 q.hi = (u_int32_t)( qx >> 32 );
33 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL);
41 u_int64_t qx, qh; local
44 qx = (qh << 32) | q.lo;
46 result.quot = qx / y;
47 result.rem = qx % y;
/freebsd-10-stable/sys/boot/ficl/i386/
H A Dsysdep.c31 u_int64_t qx; local
33 qx = (u_int64_t)x * (u_int64_t) y;
35 q.hi = (u_int32_t)( qx >> 32 );
36 q.lo = (u_int32_t)( qx & 0xFFFFFFFFL);
44 u_int64_t qx, qh; local
47 qx = (qh << 32) | q.lo;
49 result.quot = qx / y;
50 result.rem = qx % y;
/freebsd-10-stable/usr.sbin/extattr/tests/
H A Dextattr_test.sh50 getextattr -qx user myattr foo
64 getextattr -qx user myattr foo

Completed in 159 milliseconds