Home
last modified time | relevance | path

Searched defs:get (Results 1 – 25 of 266) sorted by relevance

1234567891011

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryLocation.cpp36 MemoryLocation MemoryLocation::get(const LoadInst *LI) { in get() function in MemoryLocation
45 MemoryLocation MemoryLocation::get(const StoreInst *SI) { in get() function in MemoryLocation
54 MemoryLocation MemoryLocation::get(const VAArgInst *VI) { in get() function in MemoryLocation
59 MemoryLocation MemoryLocation::get(const AtomicCmpXchgInst *CXI) { in get() function in MemoryLocation
68 MemoryLocation MemoryLocation::get(const AtomicRMWInst *RMWI) { in get() function in MemoryLocation
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfileCollector.cpp39 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) {} in get() function in __anoncb397ce60111::PluginChain
51 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) { in get() function in __anoncb397ce60111::PluginChain
73 ValueProfileCollector::get(InstrProfValueKind Kind) const { in get() function in ValueProfileCollector
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp278 IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) { in get() function in IntegerType
328 FunctionType *FunctionType::get(Type *ReturnType, in get() function in FunctionType
354 FunctionType *FunctionType::get(Type *Result, bool isVarArg) { in get() function in FunctionType
373 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() function in StructType
520 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() function in StructType
647 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) { in get() function in ArrayType
676 VectorType *VectorType::get(Type *ElementType, ElementCount EC) { in get() function in VectorType
692 FixedVectorType *FixedVectorType::get(Type *ElementType, unsigned NumElts) { in get() function in FixedVectorType
713 ScalableVectorType *ScalableVectorType::get(Type *ElementType, in get() function in ScalableVectorType
735 PointerType *PointerType::get(Type *EltTy, unsigned AddressSpace) { in get() function in PointerType
[all …]
H A DConstants.cpp889 ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) { in get() function in ConstantInt
906 ConstantInt *ConstantInt::get(LLVMContext &Context, ElementCount EC, in get() function in ConstantInt
925 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get() function in ConstantInt
935 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) { in get() function in ConstantInt
939 Constant *ConstantInt::get(Type *Ty, const APInt& V) { in get() function in ConstantInt
951 ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str, uint8_t radix) { in get() function in ConstantInt
964 Constant *ConstantFP::get(Type *Ty, double V) { in get() function in ConstantFP
980 Constant *ConstantFP::get(Type *Ty, const APFloat &V) { in get() function in ConstantFP
992 Constant *ConstantFP::get(Type *Ty, StringRef Str) { in get() function in ConstantFP
1051 ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) { in get() function in ConstantFP
[all …]
H A DTypedPointerType.cpp17 TypedPointerType *TypedPointerType::get(Type *EltTy, unsigned AddressSpace) { in get() function in TypedPointerType
H A DAttributes.cpp94 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind, in get() function in Attribute
125 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) { in get() function in Attribute
148 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind, in get() function in Attribute
170 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind, in get() function in Attribute
195 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind, in get() function in Attribute
842 AttributeSet AttributeSet::get(LLVMContext &C, const AttrBuilder &B) { in get() function in AttributeSet
846 AttributeSet AttributeSet::get(LLVMContext &C, ArrayRef<Attribute> Attrs) { in get() function in AttributeSet
1041 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, in get() function in AttributeSetNode
1078 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, const AttrBuilder &B) { in get() function in AttributeSetNode
1291 AttributeList::get(LLVMContext &C, in get() function in AttributeList
[all …]
/freebsd/contrib/atf/atf-c++/detail/
H A Denv.cpp44 impl::get(const std::string& name) in get() function in impl
50 impl::get(const std::string& name, const std::string& default_value) in get() function in impl
H A Dauto_array.hpp103 auto_array< T >::get(void) in get() function in atf::auto_array
111 auto_array< T >::get(void) in get() function in atf::auto_array
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_hash.h33 u32 get() { in get() function
57 u64 get() { in get() function
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h196 LineEntry &get(size_t i) { in get() function
200 const LineEntry &get(size_t i) const { in get() function
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h342 get(const ValueDecl &D) const { in get() function
347 get(const Expr &E) const { in get() function
535 get(const StorageLocation &Loc) const { in get() function
540 get(const ValueDecl &D) const { in get() function
544 std::enable_if_t<std::is_base_of_v<Value, T>, T *> get(const Expr &E) const { in get() function
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDivisionByConstantInfo.cpp21 SignedDivisionByConstantInfo SignedDivisionByConstantInfo::get(const APInt &D) { in get() function in SignedDivisionByConstantInfo
74 UnsignedDivisionByConstantInfo::get(const APInt &D, unsigned LeadingZeros, in get() function in UnsignedDivisionByConstantInfo
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp48 FunctionCoverageSummary::get(const CoverageMapping &CM, get() function in FunctionCoverageSummary
84 FunctionCoverageSummary::get(const InstantiationGroup &Group, get() function in FunctionCoverageSummary
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DTrackingMDRef.h57 Metadata *get() const { return MD; } in get() function
126 T *get() const { return (T *)Ref.get(); } in get() function
/freebsd/contrib/atf/atf-c/detail/
H A Denv_test.c52 ATF_TC_HEAD(get, tc) in ATF_TC_HEAD() argument
56 ATF_TC_BODY(get, tc) in ATF_TC_BODY() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstats.h50 uptr get(StatType I) const { return atomic_load_relaxed(&StatsArray[I]); } in get() function
76 void get(uptr *S) const EXCLUDES(Mutex) { in get() function
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp120 BitRecTy *BitRecTy::get(RecordKeeper &RK) { in get() function in BitRecTy
132 BitsRecTy *BitsRecTy::get(RecordKeeper &RK, unsigned Sz) { in get() function in BitsRecTy
153 IntRecTy *IntRecTy::get(RecordKeeper &RK) { in get() function in IntRecTy
162 StringRecTy *StringRecTy::get(RecordKeeper &RK) { in get() function in StringRecTy
191 DagRecTy *DagRecTy::get(RecordKeeper &RK) { in get() function in DagRecTy
206 RecordRecTy *RecordRecTy::get(RecordKeeper &RK, in get() function in RecordRecTy
245 RecordRecTy *RecordRecTy::get(Record *Class) { in get() function in RecordRecTy
358 UnsetInit *UnsetInit::get(RecordKeeper &RK) { in get() function in UnsetInit
385 ArgumentInit *ArgumentInit::get(Init *Value, ArgAuxType Aux) { in get() function in ArgumentInit
408 BitInit *BitInit::get(RecordKeeper &RK, bool V) { in get() function in BitInit
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dsubrange.h215 _LIBCPP_HIDE_FROM_ABI constexpr auto get(const subrange<_Iter, _Sent, _Kind>& __subrange) { in get() function
224 _LIBCPP_HIDE_FROM_ABI constexpr auto get(subrange<_Iter, _Sent, _Kind>&& __subrange) { in get() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeSize.h44 static StackOffset get(int64_t Fixed, int64_t Scalable) { in get() function
317 static constexpr ElementCount get(ScalarTy MinVal, bool Scalable) { in get() function
342 static constexpr TypeSize get(ScalarTy Quantity, bool Scalable) { in get() function
H A DErrorOr.h149 reference get() { return *getStorage(); } in get() function
150 const_reference get() const { return const_cast<ErrorOr<T> *>(this)->get(); } in get() function
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DNumberedValues.h24 T get(unsigned ID) const { return Vals.lookup(ID); } in get() function
/freebsd/contrib/wpa/src/utils/
H A Dext_password_i.h18 struct wpabuf * (*get)(void *ctx, const char *name); member
/freebsd/contrib/kyua/engine/execenv/
H A Dexecenv.cpp63 execenv::get(const model::test_program& test_program, in get() function in execenv
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp56 InstrProfCorrelator::Context::get(std::unique_ptr<MemoryBuffer> Buffer, in get() function in InstrProfCorrelator::Context
94 InstrProfCorrelator::get(StringRef Filename, ProfCorrelatorKind FileKind) { in get() function in InstrProfCorrelator
129 InstrProfCorrelator::get(std::unique_ptr<MemoryBuffer> Buffer, in get() function in InstrProfCorrelator
185 InstrProfCorrelatorImpl<IntPtrT>::get( in get() function in InstrProfCorrelatorImpl
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBThreadPlan.h135 lldb_private::ThreadPlan *get() const { return GetSP().get(); } in get() function

1234567891011