Searched refs:AllocArgs (Results 1 – 4 of 4) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 1971 SmallVector<Expr*, 8> AllocArgs(1 + PlaceArgs.size()); in FindAllocationFunctions() local 1979 AllocArgs[0] = &Size; in FindAllocationFunctions() 1980 std::copy(PlaceArgs.begin(), PlaceArgs.end(), AllocArgs.begin() + 1); in FindAllocationFunctions() 1998 if (FindAllocationOverload(StartLoc, Range, NewName, AllocArgs, Record, in FindAllocationFunctions() 2008 if (FindAllocationOverload(StartLoc, Range, NewName, AllocArgs, TUDecl, in FindAllocationFunctions() 2020 if (FindAllocationOverload(StartLoc, Range, NewName, AllocArgs, TUDecl, in FindAllocationFunctions()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 2519 SmallVector<Expr*, 8> AllocArgs; in FindAllocationFunctions() local 2520 AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size()); in FindAllocationFunctions() 2530 AllocArgs.push_back(&Size); in FindAllocationFunctions() 2539 AllocArgs.push_back(&Align); in FindAllocationFunctions() 2541 AllocArgs.insert(AllocArgs.end(), PlaceArgs.begin(), PlaceArgs.end()); in FindAllocationFunctions() 2596 if (resolveAllocationOverload(*this, R, Range, AllocArgs, PassAlignment, in FindAllocationFunctions()
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.cpp | 3794 llvm::Value *AllocArgs[] = {emitUpdateLocation(CGF, Loc), in emitTaskInit() local 3800 createRuntimeFunction(OMPRTL__kmpc_omp_task_alloc), AllocArgs); in emitTaskInit()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.cpp | 4276 SmallVector<llvm::Value *, 8> AllocArgs = {emitUpdateLocation(CGF, Loc), in emitTaskInit() local 4293 AllocArgs.push_back(DeviceID); in emitTaskInit() 4297 AllocArgs); in emitTaskInit() 4302 AllocArgs); in emitTaskInit()
|