Home
last modified time | relevance | path

Searched refs:start_index (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/third_party/tcplp/lib/
Dcbuf.c289 size_t start_index; in cbuf_reass_write() local
297 start_index = (cbuf_get_w_index(chdr) + offset) % chdr->size; in cbuf_reass_write()
298 end_index = (start_index + numbytes) % chdr->size; in cbuf_reass_write()
299 if (end_index >= start_index) { in cbuf_reass_write()
300 copy_from(buf_data, start_index, data, data_offset, numbytes); in cbuf_reass_write()
302 bmp_setrange(bitmap, start_index, numbytes); in cbuf_reass_write()
305 bytes_to_end = chdr->size - start_index; in cbuf_reass_write()
306 copy_from(buf_data, start_index, data, data_offset, bytes_to_end); in cbuf_reass_write()
309 bmp_setrange(bitmap, start_index, bytes_to_end); in cbuf_reass_write()
314 *firstindex = start_index; in cbuf_reass_write()
/openthread-latest/tests/scripts/thread-cert/pktverify/
Derrors.py43 def __init__(self, start_index, stop_index): argument
44 self._start_index = start_index
Dpacket_filter.py135 def start_index(self) -> Tuple[int, int]: member in PacketFilter
/openthread-latest/third_party/tcplp/bsdtcp/
Dtcp_reass.c58 size_t start_index; in tcp_reass() local
81 …&tp->recvbuf, (size_t) offset, data, data_offset, tlen, tp->reassbmp, &start_index, cbuf_copy_from… in tcp_reass()
84 tp->reass_fin_index = (int16_t) (start_index + tlen); in tcp_reass()