OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bitsInWord
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
APInt.cpp
1072
unsigned
bitsInWord
= whichBit(BitWidth); // how many bits in last word?
1073
if (
bitsInWord
== 0)
1074
bitsInWord
= APINT_BITS_PER_WORD;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp
109
static const unsigned
bitsInWord
= sizeof(unsigned) * 8;
110
static const unsigned bitInWordMask =
bitsInWord
- 1;
123
unsigned index = m_size /
bitsInWord
;
[
all
...]
Completed in 82 milliseconds