Home
last modified time | relevance | path

Searched refs:RawValue (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTarget.cpp33 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 DLazyAtomicPointer.h101 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 DAPSIntType.h69 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 DYAMLParser.cpp2109 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 DJSON.cpp911 Stack.back().Ctx = RawValue; in rawValueBegin()
916 assert(Stack.back().Ctx == RawValue); in rawValueEnd()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/
H A DDIContext.h151 RawValue, enumerator
162 DILineInfoSpecifier(FileLineInfoKind FLIKind = FileLineInfoKind::RawValue,
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp3408 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 DGsymContext.cpp34 case DILineInfoSpecifier::FileLineInfoKind::RawValue: in fillLineInfoFromLocation()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h248 static StringRef getSingleQuotedValue(StringRef RawValue,
251 static StringRef getPlainValue(StringRef RawValue,
H A DJSON.h1090 RawValue, // External code writing a value to OS directly. enumerator
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.h392 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 DGlobalISelMatchTable.cpp662 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 DLVDWARFReader.cpp712 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 DMachO.h355 uint64_t rawValue() const { return RawValue; } in rawValue()
369 uint64_t RawValue = 0; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp3571 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 DMemProfReader.cpp546 DILineInfoSpecifier::FileLineInfoKind::RawValue, in symbolizeAndFilterStackFrames()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1489 if (Kind == FileLineInfoKind::RawValue || in getFileNameByIndex()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp207 auto relative = llvm::DILineInfoSpecifier::FileLineInfoKind::RawValue; in GetFileByIndex()