OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:startbits
(Results
1 - 7
of
7
) sorted by null
/dalvik/vm/
BitVector.h
42
/* allocate a bit vector with enough space to hold "
startBits
" bits */
43
BitVector* dvmAllocBitVector(unsigned int
startBits
, bool expandable);
BitVector.cpp
32
BitVector* dvmAllocBitVector(unsigned int
startBits
, bool expandable)
41
count = (
startBits
+ 31) >> 5;
/dalvik/vm/compiler/
CompilerUtility.h
66
BitVector* dvmCompilerAllocBitVector(unsigned int
startBits
, bool expandable);
Utility.cpp
270
BitVector* dvmCompilerAllocBitVector(unsigned int
startBits
, bool expandable)
279
count = (
startBits
+ 31) >> 5;
/external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp
323
unsigned getIslands(std::vector<unsigned> &
StartBits
,
666
unsigned FilterChooser::getIslands(std::vector<unsigned> &
StartBits
,
694
StartBits
.push_back(i);
719
assert(
StartBits
.size() == Num && EndBits.size() == Num &&
728
std::vector<unsigned>
StartBits
;
735
getIslands(
StartBits
, EndBits, FieldVals, Insn);
737
unsigned Size =
StartBits
.size();
778
o << "Inst{" << EndBits[I-1] << '-' <<
StartBits
[I-1] << "} ";
788
NumBits = EndBits[I-1] -
StartBits
[I-1] + 1;
790
<<
StartBits
[I-1] << ", " << NumBit
[
all
...]
ARMDecoderEmitter.cpp
476
unsigned getIslands(std::vector<unsigned> &
StartBits
,
932
unsigned ARMFilterChooser::getIslands(std::vector<unsigned> &
StartBits
,
960
StartBits
.push_back(i);
[
all
...]
/frameworks/base/media/libstagefright/codecs/aacdec/
ps_read_data.cpp
229
Int32
startbits
;
local
237
startbits
= GetNrBitsAvailable(hBitBuf);
290
nBitsLeft -=
startbits
- GetNrBitsAvailable(hBitBuf);
301
return (
startbits
- GetNrBitsAvailable(hBitBuf));
381
return (
startbits
- GetNrBitsAvailable(hBitBuf));
Completed in 665 milliseconds