| /components/net/lwip/lwip-1.4.1/src/netif/ppp/ |
| A D | vj.c | 180 || *(long *)th != ((long *)&cs->cs_ip)[IPH_HL(&cs->cs_ip)]) { in vj_compress_tcp() 197 lcs = cs; cs = cs->cs_next; in vj_compress_tcp() 201 && *(long *)th == ((long *)&cs->cs_ip)[IPH_HL(&cs->cs_ip)]) { in vj_compress_tcp() 384 *cp++ = cs->cs_id; in vj_compress_tcp() 468 struct cstate *cs; in vj_uncompress_tcp() local 515 register u32_t i = ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp() 526 tmp = ntohl(th->seqno) + ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp() 551 IPH_ID_SET(&cs->cs_ip, ntohs(IPH_ID(&cs->cs_ip)) + 1); in vj_uncompress_tcp() 552 IPH_ID_SET(&cs->cs_ip, htons(IPH_ID(&cs->cs_ip))); in vj_uncompress_tcp() 575 IPH_LEN_SET(&cs->cs_ip, htons(n0->tot_len - vjlen + cs->cs_hlen)); in vj_uncompress_tcp() [all …]
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | vj.c | 240 lcs = cs; cs = cs->cs_next; in vj_compress_tcp() 265 if (cs == lastcs) { in vj_compress_tcp() 416 *cp++ = cs->cs_id; in vj_compress_tcp() 462 struct cstate *cs; in vj_uncompress_uncomp() local 501 struct cstate *cs; in vj_uncompress_tcp() local 548 u32_t i = lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp() 559 tmp = lwip_ntohl(th->seqno) + lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp() 584 IPH_ID_SET(&cs->cs_ip, lwip_ntohs(IPH_ID(&cs->cs_ip)) + 1); in vj_uncompress_tcp() 585 IPH_ID_SET(&cs->cs_ip, lwip_htons(IPH_ID(&cs->cs_ip))); in vj_uncompress_tcp() 608 IPH_LEN_SET(&cs->cs_ip, lwip_htons(n0->tot_len - vjlen + cs->cs_hlen)); in vj_uncompress_tcp() [all …]
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | vj.c | 245 lcs = cs; cs = cs->cs_next; in vj_compress_tcp() 270 if (cs == lastcs) { in vj_compress_tcp() 421 *cp++ = cs->cs_id; in vj_compress_tcp() 467 struct cstate *cs; in vj_uncompress_uncomp() local 505 struct cstate *cs; in vj_uncompress_tcp() local 552 u32_t i = lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp() 563 tmp = lwip_ntohl(th->seqno) + lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp() 588 IPH_ID_SET(&cs->cs_ip, lwip_ntohs(IPH_ID(&cs->cs_ip)) + 1); in vj_uncompress_tcp() 589 IPH_ID_SET(&cs->cs_ip, lwip_htons(IPH_ID(&cs->cs_ip))); in vj_uncompress_tcp() 612 IPH_LEN_SET(&cs->cs_ip, lwip_htons(n0->tot_len - vjlen + cs->cs_hlen)); in vj_uncompress_tcp() [all …]
|
| /components/drivers/spi/ |
| A D | dev_spi_dm.c | 41 rt_uint32_t value, cs[RT_SPI_CS_CNT_MAX]; in spi_device_ofw_parse() local 87 value = rt_ofw_prop_read_u32_array_index(np, "reg", 0, RT_SPI_CS_CNT_MAX, cs); in spi_device_ofw_parse() 99 spi_dev->chip_select[i] = cs[i]; in spi_device_ofw_parse()
|
| /components/drivers/usb/cherryusb/class/video/ |
| A D | usbh_video.h | 66 …eo *video_class, uint8_t request, uint8_t intf, uint8_t entity_id, uint8_t cs, uint8_t *buf, uint1… 67 …eo *video_class, uint8_t request, uint8_t intf, uint8_t entity_id, uint8_t cs, uint8_t *buf, uint1…
|
| A D | usbh_video.c | 60 …eo *video_class, uint8_t request, uint8_t intf, uint8_t entity_id, uint8_t cs, uint8_t *buf, uint1… in usbh_video_get() argument 73 setup->wValue = cs << 8; in usbh_video_get() 97 …eo *video_class, uint8_t request, uint8_t intf, uint8_t entity_id, uint8_t cs, uint8_t *buf, uint1… in usbh_video_set() argument 109 setup->wValue = cs << 8; in usbh_video_set()
|
| /components/drivers/ofw/ |
| A D | base.c | 309 rt_int32_t (*cmp)(const char *cs, const char *ct)) in ofw_prop_index_of_string() argument 334 static rt_int32_t ofw_strcasecmp(const char *cs, const char *ct) in ofw_strcasecmp() argument 336 return rt_strcasecmp(cs, ct); in ofw_strcasecmp() 1897 static rt_int32_t ofw_strcmp(const char *cs, const char *ct) in ofw_strcmp() argument 1899 return rt_strcmp(cs, ct); in ofw_strcmp()
|
| /components/lwp/arch/x86/i386/ |
| A D | lwp_arch.c | 144 frame->cs = USER_CODE_SEL; in lwp_user_stack_init()
|
| /components/dfs/dfs_v1/filesystems/elmfat/ |
| A D | ff.c | 1499 DWORD cs, ncl, scl; in create_chain() local 1509 cs = get_fat(obj, clst); /* Check the cluster status */ in create_chain() 1510 if (cs < 2) return 1; /* Test for insanity */ in create_chain() 1511 if (cs == 0xFFFFFFFF) return cs; /* Test for disk error */ in create_chain() 1512 if (cs < fs->n_fatent) return cs; /* It is already followed by next cluster */ in create_chain() 1549 if (cs == 1 || cs == 0xFFFFFFFF) return cs; /* Test for error */ in create_chain() 1550 if (cs != 0) { /* Not free? */ in create_chain() 1552 if (cs >= 2 && cs < fs->n_fatent) scl = cs; in create_chain() 1564 cs = get_fat(obj, ncl); /* Get the cluster status */ in create_chain() 1565 if (cs == 0) break; /* Found a free cluster? */ in create_chain() [all …]
|
| /components/dfs/dfs_v2/filesystems/elmfat/ |
| A D | ff.c | 1529 DWORD cs, ncl, scl; in create_chain() local 1539 cs = get_fat(obj, clst); /* Check the cluster status */ in create_chain() 1540 if (cs < 2) return 1; /* Test for insanity */ in create_chain() 1541 if (cs == 0xFFFFFFFF) return cs; /* Test for disk error */ in create_chain() 1542 if (cs < fs->n_fatent) return cs; /* It is already followed by next cluster */ in create_chain() 1579 if (cs == 1 || cs == 0xFFFFFFFF) return cs; /* Test for error */ in create_chain() 1580 if (cs != 0) { /* Not free? */ in create_chain() 1582 if (cs >= 2 && cs < fs->n_fatent) scl = cs; in create_chain() 1594 cs = get_fat(obj, ncl); /* Get the cluster status */ in create_chain() 1595 if (cs == 0) break; /* Found a free cluster? */ in create_chain() [all …]
|
| /components/net/lwip/lwip-2.0.3/doc/doxygen/ |
| A D | lwip.Doxyfile | 805 # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
|
| /components/net/lwip/lwip-2.1.2/doc/doxygen/ |
| A D | lwip.Doxyfile | 815 # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
|
| A D | lwip.Doxyfile.cmake.in | 815 # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
|