Searched refs:u_quad_t (Results 1 - 25 of 113) sorted by relevance

12345

/freebsd-10.2-release/lib/libc/quad/
H A Dquad.h98 u_quad_t __qdivrem(u_quad_t u, u_quad_t v, u_quad_t *rem);
99 int __ucmpdi2(u_quad_t a, u_quad_t b);
100 u_quad_t __udivdi3(u_quad_t a, u_quad_t b);
101 u_quad_t __umoddi
[all...]
H A Dudivdi3.c45 u_quad_t
47 u_quad_t a, b;
50 return (__qdivrem(a, b, (u_quad_t *)0));
H A Dumoddi3.c45 u_quad_t
47 u_quad_t a, b;
49 u_quad_t r;
H A Dmoddi3.c52 u_quad_t ua, ub, ur;
56 ua = -(u_quad_t)a, neg = 1;
60 ub = -(u_quad_t)b;
H A Ddivdi3.c50 u_quad_t ua, ub, uq;
54 ua = -(u_quad_t)a, neg = 1;
58 ub = -(u_quad_t)b, neg ^= 1;
61 uq = __qdivrem(ua, ub, (u_quad_t *)0);
H A Dfixdfdi.c54 return ((quad_t)-(u_quad_t)-x);
59 return ((quad_t)(u_quad_t)x);
H A Dfixsfdi.c55 return ((quad_t)-(u_quad_t)-x);
60 return ((quad_t)(u_quad_t)x);
H A Dfloatunsdidf.c48 u_quad_t x;
H A Ducmpdi2.c48 u_quad_t a, b;
/freebsd-10.2-release/sys/libkern/
H A Dudivdi3.c42 u_quad_t
44 u_quad_t a, b;
47 return (__qdivrem(a, b, (u_quad_t *)0));
H A Dquad.h108 u_quad_t __qdivrem(u_quad_t u, u_quad_t v, u_quad_t *rem);
109 u_quad_t __udivdi3(u_quad_t a, u_quad_t b);
110 u_quad_t __umoddi3(u_quad_t a, u_quad_t
[all...]
H A Dumoddi3.c42 u_quad_t
44 u_quad_t a, b;
46 u_quad_t r;
H A Dmoddi3.c49 u_quad_t ua, ub, ur;
53 ua = -(u_quad_t)a, neg = 1;
57 ub = -(u_quad_t)b;
H A Ddivdi3.c47 u_quad_t ua, ub, uq;
51 ua = -(u_quad_t)a, neg = 1;
55 ub = -(u_quad_t)b, neg ^= 1;
58 uq = __qdivrem(ua, ub, (u_quad_t *)0);
H A Dstrtouq.c47 u_quad_t
51 u_quad_t acc;
53 u_quad_t qbase, cutoff;
79 cutoff = (u_quad_t)UQUAD_MAX / qbase;
80 cutlim = (u_quad_t)UQUAD_MAX % qbase;
H A Dstrtoq.c51 u_quad_t acc;
53 u_quad_t qbase, cutoff;
101 cutoff = neg ? (u_quad_t)-(QUAD_MIN + QUAD_MAX) + QUAD_MAX : QUAD_MAX;
H A Ducmpdi2.c45 u_quad_t a, b;
/freebsd-10.2-release/lib/libstand/
H A Dquad.h100 u_quad_t __qdivrem(u_quad_t u, u_quad_t v, u_quad_t *rem);
101 u_quad_t __udivdi3(u_quad_t a, u_quad_t b);
102 u_quad_t __umoddi3(u_quad_t a, u_quad_t
[all...]
H A Dqdivrem.c80 u_quad_t
82 u_quad_t uq, vq, *arq;
281 u_quad_t
283 u_quad_t a, b;
286 return (__qdivrem(a, b, (u_quad_t *)0));
292 u_quad_t
294 u_quad_t a, b;
296 u_quad_t r;
310 u_quad_t ua, ub, uq;
314 ua = -(u_quad_t)
[all...]
/freebsd-10.2-release/sys/netinet6/
H A Dip6_mroute.h181 u_quad_t pktcnt;
182 u_quad_t bytecnt;
183 u_quad_t wrong_if;
191 u_quad_t icount; /* Input packet count on mif */
192 u_quad_t ocount; /* Output packet count on mif */
193 u_quad_t ibytes; /* Input byte count on mif */
194 u_quad_t obytes; /* Output byte count on mif */
206 u_quad_t m6_pkt_in; /* # pkts in on interface */
207 u_quad_t m6_pkt_out; /* # pkts out on interface */
208 u_quad_t m6_bytes_i
[all...]
/freebsd-10.2-release/contrib/sendmail/include/sm/
H A Dtypes.h58 typedef u_quad_t ULONGLONG_T;
/freebsd-10.2-release/lib/libc/stdlib/
H A Dstrtouq.c43 u_quad_t
/freebsd-10.2-release/usr.sbin/sa/
H A Dextern.h44 u_quad_t ci_calls; /* number of calls */
56 u_quad_t ui_calls; /* number of invocations */
95 extern u_quad_t cutoff;
/freebsd-10.2-release/sys/fs/nfsclient/
H A Dnfs.h75 u_quad_t);
98 int ncl_commit(struct vnode *, u_quad_t, int, struct ucred *, struct thread *);
/freebsd-10.2-release/sys/nfs/
H A Dxdr_subs.h83 ((((u_quad_t)ntohl(((u_int32_t *)(f))[0])) << 32) | \
84 (u_quad_t)(ntohl(((u_int32_t *)(f))[1])))

Completed in 211 milliseconds

12345