/external/rust/crates/libz-sys/src/zlib/contrib/dotzlib/DotZLib/ |
D | CircularBuffer.cs | 21 private int _head; field in DotZLib.CircularBuffer 32 _head = 0; in CircularBuffer() 65 destination[offset + i] = _buffer[(_head+i) % _capacity]; in Get() 66 _head += trueCount; in Get() 67 _head %= _capacity; in Get() 77 int result = (int)_buffer[_head++ % _capacity]; in Get()
|
/external/javassist/src/main/javassist/compiler/ast/ |
D | ASTList.java | 31 public ASTList(ASTree _head, ASTList _tail) { in ASTList() argument 32 left = _head; in ASTList() 36 public ASTList(ASTree _head) { in ASTList() argument 37 left = _head; in ASTList() 64 public void setHead(ASTree _head) { in setHead() argument 65 left = _head; in setHead()
|
D | Stmnt.java | 30 public Stmnt(int op, ASTree _head, ASTList _tail) { in Stmnt() argument 31 super(_head, _tail); in Stmnt() 35 public Stmnt(int op, ASTree _head) { in Stmnt() argument 36 super(_head); in Stmnt()
|
D | Expr.java | 36 Expr(int op, ASTree _head, ASTList _tail) { in Expr() argument 37 super(_head, _tail); in Expr() 41 Expr(int op, ASTree _head) { in Expr() argument 42 super(_head); in Expr()
|
D | FieldDecl.java | 25 public FieldDecl(ASTree _head, ASTList _tail) { in FieldDecl() argument 26 super(_head, _tail); in FieldDecl()
|
D | AssignExpr.java | 32 private AssignExpr(int op, ASTree _head, ASTList _tail) { in AssignExpr() argument 33 super(op, _head, _tail); in AssignExpr()
|
D | BinExpr.java | 36 private BinExpr(int op, ASTree _head, ASTList _tail) { in BinExpr() argument 37 super(op, _head, _tail); in BinExpr()
|
D | CallExpr.java | 31 private CallExpr(ASTree _head, ASTList _tail) { in CallExpr() argument 32 super(TokenId.CALL, _head, _tail); in CallExpr()
|
D | MethodDecl.java | 26 public MethodDecl(ASTree _head, ASTList _tail) { in MethodDecl() argument 27 super(_head, _tail); in MethodDecl()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/ |
D | ObjectBuffer.java | 30 private LinkedNode<Object[]> _head; field in ObjectBuffer 105 if (_head == null) { // first chunk in appendCompletedChunk() 106 _head = _tail = next; in appendCompletedChunk() 161 for (LinkedNode<Object[]> n = _head; n != null; n = n.next()) { in completeAndClearBuffer() 203 _head = _tail = null; in _reset() 212 for (LinkedNode<Object[]> n = _head; n != null; n = n.next()) { in _copyTo()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/ |
D | ArrayBroadcastChannel.kt | 48 private val _head = atomic(0L) constant in kotlinx.coroutines.channels.ArrayBroadcastChannel 50 get() = _head.value 51 set(value) { _head.value = value }
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/ |
D | JsonPointer.java | 55 protected volatile JsonPointer _head; field in JsonPointer 384 JsonPointer h = _head; in head() 389 _head = h; in head()
|
/external/clang/test/SemaObjC/ |
D | nonnull.m | 64 void _dispatch_queue_push_list(dispatch_object_t _head); // no warning 66 void func6(dispatch_object_t _head) { 68 _dispatch_queue_push_list(_head._do); // no warning
|
/external/llvm-project/clang/test/SemaObjC/ |
D | nonnull.m | 64 void _dispatch_queue_push_list(dispatch_object_t _head); // no warning 66 void func6(dispatch_object_t _head) { 68 _dispatch_queue_push_list(_head._do); // no warning
|