HomeSort by: relevance | last modified time | path
    Searched refs:quad_t (Results 1 - 25 of 80) sorted by relevancy

1 2 3 4

  /src/common/lib/libc/quad/
quad.h 43 * - The type long long (aka quad_t) exists.
68 * Depending on the desired operation, we view a `long long' (aka quad_t) in
72 quad_t q; /* as a (signed) quad */
79 * Define high and low parts of a quad_t.
85 * Total number of bits in a quad_t and in the pieces that make it up.
89 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT)
96 * ((quad_t)(x) << (number_of_bits_in_int/2)). (`x' must actually be u_int.)
99 * and lower halves, and to reassemble a product as a quad_t, shifted left
119 quad_t __adddi3(quad_t, quad_t)
    [all...]
anddi3.c 50 quad_t
51 __anddi3(quad_t a, quad_t b)
iordi3.c 50 quad_t
51 __iordi3(quad_t a, quad_t b)
xordi3.c 50 quad_t
51 __xordi3(quad_t a, quad_t b)
divdi3.c 51 quad_t
52 __divdi3(quad_t a, quad_t b)
moddi3.c 52 quad_t
53 __moddi3(quad_t a, quad_t b)
notdi2.c 51 quad_t
52 __one_cmpldi2(quad_t a)
adddi3.c 52 quad_t
53 __adddi3(quad_t a, quad_t b)
subdi3.c 51 quad_t
52 __subdi3(quad_t a, quad_t b)
negdi2.c 50 quad_t
51 __negdi2(quad_t a)
ashldi3.c 51 quad_t
52 __ashldi3(quad_t a, qshift_t shift)
cmpdi2.c 53 __cmpdi2(quad_t a, quad_t b)
lshldi3.c 53 quad_t
54 __lshldi3(quad_t a, qshift_t shift)
lshrdi3.c 52 quad_t
53 __lshrdi3(quad_t a, qshift_t shift)
  /src/lib/libc/sys/
Lint___syscall.c 12 quad_t
13 __syscall(quad_t arg1, ...)
  /src/lib/libc/stdlib/
qabs.c 48 quad_t
49 qabs(quad_t j)
qdiv.c 52 qdiv(quad_t num, quad_t denom)
strtoq.c 40 #define __INT quad_t
  /src/lib/libc/quad/
fixdfdi.c 55 quad_t
62 return ((quad_t)-(u_quad_t)-x);
67 return ((quad_t)(u_quad_t)x);
fixsfdi.c 57 quad_t
64 return ((quad_t)-(u_quad_t)-x);
69 return ((quad_t)(u_quad_t)x);
fixsfdi_ieee754.c 53 quad_t
59 quad_t r;
  /src/include/
login_cap.h 77 quad_t login_getcapnum(login_cap_t *, const char *, quad_t, quad_t);
78 quad_t login_getcapsize(login_cap_t *, const char *, quad_t, quad_t);
80 quad_t login_getcaptime(login_cap_t *, const char *, quad_t, quad_t);
  /src/sys/arch/powerpc/fpu/
fpu_arith.h 61 #define FPU_DECL_CARRY quad_t fpu_carry, fpu_tmp;
83 fpu_tmp = (quad_t)(x) + (quad_t)(y); \
89 fpu_tmp = (quad_t)(x) + (quad_t)(y) + (!!fpu_carry); \
97 fpu_tmp = (quad_t)(x) - (quad_t)(y); \
103 fpu_tmp = (quad_t)(x) - (quad_t)(y) - (!!fpu_carry); \
  /src/sys/ddb/
db_access.h 36 quad_t db_get_qvalue(db_addr_t, size_t, bool);
db_output.h 47 void db_format_radix(char *, size_t, quad_t, int);
48 void db_format_hex(char *, size_t, quad_t, int);

Completed in 46 milliseconds

1 2 3 4