Home
last modified time | relevance | path

Searched refs:_tail (Results 1 – 19 of 19) sorted by relevance

/external/rust/crates/libz-sys/src/zlib/contrib/dotzlib/DotZLib/
DCircularBuffer.cs22 private int _tail; field in DotZLib.CircularBuffer
33 _tail = 0; in CircularBuffer()
44 _buffer[(_tail+i) % _capacity] = source[offset+i]; in Put()
45 _tail += trueCount; in Put()
46 _tail %= _capacity; in Put()
55 _buffer[_tail++] = b; in Put()
56 _tail %= _capacity; in Put()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DObjectBuffer.java32 private LinkedNode<Object[]> _tail; field in ObjectBuffer
106 _head = _tail = next; in appendCompletedChunk()
108 _tail.linkNext(next); in appendCompletedChunk()
109 _tail = next; in appendCompletedChunk()
199 if (_tail != null) { in _reset()
200 _freeBuffer = _tail.value(); in _reset()
203 _head = _tail = null; in _reset()
/external/flatbuffers/dart/lib/
Dflat_buffers.dart125 int _tail;
160 _buf.setInt8(_buf.lengthInBytes - _tail, value ? 1 : 0);
171 _setInt32AtTail(_buf, _tail, value);
182 _setInt16AtTail(_buf, _tail, value);
193 _setInt8AtTail(_buf, _tail, value);
209 _setUint32AtTail(_buf, _tail, _tail - offset);
220 _setUint32AtTail(_buf, _tail, value);
231 _setUint16AtTail(_buf, _tail, value);
242 _setUint8AtTail(_buf, _tail, value);
253 _setFloat32AtTail(_buf, _tail, value);
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DASTList.java31 public ASTList(ASTree _head, ASTList _tail) { in ASTList() argument
33 right = _tail; in ASTList()
73 public void setTail(ASTList _tail) { in setTail() argument
74 right = _tail; in setTail()
DFieldDecl.java25 public FieldDecl(ASTree _head, ASTList _tail) { in FieldDecl() argument
26 super(_head, _tail); in FieldDecl()
DAssignExpr.java32 private AssignExpr(int op, ASTree _head, ASTList _tail) { in AssignExpr() argument
33 super(op, _head, _tail); in AssignExpr()
DBinExpr.java36 private BinExpr(int op, ASTree _head, ASTList _tail) { in BinExpr() argument
37 super(op, _head, _tail); in BinExpr()
DCallExpr.java31 private CallExpr(ASTree _head, ASTList _tail) { in CallExpr() argument
32 super(TokenId.CALL, _head, _tail); in CallExpr()
DMethodDecl.java26 public MethodDecl(ASTree _head, ASTList _tail) { in MethodDecl() argument
27 super(_head, _tail); in MethodDecl()
DStmnt.java30 public Stmnt(int op, ASTree _head, ASTList _tail) { in Stmnt() argument
31 super(_head, _tail); in Stmnt()
DExpr.java36 Expr(int op, ASTree _head, ASTList _tail) { in Expr() argument
37 super(_head, _tail); in Expr()
/external/elfutils/libdw/
DlibdwP.h579 ({ struct libdw_memblock *_tail = __libdw_alloc_tail(dbg); \
581 type *_result = (type *) (_tail->mem + (_tail->size - _tail->remaining));\
585 if (unlikely (_tail->remaining < _required + _padding)) \
591 _tail->remaining -= _required; \
600 ({ struct libdw_memblock *_tail = __libdw_thread_tail (dbg); \
603 _tail->remaining += _required; }) \
DChangeLog3701 (libdw_alloc): Define local variable _tail and use it.
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DArrayBroadcastChannel.kt53 private val _tail = atomic(0L) constant in kotlinx.coroutines.channels.ArrayBroadcastChannel
55 get() = _tail.value
56 set(value) { _tail.value = value }
/external/brotli/
DCMakeLists.txt52 string(TOUPPER "${HEXADECIMAL}" _tail)
54 string(LENGTH "${_tail}" _tail_length)
57 string(SUBSTRING "${_tail}" 0 1 _digit)
58 string(SUBSTRING "${_tail}" 1 -1 _tail)
74 string(LENGTH "${_tail}" _tail_length)
/external/python/cpython2/Lib/xml/etree/
DElementTree.py1382 self._tail = None # true if we're after an end tag
1403 if self._tail:
1434 self._tail = 0
1450 self._tail = 1
/external/python/cpython3/Lib/xml/etree/
DElementTree.py1420 self._tail = None # true if we're after an end tag
1443 if self._tail:
1469 self._tail = 0
1483 self._tail = 1
1510 self._tail = 1
/external/llvm-project/llvm/docs/
DCodeGenerator.rst2061 .. _tail call section:
/external/llvm/docs/
DCodeGenerator.rst2022 .. _tail call section: