Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/
Duser_mbuf.h140 #define MLEN ((int)(MSIZE - sizeof(struct m_hdr))) /* normal data len */ macro
141 #define MHLEN ((int)(MLEN - sizeof(struct pkthdr))) /* data len w/pkthdr */
215 char M_databuf[MLEN]; /* !M_PKTHDR, !M_EXT */
359 &(m)->m_dat[MLEN] - ((m)->m_data + (m)->m_len))
393 (m)->m_data += (MLEN - (len)) & ~(sizeof(long) - 1); \
411 MLEN)
Duser_mbuf.c311 if ((!allonebuf && len >= MCLBYTES) || (len > (int)(((mbuf_threshold - 1) * MLEN) + MHLEN))) { in m_getm2()
325 if (len < MLEN) { in m_getm2()
328 size = MLEN; in m_getm2()
854 n->m_data + len < &n->m_dat[MLEN] && n->m_next) { in m_pullup()
870 space = (int)(&m->m_dat[MLEN] - (m->m_data + m->m_len)); in m_pullup()
1047 if (len > MLEN) in m_pulldown()
1284 memset(mtod(n, caddr_t), 0, MLEN); in m_copyback()
1285 n->m_len = min(MLEN, len + off); in m_copyback()
1304 n->m_len = min(MLEN, len); in m_copyback()
1340 if (len < MLEN) in m_prepend()
[all …]
Duser_recv_thread.c294 int want_ext = (iovlen > MLEN)? 1 : 0; in recv_function_raw()
474 int want_ext = (iovlen > MLEN)? 1 : 0; in recv_function_raw6()
638 int want_ext = (iovlen > MLEN)? 1 : 0; in recv_function_udp()
844 int want_ext = (iovlen > MLEN)? 1 : 0; in recv_function_udp6()
/third_party/skia/third_party/externals/brotli/research/
Dbrotlidump.py1663 self.MLEN = self.verboseRead(MetablockLengthAlphabet())
1664 if self.MLEN:
1682 self.output += self.stream.readBytes(self.MLEN)
1683 print(outputFormatter(self.output[-self.MLEN:]))
1835 while blockLen<self.MLEN:
1852 if blockLen>=self.MLEN: return
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_bsd_addr.c811 size = MLEN;
822 if (space_needed > (unsigned int)(((mbuf_threshold - 1) * MLEN) + MHLEN)) {
Dsctp_asconf.c123 if (buf_len > MLEN) { in sctp_asconf_error_response()
Dsctp_indata.c2734 if (SCTP_BUF_LEN(m) < (long)MLEN && SCTP_BUF_NEXT(m) == NULL) { in sctp_process_data()
Dsctp_output.c7005 (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))) {