Home
last modified time | relevance | path

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

/external/zlib/src/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/javassist/src/main/javassist/compiler/ast/
DASTList.java28 public ASTList(ASTree _head, ASTList _tail) { in ASTList() argument
30 right = _tail; in ASTList()
66 public void setTail(ASTList _tail) { in setTail() argument
67 right = _tail; in setTail()
DAssignExpr.java28 private AssignExpr(int op, ASTree _head, ASTList _tail) { in AssignExpr() argument
29 super(op, _head, _tail); in AssignExpr()
DBinExpr.java32 private BinExpr(int op, ASTree _head, ASTList _tail) { in BinExpr() argument
33 super(op, _head, _tail); in BinExpr()
DFieldDecl.java21 public FieldDecl(ASTree _head, ASTList _tail) { in FieldDecl() argument
22 super(_head, _tail); in FieldDecl()
DCallExpr.java28 private CallExpr(ASTree _head, ASTList _tail) { in CallExpr() argument
29 super(TokenId.CALL, _head, _tail); in CallExpr()
DMethodDecl.java23 public MethodDecl(ASTree _head, ASTList _tail) { in MethodDecl() argument
24 super(_head, _tail); in MethodDecl()
DStmnt.java27 public Stmnt(int op, ASTree _head, ASTList _tail) { in Stmnt() argument
28 super(_head, _tail); in Stmnt()
DExpr.java33 Expr(int op, ASTree _head, ASTList _tail) { in Expr() argument
34 super(_head, _tail); in Expr()
/external/elfutils/libdw/
DlibdwP.h412 ({ struct libdw_memblock *_tail = (dbg)->mem_tail; \
414 type *_result = (type *) (_tail->mem + (_tail->size - _tail->remaining));\
418 if (unlikely (_tail->remaining < _required + _padding)) \
424 _tail->remaining -= _required; \
DChangeLog2611 (libdw_alloc): Define local variable _tail and use it.
/external/brotli/
DCMakeLists.txt48 string(TOUPPER "${HEXADECIMAL}" _tail)
50 string(LENGTH "${_tail}" _tail_length)
53 string(SUBSTRING "${_tail}" 0 1 _digit)
54 string(SUBSTRING "${_tail}" 1 -1 _tail)
70 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/llvm/docs/
DCodeGenerator.rst2022 .. _tail call section: