Searched refs:newFunc (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
D | AstHelpers.cpp | 107 TFunction &newFunc = in CloneFunction() local 111 AcquireFunctionExtras(newFunc, oldFunc); in CloneFunction() 112 AddParametersFrom(newFunc, oldFunc); in CloneFunction() 114 return newFunc; in CloneFunction() 127 TFunction &newFunc = in CloneFunctionAndPrependParam() local 131 AcquireFunctionExtras(newFunc, oldFunc); in CloneFunctionAndPrependParam() 132 newFunc.addParameter(&newParam); in CloneFunctionAndPrependParam() 133 AddParametersFrom(newFunc, oldFunc); in CloneFunctionAndPrependParam() 135 return newFunc; in CloneFunctionAndPrependParam() 148 TFunction &newFunc = in CloneFunctionAndAppendParams() local [all …]
|
D | RewritePipelines.cpp | 388 const TFunction *newFunc; in getUpdatedFunction() local 398 newFunc = &CloneFunctionAndChangeReturnType(mSymbolTable, nullptr, func, in getUpdatedFunction() 410 newFunc = &CloneFunctionAndAppendParams(mSymbolTable, nullptr, func, variables); in getUpdatedFunction() 433 newFunc = &CloneFunctionAndAppendParams(mSymbolTable, nullptr, func, variables); in getUpdatedFunction() 440 newFunc = &CloneFunctionAndPrependParam(mSymbolTable, nullptr, func, *var); in getUpdatedFunction() 446 newFunc = &func; in getUpdatedFunction() 516 newFunc = &CloneFunctionAndPrependParam(mSymbolTable, nullptr, func, *var); in getUpdatedFunction() 519 mFuncMap[&func] = newFunc; in getUpdatedFunction() 520 mFuncMap[newFunc] = newFunc; in getUpdatedFunction() 524 newFunc = it->second; in getUpdatedFunction() [all …]
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLJIT.h | 262 bool compileStageFunctionVector(const FunctionDefinition& f, LLVMValueRef newFunc); 269 void compileStageFunctionLoop(const FunctionDefinition& f, LLVMValueRef newFunc);
|
D | SkSLJIT.cpp | 1255 void JIT::compileStageFunctionLoop(const FunctionDefinition& f, LLVMValueRef newFunc) { in compileStageFunctionLoop() argument 1258 fCurrentFunction = newFunc; in compileStageFunctionLoop() 1352 LLVMTypeRef stageFuncType = LLVMTypeOf(newFunc); in compileStageFunctionLoop() 1655 bool JIT::compileStageFunctionVector(const FunctionDefinition& f, LLVMValueRef newFunc) { in compileStageFunctionVector() argument 1657 fCurrentFunction = newFunc; in compileStageFunctionVector() 1680 LLVMTypeRef stageFuncType = LLVMTypeOf(newFunc); in compileStageFunctionVector()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | CloneFunction.cpp | 284 PruningFunctionCloner(Function *newFunc, const Function *oldFunc, in PruningFunctionCloner() 287 : NewFunc(newFunc), OldFunc(oldFunc), VMap(valueMap), in PruningFunctionCloner()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | RDFGraph.h | 838 NodeAddr<FuncNode*> newFunc(MachineFunction *MF);
|
D | RDFGraph.cpp | 859 NodeAddr<FuncNode*> DataFlowGraph::newFunc(MachineFunction *MF) { in newFunc() function in DataFlowGraph 868 Func = newFunc(&MF); in build()
|