/frameworks/libs/binary_translation/guest_abi/include/berberis/guest_abi/ |
D | guest_arguments.h | 56 template <typename FunctionType, 58 class GuestArgumentsReferences : GuestArgumentsAndResult<FunctionType, kCallingConventionsVariant> { 61 : GuestArgumentsAndResult<FunctionType, kCallingConventionsVariant>(buffer) {} in GuestArgumentsReferences() 81 template <typename FunctionType, 83 class HostArgumentsValues : GuestArgumentsAndResult<FunctionType, kCallingConventionsVariant> { 86 : GuestArgumentsAndResult<FunctionType, kCallingConventionsVariant>(buffer) {} in HostArgumentsValues() 105 template <typename FunctionType, 107 class GuestResultValue : GuestArgumentsAndResult<FunctionType, kCallingConventionsVariant> { 110 : GuestArgumentsAndResult<FunctionType, kCallingConventionsVariant>(buffer) {} in GuestResultValue() 128 template <typename FunctionType, [all …]
|
D | guest_params.h | 55 template <typename FunctionType, GuestAbi::CallingConventionsVariant kCallingConventionsVariant> 56 class GuestParamsValues : public GuestParamsAndReturn<FunctionType, kCallingConventionsVariant> { 59 : GuestParamsAndReturn<FunctionType, kCallingConventionsVariant>(state) {} in GuestParamsValues() 76 template <typename FunctionType, 78 class GuestReturnReference : public GuestParamsAndReturn<FunctionType, kCallingConventionsVariant> { 81 : GuestParamsAndReturn<FunctionType, kCallingConventionsVariant>(state) {} in GuestReturnReference() 134 typename FunctionType, 136 class tuple_element<index, berberis::GuestParamsValues<FunctionType, kCallingConventionsVariant>> { 139 decltype(&berberis::GuestParamsValues<FunctionType, 141 berberis::GuestParamsValues<FunctionType, kCallingConventionsVariant>>; [all …]
|
/frameworks/compile/libbcc/lib/ |
D | RSInvokeHelperPass.cpp | 73 llvm::FunctionType * SetObjType = nullptr; in doInitialization() 90 …SetObjType = llvm::FunctionType::get(llvm::Type::getVoidTy(M.getContext()), SetObjTypeParams, fals… in doInitialization() 96 …SetObjType = llvm::FunctionType::get(llvm::Type::getVoidTy(M.getContext()), SetObjTypeParams, fals… in doInitialization() 102 …SetObjType = llvm::FunctionType::get(llvm::Type::getVoidTy(M.getContext()), SetObjTypeParams, fals… in doInitialization() 108 …SetObjType = llvm::FunctionType::get(llvm::Type::getVoidTy(M.getContext()), SetObjTypeParams, fals… in doInitialization() 114 …SetObjType = llvm::FunctionType::get(llvm::Type::getVoidTy(M.getContext()), SetObjTypeParams, fals… in doInitialization()
|
D | RSScriptGroupFusion.cpp | 133 llvm::FunctionType* getFusedFuncType(bcc::BCCContext& Context, in getFusedFuncType() 171 return llvm::FunctionType::get(retTy, ArgTys, false); in getFusedFuncType() 185 llvm::FunctionType* fusedType = in fuseKernels() 254 const llvm::FunctionType* funcTy = inputFunction->getFunctionType(); in fuseKernels() 328 llvm::FunctionType* batchFuncTy = in renameInvoke() 329 llvm::FunctionType::get(returnTy, params, false); in renameInvoke()
|
D | RSX86CallConvPass.cpp | 113 llvm::FunctionType *FTy = OrigFn->getFunctionType(); in RedefineFn() 116 llvm::FunctionType *NewTy = llvm::FunctionType::get(FTy->getReturnType(), in RedefineFn()
|
D | RSKernelExpand.cpp | 132 llvm::FunctionType *ExpandedForEachType; 330 ExpandedForEachType = llvm::FunctionType::get(VoidTy, in buildTypes() 370 llvm::FunctionType *ExpandedReduceAccumulatorType = in createEmptyExpandedReduceAccumulator() 371 llvm::FunctionType::get(VoidTy, in createEmptyExpandedReduceAccumulator() 1239 llvm::FunctionType *CombinerType = in CreateReduceCombinerFromAccumulator() 1240 llvm::FunctionType::get(VoidTy, { AccumulatorArgType, AccumulatorArgType }, false); in CreateReduceCombinerFromAccumulator()
|
/frameworks/libs/native_bridge_support/android_api/libvulkan/proxy/ |
D | cpp_types_test.go | 151 signal := PointerType(FunctionType( 152 PointerType(FunctionType(VoidType, []FieldInfo{Field("sig1", IntType)})), 155 Field("handler", PointerType(FunctionType( 181 if IsInputCompatible(PointerType(FunctionType(IntType, []FieldInfo{})), X86, Arm) {
|
D | vulkan_xml.go | 694 commands[command.Name] = cpp_types.FunctionType(result_type, params_info) 924 return cpp_types.PointerType(cpp_types.FunctionType(return_type, parameter_types)), nil 982 return cpp_types.PointerType(cpp_types.FunctionType(return_type, parameter_types)), nil
|
D | cpp_types.go | 184 func FunctionType(result Type, field_info []FieldInfo) Type { func
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 1283 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody() 1302 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody() 1556 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseOldTypeTable() 1573 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseOldTypeTable() 2222 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()), in ParseConstants() 2529 FunctionType *FTy = in ParseModule() 2530 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType()); in ParseModule() 3261 FunctionType *FTy = !CalleeTy ? nullptr : in ParseFunctionBody() 3262 dyn_cast<FunctionType>(CalleeTy->getElementType()); in ParseFunctionBody() 3539 FunctionType *FTy = nullptr; in ParseFunctionBody() [all …]
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 292 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() 1200 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); in WriteInstruction() 1263 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); in WriteInstruction()
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 1007 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody() 1261 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseOldTypeTable() 1929 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()), in ParseConstants() 2262 FunctionType *FTy = in ParseModule() 2263 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType()); in ParseModule() 3013 FunctionType *FTy = !CalleeTy ? nullptr : in ParseFunctionBody() 3014 dyn_cast<FunctionType>(CalleeTy->getElementType()); in ParseFunctionBody() 3194 FunctionType *FTy = nullptr; in ParseFunctionBody() 3195 if (OpTy) FTy = dyn_cast<FunctionType>(OpTy->getElementType()); in ParseFunctionBody()
|
/frameworks/libs/binary_translation/guest_abi/riscv64/include/berberis/guest_abi/ |
D | guest_params_arch.h | 226 template <typename FunctionType,
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | BitcodeWriter.cpp | 277 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() 1198 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); in WriteInstruction() 1325 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); in WriteInstruction()
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | BitcodeWriter.cpp | 280 FunctionType *FT = cast<FunctionType>(T); in WriteTypeTable() 1231 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); in WriteInstruction() 1359 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); in WriteInstruction()
|
/frameworks/libs/binary_translation/guest_abi/arm/include/berberis/guest_abi/ |
D | guest_params_arch.h | 243 template <typename FunctionType,
|
/frameworks/libs/binary_translation/guest_abi/arm64/include/berberis/guest_abi/ |
D | guest_params_arch.h | 201 template <typename FunctionType,
|
/frameworks/compile/slang/ |
D | slang_backend.cpp | 978 llvm::FunctionType * HelperFunctionType = in dumpExportFunctionInfo() 979 llvm::FunctionType::get(F->getReturnType(), in dumpExportFunctionInfo()
|
D | slang_rs_object_ref_count.cpp | 1559 const clang::FunctionType* FuncType = PointeeType->getAs<clang::FunctionType>(); in VisitCallExpr()
|