Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 33) sorted by relevance

12

/components/net/lwip/lwip-2.1.2/src/netif/ppp/polarssl/
A Dmd4.c195 unsigned long left; in md4_update() local
200 left = ctx->total[0] & 0x3F; in md4_update()
201 fill = 64 - left; in md4_update()
209 if( left && ilen >= fill ) in md4_update()
211 MEMCPY( (void *) (ctx->buffer + left), in md4_update()
216 left = 0; in md4_update()
228 MEMCPY( (void *) (ctx->buffer + left), in md4_update()
A Dmd5.c214 unsigned long left; in md5_update() local
219 left = ctx->total[0] & 0x3F; in md5_update()
220 fill = 64 - left; in md5_update()
228 if( left && ilen >= fill ) in md5_update()
230 MEMCPY( (void *) (ctx->buffer + left), in md5_update()
235 left = 0; in md5_update()
247 MEMCPY( (void *) (ctx->buffer + left), in md5_update()
A Dsha1.c248 unsigned long left; in sha1_update() local
253 left = ctx->total[0] & 0x3F; in sha1_update()
254 fill = 64 - left; in sha1_update()
262 if( left && ilen >= fill ) in sha1_update()
264 MEMCPY( (void *) (ctx->buffer + left), in sha1_update()
269 left = 0; in sha1_update()
281 MEMCPY( (void *) (ctx->buffer + left), in sha1_update()
/components/net/lwip/lwip-2.0.3/src/netif/ppp/polarssl/
A Dmd4.c195 unsigned long left; in md4_update() local
200 left = ctx->total[0] & 0x3F; in md4_update()
201 fill = 64 - left; in md4_update()
209 if( left && ilen >= fill ) in md4_update()
211 MEMCPY( (void *) (ctx->buffer + left), in md4_update()
216 left = 0; in md4_update()
228 MEMCPY( (void *) (ctx->buffer + left), in md4_update()
A Dmd5.c214 unsigned long left; in md5_update() local
219 left = ctx->total[0] & 0x3F; in md5_update()
220 fill = 64 - left; in md5_update()
228 if( left && ilen >= fill ) in md5_update()
230 MEMCPY( (void *) (ctx->buffer + left), in md5_update()
235 left = 0; in md5_update()
247 MEMCPY( (void *) (ctx->buffer + left), in md5_update()
A Dsha1.c248 unsigned long left; in sha1_update() local
253 left = ctx->total[0] & 0x3F; in sha1_update()
254 fill = 64 - left; in sha1_update()
262 if( left && ilen >= fill ) in sha1_update()
264 MEMCPY( (void *) (ctx->buffer + left), in sha1_update()
269 left = 0; in sha1_update()
281 MEMCPY( (void *) (ctx->buffer + left), in sha1_update()
/components/drivers/block/partitions/
A Defi.h54 rt_inline int efi_guidcmp(efi_guid_t left, efi_guid_t right) in efi_guidcmp() argument
56 return rt_memcmp(&left, &right, sizeof (efi_guid_t)); in efi_guidcmp()
/components/net/lwip/lwip-2.1.2/src/core/ipv4/
A Dip4_frag.c751 u16_t left, fragsize; in ip4_frag() local
772 left = (u16_t)(p->tot_len - IP_HLEN); in ip4_frag()
774 while (left) { in ip4_frag()
776 fragsize = LWIP_MIN(left, (u16_t)(nfb * 8)); in ip4_frag()
852 last = (left <= netif->mtu - IP_HLEN); in ip4_frag()
883 left = (u16_t)(left - fragsize); in ip4_frag()
/components/net/lwip/lwip-2.1.2/src/core/ipv6/
A Dip6_frag.c732 u16_t left, cop; in ip6_frag() local
745 left = (u16_t)(p->tot_len - IP6_HLEN); in ip6_frag()
747 while (left) { in ip6_frag()
748 last = (left <= nfb); in ip6_frag()
751 cop = last ? left : nfb; in ip6_frag()
856 left = (u16_t)(left - cop); in ip6_frag()
/components/net/lwip/lwip-1.4.1/src/core/ipv4/
A Dip_frag.c680 u16_t left, cop; in ip_frag() local
718 left = p->tot_len - IP_HLEN; in ip_frag()
722 while (left) { in ip_frag()
723 last = (left <= mtu - IP_HLEN); in ip_frag()
732 cop = last ? left : nfb * 8; in ip_frag()
818 pbuf_realloc(rambuf, left + IP_HLEN); in ip_frag()
854 left -= cop; in ip_frag()
/components/net/lwip/lwip-2.0.3/src/apps/httpd/
A Dhttpd.c1141 hs->left = count;
1175 hs->left -= len;
1212 hs->left -= len;
1389 hs->left -= len;
1435 hs->left -= len;
1498 hs->left -= len;
1551 if (hs->left == 0) {
2254 hs->left = 0;
2258 hs->left = file->len;
2276 hs->left -= (u32_t)diff;
[all …]
/components/net/lwip/lwip-2.1.2/src/apps/http/
A Dhttpd.c1172 hs->left = count;
1206 hs->left -= len;
1244 hs->left -= len;
1426 hs->left -= len;
1470 hs->left -= len;
1545 hs->left -= len;
1599 if (hs->left == 0) {
2360 hs->left = 0;
2364 hs->left = (u32_t)file->len;
2382 hs->left -= (u32_t)diff;
[all …]
/components/net/lwip/lwip-2.0.3/src/core/ipv6/
A Dip6_frag.c673 u16_t left, cop; in ip6_frag() local
686 left = p->tot_len - IP6_HLEN; in ip6_frag()
690 while (left) { in ip6_frag()
691 last = (left <= nfb); in ip6_frag()
694 cop = last ? left : nfb; in ip6_frag()
799 left -= cop; in ip6_frag()
/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Dip4_frag.c729 u16_t left, fragsize; in ip4_frag() local
744 left = p->tot_len - IP_HLEN; in ip4_frag()
746 while (left) { in ip4_frag()
748 fragsize = LWIP_MIN(left, nfb * 8); in ip4_frag()
823 last = (left <= netif->mtu - IP_HLEN); in ip4_frag()
853 left -= fragsize; in ip4_frag()
/components/net/lwip/lwip-2.1.2/src/core/
A Dtcp_in.c1654 pcb->rcv_sacks[0].left = seqno;
2047 tcp_add_sack(struct tcp_pcb *pcb, u32_t left, u32_t right) argument
2052 if ((pcb->flags & TF_SACK) == 0 || !TCP_SEQ_LT(left, right)) {
2065 if (TCP_SEQ_LEQ(pcb->rcv_sacks[i].right, left) || TCP_SEQ_LEQ(right, pcb->rcv_sacks[i].left)) {
2085 pcb->rcv_sacks[i].left = pcb->rcv_sacks[i].right = 0;
2092 pcb->rcv_sacks[0].left = left;
2122 if (TCP_SEQ_LT(pcb->rcv_sacks[unused_idx].left, seq)) {
2123 pcb->rcv_sacks[unused_idx].left = seq;
2131 pcb->rcv_sacks[i].left = pcb->rcv_sacks[i].right = 0;
2156 if (TCP_SEQ_LT(pcb->rcv_sacks[i].left, seq)) {
[all …]
A Dpbuf.c1030 u16_t left = 0; in pbuf_copy_partial() local
1049 MEMCPY(&((char *)dataptr)[left], &((char *)p->payload)[offset], buf_copy_len); in pbuf_copy_partial()
1051 left = (u16_t)(left + buf_copy_len); in pbuf_copy_partial()
/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Dtcp.h161 u32_t left; member
291 #define LWIP_TCP_SACK_VALID(pcb, idx) ((pcb)->rcv_sacks[idx].left != (pcb)->rcv_sacks[idx].right)
/components/net/lwip/lwip-1.4.1/src/core/
A Dpbuf.c921 u16_t left; in pbuf_copy_partial() local
928 left = 0; in pbuf_copy_partial()
945 MEMCPY(&((char*)dataptr)[left], &((char*)p->payload)[offset], buf_copy_len); in pbuf_copy_partial()
947 left += buf_copy_len; in pbuf_copy_partial()
A Dtcp_out.c524 u16_t left = len - pos; in tcp_write() local
526 u16_t seglen = left > max_len ? max_len : left; in tcp_write()
/components/net/lwip/lwip-2.0.3/src/core/
A Dpbuf.c1018 u16_t left; in pbuf_copy_partial() local
1025 left = 0; in pbuf_copy_partial()
1043 MEMCPY(&((char*)dataptr)[left], &((char*)p->payload)[offset], buf_copy_len); in pbuf_copy_partial()
1045 left += buf_copy_len; in pbuf_copy_partial()
/components/lwp/terminal/freebsd/
A Dtty_ttydisc.c243 struct timeval end, now, left; in ttydisc_read_raw_read_timer() local
270 left = end; in ttydisc_read_raw_read_timer()
271 timevalsub(&left, &now); in ttydisc_read_raw_read_timer()
272 hz = tvtohz(&left); in ttydisc_read_raw_read_timer()
/components/net/lwip/lwip-2.0.3/doc/
A Dmdns.txt7 See notes in src/apps/mdns/mdns.c for what is left. It is however usable in normal
/components/net/lwip/lwip-2.1.2/doc/
A Dmdns.txt7 See notes in src/apps/mdns/mdns.c for what is left. It is however usable in normal
/components/net/lwip/lwip-2.0.3/doc/doxygen/
A Dlwip.Doxyfile59 # left blank the current directory will be used.
116 # text. Otherwise, the brief description is used as-is. If left blank, the
156 # Stripping is only done if one of the specified strings matches the left-hand
158 # If left blank the directory from which doxygen is run is used as the path to
695 # tag is left empty.
803 # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
882 # *.h) to filter out the source-files in the directories. If left blank all
1690 # If left blank no extra packages will be included.
1697 # chapter. If it is left blank doxygen will generate a standard header. See
1713 # chapter. If it is left blank doxygen will generate a standard footer. See
[all …]
/components/net/lwip/lwip-2.1.2/doc/doxygen/
A Dlwip.Doxyfile59 # left blank the current directory will be used.
116 # text. Otherwise, the brief description is used as-is. If left blank, the
156 # Stripping is only done if one of the specified strings matches the left-hand
158 # If left blank the directory from which doxygen is run is used as the path to
704 # tag is left empty.
813 # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
893 # *.h) to filter out the source-files in the directories. If left blank all
1701 # If left blank no extra packages will be included.
1708 # chapter. If it is left blank doxygen will generate a standard header. See
1724 # chapter. If it is left blank doxygen will generate a standard footer. See
[all …]

Completed in 61 milliseconds

12