Home
last modified time | relevance | path

Searched refs:RawValue (Results 1 – 15 of 15) 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/include/llvm/DebugInfo/
H A DDIContext.h149 RawValue, enumerator
160 DILineInfoSpecifier(FileLineInfoKind FLIKind = FileLineInfoKind::RawValue,
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp3409 if (SegmentOffset + sizeof(RawValue) > SegmentData.size()) { in moveNext()
3417 static_assert(sizeof(RawValue) == sizeof(MachO::dyld_chained_import_addend)); in moveNext()
3418 memcpy(&RawValue, SegmentData.data() + SegmentOffset, sizeof(RawValue)); in moveNext()
3420 sys::swapByteOrder(RawValue); in moveNext()
3426 return (RawValue >> Right) & ((1ULL << Count) - 1); in moveNext()
5150 std::array<T, N> RawValue; in getArray() local
5151 memcpy(RawValue.data(), Ptr, N * sizeof(T)); in getArray()
5153 for (auto &Element : RawValue) in getArray()
5155 return RawValue; in getArray()
5217 auto RawValue = getArray<uint32_t, 1>(*this, ImportPtr); in getDyldChainedFixupTargets() local
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.h148 int64_t RawValue; member
152 int64_t RawValue = std::numeric_limits<int64_t>::min())
154 NumElements(NumElements), Flags(Flags), RawValue(RawValue) {
170 return RawValue < Other.RawValue;
172 int64_t getRawValue() const { return RawValue; } in getRawValue()
205 int64_t RawValue);
209 StringRef NamedValue, int64_t RawValue);
H A DGlobalISelMatchTable.cpp231 int64_t RawValue) { in NamedValue() argument
233 MatchTableRecord::MTRF_CommaFollows, RawValue); in NamedValue()
244 int64_t RawValue) { in NamedValue() argument
247 RawValue); in NamedValue()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp909 Stack.back().Ctx = RawValue; in rawValueBegin()
914 assert(Stack.back().Ctx == RawValue); in rawValueEnd()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h351 uint64_t rawValue() const { return RawValue; } in rawValue()
365 uint64_t RawValue = 0; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp3382 std::optional<APInt> RawValue; in SelectWMMAVISrc() local
3384 RawValue = C->getValueAPF().bitcastToAPInt(); in SelectWMMAVISrc()
3386 RawValue = C->getAPIntValue(); in SelectWMMAVISrc()
3388 if (RawValue.has_value()) { in SelectWMMAVISrc()
3394 RawValue.value()); in SelectWMMAVISrc()
3396 Src = CurDAG->getTargetConstant(RawValue.value(), SDLoc(In), in SelectWMMAVISrc()
3401 if (TII->isInlineConstant(RawValue.value())) { in SelectWMMAVISrc()
3402 Src = CurDAG->getTargetConstant(RawValue.value(), SDLoc(In), in SelectWMMAVISrc()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVDWARFReader.cpp909 0, None, DILineInfoSpecifier::FileLineInfoKind::RawValue, in createScopes()
912 1, None, DILineInfoSpecifier::FileLineInfoKind::RawValue, in createScopes()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProfReader.cpp569 DILineInfoSpecifier::FileLineInfoKind::RawValue, in symbolizeAndFilterStackFrames()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h1073 RawValue, // External code writing a value to OS directly. enumerator
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1436 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()