Home
last modified time | relevance | path

Searched refs:ResultTy (Results 1 – 25 of 127) sorted by relevance

123456

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Support/
DParallel.h167 template <class IterTy, class ResultTy, class ReduceFuncTy,
169 ResultTy parallel_transform_reduce(IterTy Begin, IterTy End, ResultTy Init, in parallel_transform_reduce()
178 std::vector<ResultTy> Results(NumTasks, Init); in parallel_transform_reduce()
191 ResultTy R = Init; in parallel_transform_reduce()
204 ResultTy FinalResult = std::move(Results.front()); in parallel_transform_reduce()
205 for (ResultTy &PartialResult : in parallel_transform_reduce()
237 template <class IterTy, class ResultTy, class ReduceFuncTy,
239 ResultTy parallelTransformReduce(IterTy Begin, IterTy End, ResultTy Init, in parallelTransformReduce()
265 template <class RangeTy, class ResultTy, class ReduceFuncTy,
267 ResultTy parallelTransformReduce(RangeTy &&R, ResultTy Init, in parallelTransformReduce()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Support/
DParallel.h167 template <class IterTy, class ResultTy, class ReduceFuncTy,
169 ResultTy parallel_transform_reduce(IterTy Begin, IterTy End, ResultTy Init, in parallel_transform_reduce()
178 std::vector<ResultTy> Results(NumTasks, Init); in parallel_transform_reduce()
191 ResultTy R = Init; in parallel_transform_reduce()
204 ResultTy FinalResult = std::move(Results.front()); in parallel_transform_reduce()
205 for (ResultTy &PartialResult : in parallel_transform_reduce()
237 template <class IterTy, class ResultTy, class ReduceFuncTy,
239 ResultTy parallelTransformReduce(IterTy Begin, IterTy End, ResultTy Init, in parallelTransformReduce()
265 template <class RangeTy, class ResultTy, class ReduceFuncTy,
267 ResultTy parallelTransformReduce(RangeTy &&R, ResultTy Init, in parallelTransformReduce()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Support/
DParallel.h167 template <class IterTy, class ResultTy, class ReduceFuncTy,
169 ResultTy parallel_transform_reduce(IterTy Begin, IterTy End, ResultTy Init, in parallel_transform_reduce()
178 std::vector<ResultTy> Results(NumTasks, Init); in parallel_transform_reduce()
191 ResultTy R = Init; in parallel_transform_reduce()
204 ResultTy FinalResult = std::move(Results.front()); in parallel_transform_reduce()
205 for (ResultTy &PartialResult : in parallel_transform_reduce()
237 template <class IterTy, class ResultTy, class ReduceFuncTy,
239 ResultTy parallelTransformReduce(IterTy Begin, IterTy End, ResultTy Init, in parallelTransformReduce()
265 template <class RangeTy, class ResultTy, class ReduceFuncTy,
267 ResultTy parallelTransformReduce(RangeTy &&R, ResultTy Init, in parallelTransformReduce()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Support/
DParallel.h167 template <class IterTy, class ResultTy, class ReduceFuncTy,
169 ResultTy parallel_transform_reduce(IterTy Begin, IterTy End, ResultTy Init, in parallel_transform_reduce()
178 std::vector<ResultTy> Results(NumTasks, Init); in parallel_transform_reduce()
191 ResultTy R = Init; in parallel_transform_reduce()
204 ResultTy FinalResult = std::move(Results.front()); in parallel_transform_reduce()
205 for (ResultTy &PartialResult : in parallel_transform_reduce()
237 template <class IterTy, class ResultTy, class ReduceFuncTy,
239 ResultTy parallelTransformReduce(IterTy Begin, IterTy End, ResultTy Init, in parallelTransformReduce()
265 template <class RangeTy, class ResultTy, class ReduceFuncTy,
267 ResultTy parallelTransformReduce(RangeTy &&R, ResultTy Init, in parallelTransformReduce()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
H A DParallel.h167 template <class IterTy, class ResultTy, class ReduceFuncTy,
169 ResultTy parallel_transform_reduce(IterTy Begin, IterTy End, ResultTy Init, in parallel_transform_reduce()
178 std::vector<ResultTy> Results(NumTasks, Init); in parallel_transform_reduce()
191 ResultTy R = Init; in parallel_transform_reduce()
204 ResultTy FinalResult = std::move(Results.front()); in parallel_transform_reduce()
205 for (ResultTy &PartialResult : in parallel_transform_reduce()
237 template <class IterTy, class ResultTy, class ReduceFuncTy,
239 ResultTy parallelTransformReduce(IterTy Begin, IterTy End, ResultTy Init, in parallelTransformReduce()
265 template <class RangeTy, class ResultTy, class ReduceFuncTy,
267 ResultTy parallelTransformReduce(RangeTy &&R, ResultTy Init, in parallelTransformReduce()
H A DTaskQueue.h41 using ResultTy = std::invoke_result_t<Callable>; member
43 : C(std::move(C)), P(std::make_shared<std::promise<ResultTy>>()), in Task()
57 ResultTy *Dummy = nullptr; in operator()
63 std::shared_ptr<std::promise<ResultTy>> P;
87 using ResultTy = std::invoke_result_t<Callable>; in async() local
88 std::future<ResultTy> F = T.P->get_future(); in async()
/aosp_15_r20/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp930 Type *ResultTy = nullptr; in ParseTypeTableBody() local
942 ResultTy = Type::getVoidTy(Context); in ParseTypeTableBody()
945 ResultTy = Type::getHalfTy(Context); in ParseTypeTableBody()
948 ResultTy = Type::getFloatTy(Context); in ParseTypeTableBody()
951 ResultTy = Type::getDoubleTy(Context); in ParseTypeTableBody()
954 ResultTy = Type::getX86_FP80Ty(Context); in ParseTypeTableBody()
957 ResultTy = Type::getFP128Ty(Context); in ParseTypeTableBody()
960 ResultTy = Type::getPPC_FP128Ty(Context); in ParseTypeTableBody()
963 ResultTy = Type::getLabelTy(Context); in ParseTypeTableBody()
966 ResultTy = Type::getMetadataTy(Context); in ParseTypeTableBody()
[all …]
/aosp_15_r20/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp1206 Type *ResultTy = nullptr; in ParseTypeTableBody() local
1218 ResultTy = Type::getVoidTy(Context); in ParseTypeTableBody()
1221 ResultTy = Type::getHalfTy(Context); in ParseTypeTableBody()
1224 ResultTy = Type::getFloatTy(Context); in ParseTypeTableBody()
1227 ResultTy = Type::getDoubleTy(Context); in ParseTypeTableBody()
1230 ResultTy = Type::getX86_FP80Ty(Context); in ParseTypeTableBody()
1233 ResultTy = Type::getFP128Ty(Context); in ParseTypeTableBody()
1236 ResultTy = Type::getPPC_FP128Ty(Context); in ParseTypeTableBody()
1239 ResultTy = Type::getLabelTy(Context); in ParseTypeTableBody()
1242 ResultTy = Type::getMetadataTy(Context); in ParseTypeTableBody()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DTaskQueue.h41 using ResultTy = typename std::result_of<Callable()>::type; member
43 : C(std::move(C)), P(std::make_shared<std::promise<ResultTy>>()), in Task()
57 ResultTy *Dummy = nullptr; in operator()
63 std::shared_ptr<std::promise<ResultTy>> P;
87 using ResultTy = typename std::result_of<Callable()>::type; in async() local
88 std::future<ResultTy> F = T.P->get_future(); in async()
/aosp_15_r20/external/llvm/lib/IR/
H A DConstantFold.cpp1678 Type *ResultTy; in ConstantFoldCompareInstruction() local
1680 ResultTy = VectorType::get(Type::getInt1Ty(C1->getContext()), in ConstantFoldCompareInstruction()
1683 ResultTy = Type::getInt1Ty(C1->getContext()); in ConstantFoldCompareInstruction()
1687 return Constant::getNullValue(ResultTy); in ConstantFoldCompareInstruction()
1690 return Constant::getAllOnesValue(ResultTy); in ConstantFoldCompareInstruction()
1700 return UndefValue::get(ResultTy); in ConstantFoldCompareInstruction()
1705 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(Predicate)); in ConstantFoldCompareInstruction()
1709 return ConstantInt::get(ResultTy, CmpInst::isUnordered(Predicate)); in ConstantFoldCompareInstruction()
1753 case ICmpInst::ICMP_EQ: return ConstantInt::get(ResultTy, V1 == V2); in ConstantFoldCompareInstruction()
1754 case ICmpInst::ICMP_NE: return ConstantInt::get(ResultTy, V1 != V2); in ConstantFoldCompareInstruction()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DConstantFold.cpp1812 Type *ResultTy; in ConstantFoldCompareInstruction() local
1814 ResultTy = VectorType::get(Type::getInt1Ty(C1->getContext()), in ConstantFoldCompareInstruction()
1817 ResultTy = Type::getInt1Ty(C1->getContext()); in ConstantFoldCompareInstruction()
1821 return Constant::getNullValue(ResultTy); in ConstantFoldCompareInstruction()
1824 return Constant::getAllOnesValue(ResultTy); in ConstantFoldCompareInstruction()
1834 return UndefValue::get(ResultTy); in ConstantFoldCompareInstruction()
1839 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(Predicate)); in ConstantFoldCompareInstruction()
1843 return ConstantInt::get(ResultTy, CmpInst::isUnordered(Predicate)); in ConstantFoldCompareInstruction()
1891 case ICmpInst::ICMP_EQ: return ConstantInt::get(ResultTy, V1 == V2); in ConstantFoldCompareInstruction()
1892 case ICmpInst::ICMP_NE: return ConstantInt::get(ResultTy, V1 != V2); in ConstantFoldCompareInstruction()
[all …]
/aosp_15_r20/external/llvm/include/llvm/CodeGen/
H A DFastISel.h98 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
101 RetTy = ResultTy; in setCallee()
120 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
124 RetTy = ResultTy;
144 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
147 RetTy = ResultTy;
156 CallingConv::ID CC, Type *ResultTy,
160 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
163 RetTy = ResultTy;
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/
H A DFastISel.h104 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
107 RetTy = ResultTy; in setCallee()
126 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 RetTy = ResultTy;
150 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
153 RetTy = ResultTy;
162 CallingConv::ID CC, Type *ResultTy,
166 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
169 RetTy = ResultTy;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/CodeGen/
DFastISel.h104 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
107 RetTy = ResultTy; in setCallee()
126 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 RetTy = ResultTy;
150 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
153 RetTy = ResultTy;
162 CallingConv::ID CC, Type *ResultTy,
166 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
169 RetTy = ResultTy;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/CodeGen/
DFastISel.h104 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
107 RetTy = ResultTy; in setCallee()
126 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 RetTy = ResultTy;
150 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
153 RetTy = ResultTy;
162 CallingConv::ID CC, Type *ResultTy,
166 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
169 RetTy = ResultTy;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/CodeGen/
DFastISel.h104 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
107 RetTy = ResultTy; in setCallee()
126 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 RetTy = ResultTy;
150 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
153 RetTy = ResultTy;
162 CallingConv::ID CC, Type *ResultTy,
166 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
169 RetTy = ResultTy;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/CodeGen/
DFastISel.h104 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
107 RetTy = ResultTy; in setCallee()
126 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 RetTy = ResultTy;
150 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
153 RetTy = ResultTy;
162 CallingConv::ID CC, Type *ResultTy,
166 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
169 RetTy = ResultTy;
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DFastISel.h104 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
107 RetTy = ResultTy; in setCallee()
126 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 RetTy = ResultTy;
150 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
153 RetTy = ResultTy;
162 CallingConv::ID CC, Type *ResultTy,
166 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy,
169 RetTy = ResultTy;
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp500 Type *ResultTy = MemoryTy; in tryCreateMaskedGatherOffset() local
518 ResultTy = User->getType(); in tryCreateMaskedGatherOffset()
523 << *ResultTy << "\n"); in tryCreateMaskedGatherOffset()
525 ResultTy = User->getType(); in tryCreateMaskedGatherOffset()
531 if (ResultTy->getPrimitiveSizeInBits() < 128 && in tryCreateMaskedGatherOffset()
532 ResultTy->isIntOrIntVectorTy()) { in tryCreateMaskedGatherOffset()
533 ResultTy = ResultTy->getWithNewBitWidth( in tryCreateMaskedGatherOffset()
534 128 / cast<FixedVectorType>(ResultTy)->getNumElements()); in tryCreateMaskedGatherOffset()
537 << *ResultTy << "\n"); in tryCreateMaskedGatherOffset()
541 if (ResultTy->getPrimitiveSizeInBits() != 128) { in tryCreateMaskedGatherOffset()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ExecutionEngine/Orc/
DSpeculateAnalyses.h31 using ResultTy = std::optional<DenseMap<StringRef, DenseSet<StringRef>>>;
40 ResultTy operator()(Function &F);
76 ResultTy operator()(Function &F);
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculateAnalyses.h33 using ResultTy = std::optional<DenseMap<StringRef, DenseSet<StringRef>>>;
42 ResultTy operator()(Function &F);
78 ResultTy operator()(Function &F);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ExecutionEngine/Orc/
DSpeculateAnalyses.h31 using ResultTy = std::optional<DenseMap<StringRef, DenseSet<StringRef>>>;
40 ResultTy operator()(Function &F);
76 ResultTy operator()(Function &F);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ExecutionEngine/Orc/
DSpeculateAnalyses.h31 using ResultTy = std::optional<DenseMap<StringRef, DenseSet<StringRef>>>;
40 ResultTy operator()(Function &F);
76 ResultTy operator()(Function &F);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ExecutionEngine/Orc/
DSpeculateAnalyses.h31 using ResultTy = std::optional<DenseMap<StringRef, DenseSet<StringRef>>>;
40 ResultTy operator()(Function &F);
76 ResultTy operator()(Function &F);
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculateAnalyses.h33 using ResultTy = Optional<DenseMap<StringRef, DenseSet<StringRef>>>;
42 ResultTy operator()(Function &F);
78 ResultTy operator()(Function &F);

123456