Searched refs:isUIntN (Results 1 - 22 of 22) sorted by relevance

/external/llvm/unittests/Support/
H A DMathExtrasTest.cpp114 TEST(MathExtras, isUIntN) {
115 EXPECT_TRUE(isUIntN(16, 65535));
116 EXPECT_FALSE(isUIntN(16, 65536));
117 EXPECT_TRUE(isUIntN(1, 0));
118 EXPECT_TRUE(isUIntN(6, 63));
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h73 /// isUIntN - Checks if an unsigned integer fits into the given (dynamic)
75 inline bool isUIntN(unsigned N, uint64_t x) { function in namespace:llvm
/external/llvm/include/llvm/Support/
H A DMathExtras.h336 /// isUIntN - Checks if an unsigned integer fits into the given (dynamic)
338 inline bool isUIntN(unsigned N, uint64_t x) { function in namespace:llvm
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCStreamer.cpp84 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) &&
H A DMCDwarf.cpp1072 } else if (isUIntN(6, AddrDelta)) {
/external/llvm/lib/MC/
H A DMCStreamer.cpp86 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) &&
H A DMCDwarf.cpp1564 } else if (isUIntN(6, AddrDelta)) {
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DAPInt.h355 return isUIntN(N, VAL);
/external/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp921 if (!isUIntN(Size, IntValue) && !isIntN(Size, IntValue))
950 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
/external/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp1861 if (!isUIntN(6+Align, Off) || (Off & ((1<<Align)-1)))
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1775 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DAsmParser.cpp1733 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2670 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp2977 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
/external/clang/lib/Sema/
H A DSemaChecking.cpp5159 if (llvm::isUIntN(S.Context.getCharWidth(), CL->getValue()))
H A DSemaExpr.cpp8319 llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4724 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
H A DSelectionDAGBuilder.cpp1695 if (!isUIntN(VT.getSizeInBits(), B.Cases[i].Mask)) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2158 if (!isUIntN(VT.getSizeInBits(), B.Cases[i].Mask)) {
H A DDAGCombiner.cpp6922 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2138 if (!isUIntN(HalfSize, C->getZExtValue()))
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6476 if (!isUIntN(HalfSize, C->getZExtValue()))

Completed in 630 milliseconds