Home
last modified time | relevance | path

Searched refs:argPtr (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/mlir/lib/ExecutionEngine/
DExecutionEngine.cpp183 llvm::Value *argPtr = builder.CreateLoad(argPtrPtr); in packFunctionArguments() local
184 argPtr = builder.CreateBitCast( in packFunctionArguments()
185 argPtr, indexedArg.value().getType()->getPointerTo()); in packFunctionArguments()
186 llvm::Value *arg = builder.CreateLoad(argPtr); in packFunctionArguments()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp2245 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local
2246 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2250 while (*argPtr) { in RewriteBlockPointerType()
2251 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2252 argPtr++; in RewriteBlockPointerType()
2261 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2263 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2264 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2266 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2270 Str += *argPtr; in RewriteBlockPointerTypeVariable()
[all …]
DRewriteModernObjC.cpp2334 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local
2335 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2339 while (*argPtr) { in RewriteBlockPointerType()
2340 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2341 argPtr++; in RewriteBlockPointerType()
2350 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2352 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2353 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2355 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2359 Str += *argPtr; in RewriteBlockPointerTypeVariable()
[all …]
/external/llvm-project/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp2254 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local
2255 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2259 while (*argPtr) { in RewriteBlockPointerType()
2260 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2261 argPtr++; in RewriteBlockPointerType()
2270 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2272 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2273 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2275 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2279 Str += *argPtr; in RewriteBlockPointerTypeVariable()
[all …]
DRewriteModernObjC.cpp2340 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local
2341 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2345 while (*argPtr) { in RewriteBlockPointerType()
2346 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2347 argPtr++; in RewriteBlockPointerType()
2356 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2358 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2359 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2361 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2365 Str += *argPtr; in RewriteBlockPointerTypeVariable()
[all …]
/external/clang/lib/ARCMigrate/
DObjCMT.cpp398 const char *argPtr = TypeString.c_str(); in MigrateBlockOrFunctionPointerTypeVariable() local
400 while (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable()
401 switch (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable()
403 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
407 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
412 PropertyString += (*argPtr); in MigrateBlockOrFunctionPointerTypeVariable()
419 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
422 argPtr++; in MigrateBlockOrFunctionPointerTypeVariable()
/external/llvm-project/clang/lib/ARCMigrate/
DObjCMT.cpp401 const char *argPtr = TypeString.c_str(); in MigrateBlockOrFunctionPointerTypeVariable() local
403 while (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable()
404 switch (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable()
406 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
410 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
415 PropertyString += (*argPtr); in MigrateBlockOrFunctionPointerTypeVariable()
422 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
425 argPtr++; in MigrateBlockOrFunctionPointerTypeVariable()
/external/mesa3d/include/CL/
Dcl2.hpp5988 cl_int setArg(cl_uint index, const cl::pointer<T, D> &argPtr) in setArg() argument
5991 ::clSetKernelArgSVMPointer(object_, index, argPtr.get()), in setArg()
5998 cl_int setArg(cl_uint index, const cl::vector<T, Alloc> &argPtr) in setArg() argument
6001 ::clSetKernelArgSVMPointer(object_, index, argPtr.data()), in setArg()
6009 setArg(cl_uint index, const T argPtr) in setArg() argument
6012 ::clSetKernelArgSVMPointer(object_, index, argPtr), in setArg()
6032 cl_int setArg(cl_uint index, size_type size, const void* argPtr) in setArg() argument
6035 ::clSetKernelArg(object_, index, size, argPtr), in setArg()
Dcl.hpp5010 cl_int setArg(cl_uint index, ::size_t size, const void* argPtr) in setArg() argument
5013 ::clSetKernelArg(object_, index, size, argPtr), in setArg()