HomeSort by relevance Sort by last modified time
    Searched refs:getUnsigned (Results 1 - 17 of 17) sorted by null

  /external/llvm/unittests/ADT/
APSIntTest.cpp 55 TEST(APSIntTest, getUnsigned) {
56 EXPECT_TRUE(APSInt::getUnsigned(7).isUnsigned());
57 EXPECT_EQ(64u, APSInt::getUnsigned(7).getBitWidth());
58 EXPECT_EQ(7u, APSInt::getUnsigned(7).getZExtValue());
59 EXPECT_EQ(7, APSInt::getUnsigned(7).getSExtValue());
60 EXPECT_TRUE(APSInt::getUnsigned(-7).isUnsigned());
61 EXPECT_EQ(64u, APSInt::getUnsigned(-7).getBitWidth());
62 EXPECT_EQ(-7, APSInt::getUnsigned(-7).getSExtValue());
63 EXPECT_EQ(UINT64_C(0) - 7, APSInt::getUnsigned(-7).getZExtValue());
82 auto U = [](uint64_t V) { return APSInt::getUnsigned(V); }
    [all...]
  /external/llvm/include/llvm/Support/
DataExtractor.h 85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
130 return getUnsigned(offset_ptr, AddressSize);
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugArangeSet.cpp 76 arangeDescriptor.Address = data.getUnsigned(offset_ptr, HeaderData.AddrSize);
77 arangeDescriptor.Length = data.getUnsigned(offset_ptr, HeaderData.AddrSize);
DWARFDebugLoc.cpp 50 E.Begin = data.getUnsigned(&Offset, AddressSize);
56 E.End = data.getUnsigned(&Offset, AddressSize);
DWARFFormValue.cpp 155 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + R.second;
157 Value.uval = data.getUnsigned(offset_ptr, AddrSize);
DWARFDebugFrame.cpp 471 Id = Data.getUnsigned(&Offset, IsDWARF64 ? 8 : 4);
DWARFDebugLine.cpp 85 PrologueLength = debug_line_data.getUnsigned(offset_ptr,
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 27 EXPECT_EQ(kUnsigned, Value.getUnsigned());
96 EXPECT_EQ(17U, Value.getUnsigned());
ParserTest.cpp 87 EXPECT_EQ(0U, Sema.Values[0].getUnsigned());
88 EXPECT_EQ(123U, Sema.Values[1].getUnsigned());
89 EXPECT_EQ(31U, Sema.Values[2].getUnsigned());
144 EXPECT_EQ(17U, Bar.Args[0].Value.getUnsigned());
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 266 unsigned getUnsigned() const;
  /external/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 167 bool getUnsigned(unsigned &Result);
312 if (getUnsigned(ID))
456 if (getUnsigned(Weight))
796 if (getUnsigned(ID))
871 if (getUnsigned(TiedDefIdx))
    [all...]
  /external/llvm/lib/Support/
DataExtractor.cpp 92 DataExtractor::getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const {
103 llvm_unreachable("getUnsigned unhandled case!");
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 267 setUnsigned(Other.getUnsigned());
302 unsigned VariantValue::getUnsigned() const {
Marshallers.h 72 return Value.getUnsigned();
  /external/llvm/include/llvm/ADT/
APSInt.h 321 static APSInt getUnsigned(uint64_t X) { return APSInt(APInt(64, X), true); }
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]

Completed in 1009 milliseconds