Searched defs:word (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/
H A DBitVector.cpp70 unsigned int word, bit; local
73 for (word = 0; word < pBits->storageSize; word++) {
74 if (pBits->storage[word] != 0xffffffff) {
76 * There are unallocated bits in this word. Return the first.
78 bit = ffs(~(pBits->storage[word])) -1;
80 pBits->storage[word] |= 1 << bit;
81 return (word << 5) | bit;
111 /* Round up to word boundarie
[all...]
/dalvik/vm/alloc/
H A DHeapBitmapInlines.h43 const unsigned long word = *p; local
45 return word & mask;
H A DHeapBitmap.cpp105 unsigned long word = bitmap->bits[i]; local
106 if (UNLIKELY(word != 0)) {
109 while (word != 0) {
110 const int shift = CLZ(word);
113 word &= ~(highBit >> shift);
140 unsigned long word = bitmap->bits[i]; local
141 if (UNLIKELY(word != 0)) {
145 while (word != 0) {
146 const int shift = CLZ(word);
149 word
[all...]

Completed in 51 milliseconds