Home
last modified time | relevance | path

Searched refs:m_last (Results 1 – 5 of 5) sorted by relevance

/third_party/vk-gl-cts/framework/delibs/decpp/
DdeAppendList.hpp91 Block* volatile m_last; member in de::AppendList
168 , m_last (m_first) in AppendList()
220 m_last = m_first; in clear()
228 Block* curBlock = m_last; in append()
258 m_last = newBlock; in append()
286 return const_iterator(m_last, m_blockSize, m_numElements%m_blockSize); in end()
292 return iterator(m_last, m_blockSize, m_numElements%m_blockSize); in end()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_output.c5075 struct mbuf *m, *m_last; local
5334 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope,
5340 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
5931 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; local
6552 m_last = m;
6569 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_last,
6587 SCTP_BUF_NEXT(m_last) = op_err;
6588 while (SCTP_BUF_NEXT(m_last) != NULL) {
6589 m_last = SCTP_BUF_NEXT(m_last);
6594 m_last = sctp_add_pad_tombuf(m_last, padding_len);
[all …]
Dsctputil.c3216 struct mbuf *m_last; in sctp_add_pad_tombuf() local
3227 m_last = m; in sctp_add_pad_tombuf()
3230 m_last = sctp_get_mbuf_for_msg(padlen, 0, M_NOWAIT, 1, MT_DATA); in sctp_add_pad_tombuf()
3231 if (m_last == NULL) { in sctp_add_pad_tombuf()
3234 SCTP_BUF_LEN(m_last) = 0; in sctp_add_pad_tombuf()
3235 SCTP_BUF_NEXT(m_last) = NULL; in sctp_add_pad_tombuf()
3236 SCTP_BUF_NEXT(m) = m_last; in sctp_add_pad_tombuf()
3238 dp = mtod(m_last, caddr_t) + SCTP_BUF_LEN(m_last); in sctp_add_pad_tombuf()
3239 SCTP_BUF_LEN(m_last) += padlen; in sctp_add_pad_tombuf()
3241 return (m_last); in sctp_add_pad_tombuf()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/
Duser_mbuf.h61 struct mbuf *m_last(struct mbuf *m);
Duser_mbuf.c440 m_last(struct mbuf *m) in m_last() function