Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 25 of 86) sorted by relevance

1234

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
DAtomicMarkableReference.java25 private final boolean bit; field in AtomicMarkableReference.ReferenceBooleanPair
27 reference = r; bit = i; in ReferenceBooleanPair()
59 return atomicRef.get().bit; in isMarked()
72 markHolder[0] = p.bit; in get()
98 expectedMark == current.bit && in weakCompareAndSet()
99 ((newReference == current.reference && newMark == current.bit) || in weakCompareAndSet()
123 expectedMark == current.bit && in compareAndSet()
124 ((newReference == current.reference && newMark == current.bit) || in compareAndSet()
138 if (newReference != current.reference || newMark != current.bit) in set()
158 (newMark == current.bit || in attemptMark()
/dalvik/dx/src/com/android/dx/util/
DBits.java60 int bit = 1 << (idx & 0x1f); in get() local
61 return (bits[arrayIdx] & bit) != 0; in get()
73 int bit = 1 << (idx & 0x1f); in set() local
76 bits[arrayIdx] |= bit; in set()
78 bits[arrayIdx] &= ~bit; in set()
90 int bit = 1 << (idx & 0x1f); in set() local
91 bits[arrayIdx] |= bit; in set()
102 int bit = 1 << (idx & 0x1f); in clear() local
103 bits[arrayIdx] &= ~bit; in clear()
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
DBitString.java93 public boolean getBit(int bit) { in getBit() argument
94 int offset = bit % 8; in getBit()
95 int index = bit / 8; in getBit()
99 public void setBit(int bit, boolean value) { in setBit() argument
100 int offset = bit % 8; in setBit()
101 int index = bit / 8; in setBit()
/dalvik/vm/arch/arm/
DCallEABI.S144 DBG tst sp, #4 @ 64-bit aligned?
156 @ Do we have arg padding flags in "argInfo"? (just need to check hi bit)
339 beq .Lstack_copy_loop @ 64-bit arg fills r2+r3
341 @ First arg was 32-bit, check the next
348 @ Two 32-bit args, fall through and start with next arg
360 @ Copy a 32-bit value. [r8] is initially at the end of the stack. We
369 @ Copy a 64-bit value. If necessary, leave a hole in the stack to
370 @ ensure alignment. We know the [r8] output area is 64-bit aligned,
/dalvik/vm/alloc/TEST/HeapBitmapTest/
Dmain.c211 unsigned long bit; in test_modify() local
219 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, HEAP_BASE); in test_modify()
220 assert(bit == 0); in test_modify()
239 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, HEAP_BASE); in test_modify()
240 assert(bit != 0); in test_modify()
259 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, in test_modify()
261 assert(bit == 0); in test_modify()
280 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, in test_modify()
282 assert(bit != 0); in test_modify()
/dalvik/vm/
DMisc.c236 int word, bit; in dvmAllocBit() local
244 bit = ffs(~(pBits->storage[word])) -1; in dvmAllocBit()
245 assert(bit >= 0 && bit < 32); in dvmAllocBit()
246 pBits->storage[word] |= 1 << bit; in dvmAllocBit()
247 return (word << 5) | bit; in dvmAllocBit()
315 int word, bit; in dvmCountSetBits() local
/dalvik/dx/tests/006-interfaces/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a non-empty
/dalvik/dx/tests/007-no-superclass/
Dinfo.txt5 The salient bit of parsing tested here is that the class is Object-like and
/dalvik/dx/tests/016-field-attrib-Deprecated/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/015-field-attrib-Synthetic/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/013-class-attrib-Deprecated/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/026-field-attrib-Signature/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/025-class-attrib-Signature/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/011-class-attrib-Synthetic/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/012-class-attrib-SourceFile/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/020-method-attrib-Deprecated/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/027-method-attrib-Signature/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/019-method-attrib-Synthetic/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/018-method-attrib-Exceptions/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/017-method-attrib-Code/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/021-code-attrib-LineNumberTable/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/022-code-attrib-LocalVariableTable/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/023-code-exception-table/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single
/dalvik/dx/tests/014-field-attrib-ConstantValue/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a series of
/dalvik/dx/tests/009-method/
Dinfo.txt5 The salient bit of parsing tested here is that the class has a single

1234