/external/syslinux/core/lwip/src/netif/ppp/ |
magic.c | 75 u32_t magic()
|
magic.h | 61 u32_t magic(void);
|
randm.h | 53 void avChurnRand(char *randData, u32_t randLen); 73 void avGenRand(char *buf, u32_t bufLen); 78 u32_t avRandom(void);
|
randm.c | 84 avChurnRand(char *randData, u32_t randLen) 123 avGenRand(char *buf, u32_t bufLen) 127 u32_t n; 145 u32_t 148 u32_t newRand; 161 static u32_t avRandomSeed = 0; /* Seed used for random number generation. */ 186 u32_t *lptr1 = (u32_t *)((char *)&clockBuf[3]); 199 avRandomSeed += *(u32_t *)clockBuf + *lptr1 + OSIdleCtr 200 + ppp_mtime() + ((u32_t)TM1 << 16) + TM1 [all...] |
auth.h | 106 int auth_ip_addr (int, u32_t); 109 int bad_ip_adrs (u32_t);
|
md5.h | 45 u32_t i[2]; /* number of _bits_ handled mod 2^64 */ 46 u32_t buf[4]; /* scratch buffer */
|
ipcp.h | 93 u32_t ouraddr, hisaddr; /* Addresses in NETWORK BYTE ORDER */ 94 u32_t dnsaddr[2]; /* Primary and secondary MS DNS entries */ 95 u32_t winsaddr[2]; /* Primary and secondary MS WINS entries */
|
ppp.h | 446 void ppp_send_config (int, u16_t, u32_t, int, int); 450 void ppp_recv_config (int, int, u32_t, int, int); 463 int sifaddr (int, u32_t, u32_t, u32_t, u32_t, u32_t); 465 int cifaddr (int, u32_t, u32_t); 467 int sifdefaultroute (int, u32_t, u32_t) [all...] |
lcp.h | 106 u32_t asyncmap; /* Value of async map */ 107 u32_t magicnumber; 109 u32_t lqr_period; /* Reporting period for LQR 1/100ths second */
|
md5.c | 59 static void Transform (u32_t *buf, u32_t *in); 84 {(a) += F ((b), (c), (d)) + (x) + (u32_t)(ac); \ 89 {(a) += G ((b), (c), (d)) + (x) + (u32_t)(ac); \ 94 {(a) += H ((b), (c), (d)) + (x) + (u32_t)(ac); \ 99 {(a) += I ((b), (c), (d)) + (x) + (u32_t)(ac); \ 120 mdContext->i[0] = mdContext->i[1] = (u32_t)0; 123 mdContext->buf[0] = (u32_t)0x67452301UL; 124 mdContext->buf[1] = (u32_t)0xefcdab89UL; 125 mdContext->buf[2] = (u32_t)0x98badcfeUL [all...] |
/external/syslinux/core/lwip/src/include/lwip/ |
sio.h | 98 u32_t sio_read(sio_fd_t fd, u8_t *data, u32_t len); 111 u32_t sio_tryread(sio_fd_t fd, u8_t *data, u32_t len); 125 u32_t sio_write(sio_fd_t fd, u8_t *data, u32_t len);
|
timers.h | 67 u32_t time; 78 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name); 81 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
|
netif.h | 197 u32_t link_speed; 199 u32_t ts; 201 u32_t ifinoctets; 202 u32_t ifinucastpkts; 203 u32_t ifinnucastpkts; 204 u32_t ifindiscards; 205 u32_t ifoutoctets; 206 u32_t ifoutucastpkts; 207 u32_t ifoutnucastpkts; 208 u32_t ifoutdiscards [all...] |
tcp.h | 191 u32_t rcv_nxt; /* next seqno expected */ 194 u32_t rcv_ann_right_edge; /* announced right edge of window */ 197 u32_t tmr; 206 u32_t rttest; /* RTT estimate in 500ms ticks */ 207 u32_t rtseq; /* sequence number being timed */ 214 u32_t lastack; /* Highest acknowledged seqno. */ 222 u32_t snd_nxt; /* next new seqno to be sent */ 224 u32_t snd_wl1, snd_wl2; /* Sequence and acknowledgement numbers of last 226 u32_t snd_lbb; /* Sequence number of next byte to be buffered. */ 262 u32_t ts_lastacksent [all...] |
sys.h | 142 u32_t sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout); 159 void sys_msleep(u32_t ms); /* only has a (close to) 1 jiffy resolution. */ 185 u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout); 194 u32_t sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg); 227 u32_t sys_jiffies(void); 232 u32_t sys_now(void);
|
def.h | 50 /** Get the absolute difference between 2 u32_t values (correcting overflows) 105 u32_t lwip_htonl(u32_t x); 106 u32_t lwip_ntohl(u32_t x);
|
dhcp.h | 32 u32_t xid; 57 u32_t offered_t0_lease; /* lease period (in seconds) */ 58 u32_t offered_t1_renew; /* recommended renew time (usually 50% of lease period) */ 59 u32_t offered_t2_rebind; /* recommended rebind time (usually 66% of lease period) */ 80 PACK_STRUCT_FIELD(u32_t xid); 90 PACK_STRUCT_FIELD(u32_t cookie);
|
/external/syslinux/core/lwip/src/core/ |
def.c | 82 * Convert an u32_t from host- to network byte order. 84 * @param n u32_t in host byte order 87 u32_t 88 lwip_htonl(u32_t n) 97 * Convert an u32_t from network- to host byte order. 99 * @param n u32_t in network byte order 102 u32_t 103 lwip_ntohl(u32_t n)
|
sys.c | 54 sys_msleep(u32_t ms)
|
stats.c | 116 LWIP_PLATFORM_DIAG(("avail: %"U32_F"\n\t", (u32_t)mem->avail)); 117 LWIP_PLATFORM_DIAG(("used: %"U32_F"\n\t", (u32_t)mem->used)); 118 LWIP_PLATFORM_DIAG(("max: %"U32_F"\n\t", (u32_t)mem->max)); 119 LWIP_PLATFORM_DIAG(("err: %"U32_F"\n", (u32_t)mem->err)); 142 LWIP_PLATFORM_DIAG(("sem.used: %"U32_F"\n\t", (u32_t)sys->sem.used)); 143 LWIP_PLATFORM_DIAG(("sem.max: %"U32_F"\n\t", (u32_t)sys->sem.max)); 144 LWIP_PLATFORM_DIAG(("sem.err: %"U32_F"\n\t", (u32_t)sys->sem.err)); 145 LWIP_PLATFORM_DIAG(("mutex.used: %"U32_F"\n\t", (u32_t)sys->mutex.used)); 146 LWIP_PLATFORM_DIAG(("mutex.max: %"U32_F"\n\t", (u32_t)sys->mutex.max)); 147 LWIP_PLATFORM_DIAG(("mutex.err: %"U32_F"\n\t", (u32_t)sys->mutex.err)); [all...] |
/external/clang/test/CodeGenCXX/ |
copy-assign-volatile-synthesis.cpp | 6 typedef unsigned int u32_t; typedef 27 volatile u32_t raw[2];
|
/external/syslinux/core/lwip/src/include/ipv4/lwip/ |
ip_addr.h | 45 u32_t addr; 55 PACK_STRUCT_FIELD(u32_t addr); 96 #define IPADDR_NONE ((u32_t)0xffffffffUL) 98 #define IPADDR_LOOPBACK ((u32_t)0x7f000001UL) 100 #define IPADDR_ANY ((u32_t)0x00000000UL) 102 #define IPADDR_BROADCAST ((u32_t)0xffffffffUL) 108 #define IP_CLASSA(a) ((((u32_t)(a)) & 0x80000000UL) == 0) 114 #define IP_CLASSB(a) ((((u32_t)(a)) & 0xc0000000UL) == 0x80000000UL) 120 #define IP_CLASSC(a) ((((u32_t)(a)) & 0xe0000000UL) == 0xc0000000UL) 125 #define IP_CLASSD(a) (((u32_t)(a) & 0xf0000000UL) == 0xe0000000UL [all...] |
/external/syslinux/core/lwip/src/arch/ |
sys_arch.c | 47 u32_t sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout) 94 u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout) 107 u32_t sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg)
|
/external/syslinux/core/lwip/src/core/ipv4/ |
ip_addr.c | 55 ip4_addr_isbroadcast(u32_t addr, const struct netif *netif) 90 ip4_addr_netmask_valid(u32_t netmask) 92 u32_t mask; 93 u32_t nm_hostorder = lwip_htonl(netmask); 129 u32_t 154 u32_t val; 157 u32_t parts[4]; 158 u32_t *pp = parts; 278 u32_t s_addr;
|
inet_chksum.c | 83 u32_t acc; 139 u32_t sum = 0; 195 u32_t *pl; 196 u32_t sum = 0, tmp; 212 pl = (u32_t *)ps; 276 u32_t acc; 277 u32_t addr; 308 acc += (u32_t)htons((u16_t)proto); 309 acc += (u32_t)htons(proto_len); 336 u32_t acc [all...] |