Searched refs:startBits (Results 1 - 4 of 4) sorted by relevance

/dalvik/vm/
H A DBitVector.h42 /* allocate a bit vector with enough space to hold "startBits" bits */
43 BitVector* dvmAllocBitVector(unsigned int startBits, bool expandable);
H A DBitVector.cpp32 BitVector* dvmAllocBitVector(unsigned int startBits, bool expandable) argument
41 count = (startBits + 31) >> 5;
/dalvik/vm/compiler/
H A DCompilerUtility.h66 BitVector* dvmCompilerAllocBitVector(unsigned int startBits, bool expandable);
H A DUtility.cpp270 BitVector* dvmCompilerAllocBitVector(unsigned int startBits, bool expandable) argument
279 count = (startBits + 31) >> 5;

Completed in 45 milliseconds