Searched refs:u_int32_t (Results 1 - 25 of 73) sorted by relevance

123

/bionic/libc/include/netinet/
H A Din_systm.h51 typedef u_int32_t n_long; /* long as received from the net */
53 typedef u_int32_t n_time; /* ms since 00:00 GMT, byte rev */
H A Dicmp6.h78 u_int32_t icmp6_un_data32[1]; /* type-specific field */
224 u_int32_t nd_ra_reachable; /* reachable time */
225 u_int32_t nd_ra_retransmit; /* retransmit timer */
320 u_int32_t nd_opt_rti_lifetime;
329 u_int32_t nd_opt_pi_valid_time;
330 u_int32_t nd_opt_pi_preferred_time;
331 u_int32_t nd_opt_pi_reserved2;
342 u_int32_t nd_opt_rh_reserved2;
350 u_int32_t nd_opt_mtu_mtu;
357 u_int32_t nd_opt_rdnss_lifetim
[all...]
/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dhtonl.c12 u_int32_t
13 htonl(u_int32_t x)
17 return (u_int32_t)(s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3]);
H A Dntohl.c12 u_int32_t
13 ntohl(u_int32_t x)
17 return (u_int32_t)(s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3]);
/bionic/libc/dns/include/
H A Dresolv_static.h22 u_int32_t host_addr[16 / sizeof(u_int32_t)]; /* IPv4 or IPv6 */
/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_finite.c28 return (int)((u_int32_t)((hx&0x7fffffff)-0x7ff00000)>>31);
H A Ds_finitef.c31 return (int)((u_int32_t)((ix&0x7fffffff)-0x7f800000)>>31);
H A Ds_modf.c36 u_int32_t i;
46 u_int32_t high;
57 u_int32_t high;
67 i = ((u_int32_t)(0xffffffff))>>(j0-20);
69 u_int32_t high;
H A Ds_modff.c28 u_int32_t i;
38 u_int32_t ix;
49 u_int32_t ix;
H A Ds_copysign.c28 u_int32_t hx,hy;
H A Ds_copysignf.c31 u_int32_t ix,iy;
H A Ds_cbrtf.c36 u_int32_t sign;
37 u_int32_t high;
H A Ds_trunc.c36 u_int32_t i;
56 i = ((u_int32_t)(0xffffffff))>>(j0-20);
H A Ds_cbrt.c24 static const u_int32_t
45 u_int32_t sign;
46 u_int32_t high,low;
H A De_fmodf.c47 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
80 return Zero[(u_int32_t)sx>>31];
89 return Zero[(u_int32_t)sx>>31];
H A Ds_ceilf.c28 u_int32_t i;
H A Ds_floorf.c37 u_int32_t i;
H A Ds_truncf.c34 u_int32_t i;
H A Ds_ceil.c36 u_int32_t i,j;
57 i = ((u_int32_t)(0xffffffff))>>(j0-20);
/bionic/libc/dns/net/
H A Dbase64.c157 output[0] = (u_int32_t)input[0] >> 2;
158 output[1] = ((u_int32_t)(input[0] & 0x03) << 4) +
159 ((u_int32_t)input[1] >> 4);
160 output[2] = ((u_int32_t)(input[1] & 0x0f) << 2) +
161 ((u_int32_t)input[2] >> 6);
183 output[0] = (u_int32_t)input[0] >> 2;
184 output[1] = ((u_int32_t)(input[0] & 0x03) << 4) +
185 ((u_int32_t)input[1] >> 4);
186 output[2] = ((u_int32_t)(input[1] & 0x0f) << 2) +
187 ((u_int32_t)inpu
[all...]
/bionic/libm/i387/
H A Dnpx.h89 u_int32_t en_fip; /* floating point instruction pointer */
92 u_int32_t en_foo; /* floating operand offset */
95 u_int32_t en_mxcsr; /* SSE sontorol/status register */
96 u_int32_t en_mxcsr_mask; /* valid bits in mxcsr */
/bionic/libm/include/amd64/machine/
H A Dfpu.h24 u_int32_t fx_mxcsr;
25 u_int32_t fx_mxcsr_mask;
/bionic/libc/upstream-freebsd/lib/libc/gen/
H A Dldexp.c30 u_int32_t msw;
31 u_int32_t lsw;
44 u_int32_t lsw;
45 u_int32_t msw;
90 u_int32_t hx,hy;
/bionic/libc/dns/nameser/
H A Dns_netint.c45 u_int32_t dst;
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dregex2.h112 typedef u_int32_t sop; /* strip operator */
114 #define OPRMASK ((u_int32_t)0xf8000000UL)
115 #define OPDMASK ((u_int32_t)0x07ffffffUL)
121 #define OPC(n) (((u_int32_t)(n))<<OPSHIFT)

Completed in 469 milliseconds

123