Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 8 of 8) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dvj.c101 u32_t tmp = ntohl(f) + ((cp[1] << 8) | cp[2]); \
102 (f) = htonl(tmp); \
105 u32_t tmp = ntohl(f) + (u32_t)*cp++; \
106 (f) = htonl(tmp); \
112 u_short tmp = ntohs(f) + (((u_short)cp[1] << 8) | cp[2]); \
113 (f) = htons(tmp); \
116 u_short tmp = ntohs(f) + (u_short)*cp++; \
117 (f) = htons(tmp); \
471 u32_t tmp; in vj_uncompress_tcp() local
517 tmp = ntohl(th->ackno) + i; in vj_uncompress_tcp()
[all …]
Drandm.c126 u_char tmp[16]; in avGenRand() local
134 MD5Final(tmp, &md5); in avGenRand()
136 MEMCPY(buf, tmp, n); in avGenRand()
/sys/amd64/
Dmachine.c56 uint64_t tmp; in Machine_GDTInit() local
69 tmp = offset & 0x00FFFFFF; in Machine_GDTInit()
70 GDT[c][4] |= (tmp << 16); in Machine_GDTInit()
71 tmp = offset & 0xFF000000; in Machine_GDTInit()
72 GDT[c][4] |= (tmp << 56); in Machine_GDTInit()
/lib/liblwip/src/core/ipv4/
Dinet_chksum.c196 u32_t sum = 0, tmp; in lwip_standard_chksum() local
215 tmp = sum + *pl++; /* ping */ in lwip_standard_chksum()
216 if (tmp < sum) { in lwip_standard_chksum()
217 tmp++; /* add back carry */ in lwip_standard_chksum()
220 sum = tmp + *pl++; /* pong */ in lwip_standard_chksum()
221 if (sum < tmp) { in lwip_standard_chksum()
Dip_frag.c137 struct ip_reassdata *tmp; in ip_reass_tmr() local
139 tmp = r; in ip_reass_tmr()
143 ip_reass_free_complete_datagram(tmp, prev); in ip_reass_tmr()
685 u16_t tmp; in ip_frag() local
714 tmp = ntohs(IPH_OFFSET(iphdr)); in ip_frag()
715 ofo = tmp & IP_OFFMASK; in ip_frag()
716 omf = tmp & IP_MF; in ip_frag()
726 tmp = omf | (IP_OFFMASK & (ofo)); in ip_frag()
728 tmp = tmp | IP_MF; in ip_frag()
811 IPH_OFFSET_SET(iphdr, htons(tmp)); in ip_frag()
/sys/kern/
Dktimer.c101 KTimerEvent *it, *tmp; in KTimer_Process() local
104 LIST_FOREACH_SAFE(it, &timerSlot[timerHead], timerQueue, tmp) { in KTimer_Process()
/lib/liblwip/src/arch/
Dsys_arch.c131 pthread_t tmp; in sys_thread_new() local
137 code = pthread_create(&tmp, in sys_thread_new()
144 st = introduce_thread(tmp); in sys_thread_new()
/sys/dev/x86/
Dide.c168 char tmp = str[2*i]; in IDE_SwapAndTruncateString() local
170 str[2*i+1] = tmp; in IDE_SwapAndTruncateString()