OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:whichWord
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
APInt.cpp
365
unsigned lhsWords = !lhsBits ? 0 :
whichWord
(lhsBits - 1) + 1;
372
unsigned rhsWords = !rhsBits ? 0 :
whichWord
(rhsBits - 1) + 1;
501
for (int i =
whichWord
(n1 - 1); i >= 0; --i)
537
unsigned topWord =
whichWord
(std::max(n1,n2)-1);
587
pVal[
whichWord
(bitPosition)] |= maskBit(bitPosition);
596
pVal[
whichWord
(bitPosition)] &= ~maskBit(bitPosition);
896
unsigned hiWord =
whichWord
(n-1);
[
all
...]
/external/llvm/include/llvm/ADT/
APInt.h
108
static unsigned
whichWord
(unsigned bitPosition) {
157
return isSingleWord() ? VAL : pVal[
whichWord
(bitPosition)];
945
(isSingleWord() ? VAL : pVal[
whichWord
(bitPosition)])) !=
[
all
...]
Completed in 5513 milliseconds