OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HB_BITS_PER_WORD
(Results
1 - 2
of
2
) sorted by null
/dalvik/vm/alloc/
HeapBitmap.h
23
#define
HB_BITS_PER_WORD
(sizeof(unsigned long) * CHAR_BIT)
30
((uintptr_t)(offset_) / HB_OBJECT_ALIGNMENT /
HB_BITS_PER_WORD
)
32
((uintptr_t)(index_) * HB_OBJECT_ALIGNMENT *
HB_BITS_PER_WORD
)
42
(31-(((uintptr_t)(offset_) / HB_OBJECT_ALIGNMENT) %
HB_BITS_PER_WORD
)))
HeapBitmap.cpp
107
unsigned long highBit = 1 << (
HB_BITS_PER_WORD
- 1);
142
unsigned long highBit = 1 << (
HB_BITS_PER_WORD
- 1);
182
void *pointerBuf[4 *
HB_BITS_PER_WORD
];
191
unsigned long highBit = 1 << (
HB_BITS_PER_WORD
- 1);
200
if (pb >= &pointerBuf[NELEM(pointerBuf) -
HB_BITS_PER_WORD
]) {
Completed in 567 milliseconds