Home
last modified time | relevance | path

Searched refs:isUIntN (Results 1 – 25 of 42) sorted by relevance

12

/external/llvm/unittests/Support/
DMathExtrasTest.cpp114 TEST(MathExtras, isUIntN) { in TEST() argument
115 EXPECT_TRUE(isUIntN(16, 65535)); in TEST()
116 EXPECT_FALSE(isUIntN(16, 65536)); in TEST()
117 EXPECT_TRUE(isUIntN(1, 0)); in TEST()
118 EXPECT_TRUE(isUIntN(6, 63)); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DMathExtrasTest.cpp139 TEST(MathExtras, isUIntN) { in TEST() argument
140 EXPECT_TRUE(isUIntN(16, 65535)); in TEST()
141 EXPECT_FALSE(isUIntN(16, 65536)); in TEST()
142 EXPECT_TRUE(isUIntN(1, 0)); in TEST()
143 EXPECT_TRUE(isUIntN(6, 63)); in TEST()
/external/capstone/
DMathExtras.h50 static inline bool isUIntN(unsigned N, uint64_t x) { in isUIntN() function
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DMathExtras.h75 inline bool isUIntN(unsigned N, uint64_t x) { in isUIntN() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRAsmBackend.cpp59 if (!isUIntN(Width, Value)) { in unsigned_width()
/external/llvm/include/llvm/Support/
DMathExtras.h338 inline bool isUIntN(unsigned N, uint64_t x) {
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMathExtras.h360 inline bool isUIntN(unsigned N, uint64_t x) {
/external/swiftshader/third_party/LLVM/lib/MC/
DMCStreamer.cpp84 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) && in EmitIntValue()
DMCDwarf.cpp1072 } else if (isUIntN(6, AddrDelta)) { in EncodeAdvanceLoc()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DMathExtras.h393 inline bool isUIntN(unsigned N, uint64_t x) {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCObjectStreamer.cpp179 if (!isUIntN(8 * Size, AbsValue) && !isIntN(8 * Size, AbsValue)) { in EmitValueImpl()
DMCStreamer.cpp114 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) && in EmitIntValue()
DMCDwarf.cpp1859 } else if (isUIntN(6, AddrDelta)) { in EncodeAdvanceLoc()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DAPInt.h355 return isUIntN(N, VAL); in isIntN()
/external/llvm/lib/MC/
DMCStreamer.cpp86 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) && in EmitIntValue()
DMCDwarf.cpp1564 } else if (isUIntN(6, AddrDelta)) { in EncodeAdvanceLoc()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DMemoryBuiltins.cpp470 isUIntN(ResultType->getBitWidth(), Size)) in lowerObjectSizeCall()
/external/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp921 if (!isUIntN(Size, IntValue) && !isIntN(Size, IntValue)) in ParseDirectiveFalign()
950 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in ParseDirectiveValue()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/
DX86AsmParser.cpp3148 (isIntN(Size, CE->getValue()) || isUIntN(Size, CE->getValue()))) { in MatchAndEmitIntelInstruction()
3392 if (!isUIntN(32, ParamsSize)) in parseDirectiveFPOProc()
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DAsmParser.cpp1733 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in ParseDirectiveValue()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DAsmParser.cpp2985 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveValue()
4580 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveDCB()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp709 if (!isUIntN(Size, IntValue) && !isIntN(Size, IntValue)) in ParseDirectiveFalign()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/AsmParser/
DPPCAsmParser.cpp1822 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in ParseDirectiveWord()
/external/llvm/lib/Target/PowerPC/AsmParser/
DPPCAsmParser.cpp1775 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in ParseDirectiveWord()
/external/llvm/lib/Target/Hexagon/
DHexagonBitSimplify.cpp1861 if (!isUIntN(6+Align, Off) || (Off & ((1<<Align)-1))) in genStoreImmediate()

12