Home
last modified time | relevance | path

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

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMAxisIterNodeList.java62 private int m_last = -1; field in DTMAxisIterNodeList
74 m_last = 0; in DTMAxisIterNodeList()
112 } else if (m_last == -1) { in item()
119 m_last = count; in item()
133 if (m_last == -1) { in getLength()
138 m_last = m_cachedNodes.size(); in getLength()
140 return m_last; in getLength()
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DNodeSequence.java43 protected int m_last = -1; field in NodeSequence
190 m_last = ((DTMIterator)nodeVector).getLength(); in NodeSequence()
203 m_last = 0; in NodeSequence()
325 else if(cacheComplete() || (-1 != m_last) || (null == m_iter)) in nextNode()
362 m_last = m_next; in nextNode()
578 m_last = vec.size(); in setItem()
609 if(-1 == m_last) in getLength()
615 return m_last; in getLength()
619 return (-1 == m_last) ? (m_last = m_iter.getLength()) : m_last; in getLength()
/external/deqp/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()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DEncodingInfo.java213 m_last, in isInEncoding()
260 m_last, in isInEncoding()
300 final private int m_last; field in EncodingInfo.EncodingImpl
347 m_last = last; in EncodingImpl()
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXNodeSet.java61 m_last = nodeSet.m_last; in XNodeSet()
84 m_last = val.m_last; in XNodeSet()
114 m_last = 1; in XNodeSet()
117 m_last = 0; in XNodeSet()
DXNodeSetForDOM.java71 m_last=nsdtm.getLength(); in XNodeSetForDOM()
85 m_last=nsdtm.getLength(); in XNodeSetForDOM()
/external/llvm-project/lldb/examples/python/
Ddisasm-stress-test.py118 self.m_last = (1 << (byte_width * 8)) - 1
126 if self.m_value > self.m_last:
136 return (self.m_last - self.m_start) / self.m_skip
/external/apache-xml/src/main/java/org/apache/xpath/
DNodeSetDTM.java1212 transient private int m_last = 0; field in NodeSetDTM
1216 return m_last; in getLast()
1221 m_last = last; in setLast()
DNodeSet.java810 transient private int m_last = 0; field in NodeSet
814 return m_last; in getLast()
819 m_last = last; in setLast()
/external/usrsctp/usrsctplib/netinet/
Dsctp_output.c5122 struct mbuf *m, *m_last; local
5381 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope,
5387 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
5979 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; local
6600 m_last = m;
6617 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_last,
6635 SCTP_BUF_NEXT(m_last) = op_err;
6636 while (SCTP_BUF_NEXT(m_last) != NULL) {
6637 m_last = SCTP_BUF_NEXT(m_last);
6642 m_last = sctp_add_pad_tombuf(m_last, padding_len);
[all …]
Dsctputil.c3194 struct mbuf *m_last; in sctp_add_pad_tombuf() local
3205 m_last = m; in sctp_add_pad_tombuf()
3208 m_last = sctp_get_mbuf_for_msg(padlen, 0, M_NOWAIT, 1, MT_DATA); in sctp_add_pad_tombuf()
3209 if (m_last == NULL) { in sctp_add_pad_tombuf()
3212 SCTP_BUF_LEN(m_last) = 0; in sctp_add_pad_tombuf()
3213 SCTP_BUF_NEXT(m_last) = NULL; in sctp_add_pad_tombuf()
3214 SCTP_BUF_NEXT(m) = m_last; in sctp_add_pad_tombuf()
3216 dp = mtod(m_last, caddr_t) + SCTP_BUF_LEN(m_last); in sctp_add_pad_tombuf()
3217 SCTP_BUF_LEN(m_last) += padlen; in sctp_add_pad_tombuf()
3219 return (m_last); in sctp_add_pad_tombuf()
/external/usrsctp/usrsctplib/
Duser_mbuf.h61 struct mbuf *m_last(struct mbuf *m);
Duser_mbuf.c441 m_last(struct mbuf *m) in m_last() function