OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:APINT_BITS_PER_WORD
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
APInt.cpp
497
if (n1 <=
APINT_BITS_PER_WORD
)
509
if (n <=
APINT_BITS_PER_WORD
)
533
if (n1 <=
APINT_BITS_PER_WORD
&& n2 <=
APINT_BITS_PER_WORD
)
684
unsigned BitsInMSW = BitWidth %
APINT_BITS_PER_WORD
;
689
BitsInMSW =
APINT_BITS_PER_WORD
;
695
return llvm::countLeadingZeros(MSW) - (
APINT_BITS_PER_WORD
- BitsInMSW);
700
Count +=
APINT_BITS_PER_WORD
;
711
return CountLeadingOnes_64(VAL << (
APINT_BITS_PER_WORD
- BitWidth));
713
unsigned highWordBits = BitWidth %
APINT_BITS_PER_WORD
;
[
all
...]
/external/llvm/include/llvm/ADT/
APInt.h
88
APINT_BITS_PER_WORD
=
103
bool isSingleWord() const { return BitWidth <=
APINT_BITS_PER_WORD
; }
109
return bitPosition /
APINT_BITS_PER_WORD
;
117
return bitPosition %
APINT_BITS_PER_WORD
;
138
unsigned wordBits = BitWidth %
APINT_BITS_PER_WORD
;
146
uint64_t mask = ~uint64_t(0ULL) >> (
APINT_BITS_PER_WORD
- wordBits);
342
return VAL == ~integerPart(0) >> (
APINT_BITS_PER_WORD
- BitWidth);
517
if (numBits <=
APINT_BITS_PER_WORD
)
533
if (loBitsSet ==
APINT_BITS_PER_WORD
)
536
if (loBitsSet <=
APINT_BITS_PER_WORD
)
[
all
...]
Completed in 50 milliseconds