| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | Target.cpp | 33 unsigned long long RawValue; in create() 34 if (!PlatformStr.getAsInteger(10, RawValue)) in create() 35 Platform = (PlatformType)RawValue; in create() 39 unsigned long long RawValue; create() local
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | LazyAtomicPointer.h | 101 uintptr_t RawValue = Storage.load(); in load() local 102 return RawValue == getBusy() ? nullptr : makePointer(RawValue); in load()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | APSIntType.h | 69 llvm::APSInt getValue(uint64_t RawValue) const LLVM_READONLY { in getValue() argument 70 return (llvm::APSInt(BitWidth, IsUnsigned) = RawValue); in getValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 2109 ScalarNode::getDoubleQuotedValue(StringRef RawValue, in getDoubleQuotedValue() argument 2111 assert(RawValue.size() >= 2 && RawValue.front() == '"' && in getDoubleQuotedValue() 2112 RawValue.back() == '"'); in getDoubleQuotedValue() 2113 StringRef UnquotedValue = RawValue.substr(1, RawValue.size() - 2); in getDoubleQuotedValue() 2233 StringRef ScalarNode::getSingleQuotedValue(StringRef RawValue, in getSingleQuotedValue() argument 2235 assert(RawValue.size() >= 2 && RawValue.front() == '\'' && in getSingleQuotedValue() 2236 RawValue.back() == '\''); in getSingleQuotedValue() 2237 StringRef UnquotedValue = RawValue.substr(1, RawValue.size() - 2); in getSingleQuotedValue() 2249 StringRef ScalarNode::getPlainValue(StringRef RawValue, in getPlainValue() argument 2254 RawValue = RawValue.rtrim("\r\n \t"); in getPlainValue() [all …]
|
| H A D | JSON.cpp | 911 Stack.back().Ctx = RawValue; in rawValueBegin() 916 assert(Stack.back().Ctx == RawValue); in rawValueEnd()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/ |
| H A D | DIContext.h | 151 RawValue, enumerator 162 DILineInfoSpecifier(FileLineInfoKind FLIKind = FileLineInfoKind::RawValue,
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 3408 if (SegmentOffset + sizeof(RawValue) > SegmentData.size()) { in moveNext() 3416 static_assert(sizeof(RawValue) == sizeof(MachO::dyld_chained_import_addend)); in moveNext() 3417 memcpy(&RawValue, SegmentData.data() + SegmentOffset, sizeof(RawValue)); in moveNext() 3419 sys::swapByteOrder(RawValue); in moveNext() 3425 return (RawValue >> Right) & ((1ULL << Count) - 1); in moveNext() 5149 std::array<T, N> RawValue; in getArray() local 5150 memcpy(RawValue.data(), Ptr, N * sizeof(T)); in getArray() 5152 for (auto &Element : RawValue) in getArray() 5154 return RawValue; in getArray() 5211 auto RawValue = getArray<uint32_t, 1>(*this, ImportPtr); in getDyldChainedFixupTargets() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | GsymContext.cpp | 34 case DILineInfoSpecifier::FileLineInfoKind::RawValue: in fillLineInfoFromLocation()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | YAMLParser.h | 248 static StringRef getSingleQuotedValue(StringRef RawValue, 251 static StringRef getPlainValue(StringRef RawValue,
|
| H A D | JSON.h | 1090 RawValue, // External code writing a value to OS directly. enumerator
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
| H A D | GlobalISelMatchTable.h | 392 int64_t RawValue; member 395 int64_t RawValue = std::numeric_limits<int64_t>::min()) 396 : Record(std::move(Record)), RawValue(RawValue) {} in Record() 399 return RawValue < Other.RawValue;
|
| H A D | GlobalISelMatchTable.cpp | 662 const int64_t LowerBound = Values.begin()->RawValue; in emit() 663 const int64_t UpperBound = Values.rbegin()->RawValue + 1; in emit() 675 while (J++ < V.RawValue) in emit()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVDWARFReader.cpp | 712 0, None, DILineInfoSpecifier::FileLineInfoKind::RawValue, in createScopes() 715 1, None, DILineInfoSpecifier::FileLineInfoKind::RawValue, in createScopes()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | MachO.h | 355 uint64_t rawValue() const { return RawValue; } in rawValue() 369 uint64_t RawValue = 0; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelDAGToDAG.cpp | 3571 std::optional<APInt> RawValue; in SelectWMMAVISrc() local 3573 RawValue = C->getValueAPF().bitcastToAPInt(); in SelectWMMAVISrc() 3575 RawValue = C->getAPIntValue(); in SelectWMMAVISrc() 3577 if (RawValue.has_value()) { in SelectWMMAVISrc() 3583 RawValue.value()); in SelectWMMAVISrc() 3585 Src = CurDAG->getTargetConstant(RawValue.value(), SDLoc(In), in SelectWMMAVISrc() 3590 if (TII->isInlineConstant(RawValue.value())) { in SelectWMMAVISrc() 3591 Src = CurDAG->getTargetConstant(RawValue.value(), SDLoc(In), in SelectWMMAVISrc()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | MemProfReader.cpp | 546 DILineInfoSpecifier::FileLineInfoKind::RawValue, in symbolizeAndFilterStackFrames()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.cpp | 1489 if (Kind == FileLineInfoKind::RawValue || in getFileNameByIndex()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARF.cpp | 207 auto relative = llvm::DILineInfoSpecifier::FileLineInfoKind::RawValue; in GetFileByIndex()
|