Searched refs:Payload (Results 1 - 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DPatternInit.cpp59 llvm::APInt Payload(64, NaNPayload);
61 Payload = llvm::APInt::getSplat(BitWidth, Payload);
62 return llvm::ConstantFP::getQNaN(Ty, NegativeNaN, &Payload);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h198 Error(std::unique_ptr<ErrorInfoBase> Payload) { argument
199 setPtr(Payload.release());
273 reinterpret_cast<uintptr_t>(Payload) &
279 Payload = reinterpret_cast<ErrorInfoBase*>(
282 (reinterpret_cast<uintptr_t>(Payload) & 0x1));
284 Payload = EI;
290 return (reinterpret_cast<uintptr_t>(Payload) & 0x1) == 0;
297 Payload = reinterpret_cast<ErrorInfoBase*>(
298 (reinterpret_cast<uintptr_t>(Payload) &
318 ErrorInfoBase *Payload member in class:llvm::Error
880 handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload) argument
885 handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload, HandlerT &&Handler, HandlerTs &&... Handlers) argument
1256 std::unique_ptr<ErrorInfoBase> Payload; local
[all...]
H A DOnDiskHashTable.h432 const unsigned char *Payload; member in class:llvm::OnDiskIterableChainedHashTable
494 const unsigned char *Payload,
498 Payload(Payload) {}
538 return key_iterator(Payload, this->getNumEntries(), &this->getInfoObj());
581 return data_iterator(Payload, this->getNumEntries(), &this->getInfoObj());
595 /// \param Payload is the beginning of the data contained in the table. This
603 Create(const unsigned char *Buckets, const unsigned char *const Payload, argument
610 Buckets, Payload, Base, InfoObj);
492 OnDiskIterableChainedHashTable(offset_type NumBuckets, offset_type NumEntries, const unsigned char *Buckets, const unsigned char *Payload, const unsigned char *Base, const Info &InfoObj = Info()) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h120 /// Payload interface to be specialized by each matcher type.
123 class Payload { class in class:clang::ast_matchers::dynamic::VariantMatcher
125 virtual ~Payload();
212 explicit VariantMatcher(std::shared_ptr<Payload> Value)
221 std::shared_ptr<const Payload> Value;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.cpp177 assert(sizeof(MachO::LCStruct) + LC.Payload.size() == \
183 if (!LC.Payload.empty()) \
184 memcpy(Begin, LC.Payload.data(), LC.Payload.size()); \
185 Begin += LC.Payload.size(); \
191 assert(sizeof(MachO::load_command) + LC.Payload.size() ==
197 if (!LC.Payload.empty())
198 memcpy(Begin, LC.Payload.data(), LC.Payload.size());
199 Begin += LC.Payload
[all...]
H A DMachOObjcopy.cpp82 LC.Payload.assign(RPathLC.cmdsize - sizeof(MachO::rpath_command), 0);
83 std::copy(Path.begin(), Path.end(), LC.Payload.begin());
214 RPath == StringRef(reinterpret_cast<char *>(LC.Payload.data()),
215 LC.Payload.size())
H A DMachOReader.cpp150 LC.Payload = ArrayRef<uint8_t>( \
163 LC.Payload = ArrayRef<uint8_t>(
H A DObject.h86 std::vector<uint8_t> Payload; member in struct:llvm::objcopy::macho::LoadCommand
H A DMachOLayoutBuilder.cpp37 Size += sizeof(MachO::LCStruct) + LC.Payload.size(); \
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp81 VariantMatcher::Payload::~Payload() {}
83 class VariantMatcher::SinglePayload : public VariantMatcher::Payload {
114 class VariantMatcher::PolymorphicPayload : public VariantMatcher::Payload {
180 class VariantMatcher::VariadicOpPayload : public VariantMatcher::Payload {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h67 storage_type Buckets, storage_type Payload, storage_type Base,
70 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
66 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, storage_type Buckets, storage_type Payload, storage_type Base, const Info &InfoObj) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h292 static Constant *getNaN(Type *Ty, bool Negative = false, uint64_t Payload = 0);
294 APInt *Payload = nullptr);
296 APInt *Payload = nullptr);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h383 const unsigned char *const Payload,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp608 const unsigned char *Buckets, const unsigned char *const Payload,
613 Buckets, Payload, Base,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h194 yaml::BinaryRef Payload; member in struct:llvm::WasmYAML::CustomSection
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp808 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { argument
810 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload);
819 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { argument
821 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload);
830 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { argument
832 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp319 Section.Payload.writeAsBinary(OS);
H A DWasmYAML.cpp93 IO.mapRequired("Payload", Section.Payload);

Completed in 179 milliseconds