/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/ |
D | echo.cpp | 399 int ArgCount = LLVMGetNumArgOperands(Src); in CloneAttrs() local 400 for (int i = LLVMAttributeReturnIndex; i <= ArgCount; i++) { in CloneAttrs() 468 int ArgCount = LLVMGetNumArgOperands(Src); in CloneInstruction() local 469 for (int i = 0; i < ArgCount; i++) in CloneInstruction() 474 Dst = LLVMBuildInvoke(Builder, Fn, Args.data(), ArgCount, in CloneInstruction() 631 int ArgCount = LLVMGetNumArgOperands(Src); in CloneInstruction() local 632 for (int i = 0; i < ArgCount; i++) in CloneInstruction() 635 Dst = LLVMBuildCall(Builder, Fn, Args.data(), ArgCount, Name); in CloneInstruction() 670 int ArgCount = LLVMGetNumArgOperands(Src); in CloneInstruction() local 671 for (int i = 0; i < ArgCount; i++) in CloneInstruction() [all …]
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.cpp | 87 const unsigned ArgCount = F->getFunctionType()->getNumParams(); in runFunction() local 88 for (unsigned i = 0; i < ArgCount; ++i) in runFunction()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.cpp | 88 const size_t ArgCount = F->getFunctionType()->getNumParams(); in runFunction() local 90 ArgValues.slice(0, std::min(ArgValues.size(), ArgCount)); in runFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.cpp | 92 const size_t ArgCount = F->getFunctionType()->getNumParams(); in runFunction() local 94 ArgValues.slice(0, std::min(ArgValues.size(), ArgCount)); in runFunction()
|
/external/llvm/tools/llvm-c-test/ |
D | echo.cpp | 380 int ArgCount = LLVMGetNumArgOperands(Src); in CloneAttrs() local 381 for (int i = LLVMAttributeReturnIndex; i <= ArgCount; i++) { in CloneAttrs() 448 int ArgCount = LLVMGetNumArgOperands(Src); in CloneInstruction() local 449 for (int i = 0; i < ArgCount; i++) in CloneInstruction() 454 Dst = LLVMBuildInvoke(Builder, Fn, Args.data(), ArgCount, in CloneInstruction() 611 int ArgCount = LLVMGetNumArgOperands(Src); in CloneInstruction() local 612 for (int i = 0; i < ArgCount; i++) in CloneInstruction() 615 Dst = LLVMBuildCall(Builder, Fn, Args.data(), ArgCount, Name); in CloneInstruction()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCSuperDeallocChecker.cpp | 209 unsigned ArgCount = CE.getNumArgs(); in diagnoseCallArguments() local 210 for (unsigned I = 0; I < ArgCount; I++) { in diagnoseCallArguments()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/ |
D | Process.inc | 246 int ArgCount; 248 CommandLineToArgvW(GetCommandLineW(), &ArgCount), &LocalFree}; 254 Args.reserve(ArgCount); 256 for (int I = 0; I < ArgCount; ++I) {
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Process.inc | 240 int ArgCount; 242 CommandLineToArgvW(GetCommandLineW(), &ArgCount); 246 Args.reserve(ArgCount); 261 for (int i = 1; i < ArgCount && !ec; ++i) {
|
/external/llvm/lib/Support/Windows/ |
D | Process.inc | 252 int ArgCount; 254 CommandLineToArgvW(GetCommandLineW(), &ArgCount); 258 Args.reserve(ArgCount); 273 for (int i = 1; i < ArgCount && !ec; ++i) {
|
/external/mesa3d/src/mesa/main/ |
D | atifragshader.h | 51 GLuint ArgCount[2]; member
|
D | atifragshader.c | 404 GLuint count0 = curProg->Instructions[j][i].ArgCount[0]; in _mesa_EndFragmentShaderATI() 405 GLuint count1 = curProg->Instructions[j][i].ArgCount[1]; in _mesa_EndFragmentShaderATI() 693 curI->ArgCount[optype] = arg_count; in _mesa_FragmentOpXATI()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_atifs_to_tgsi.c | 367 if (arg >= inst->ArgCount[optype]) { in compile_instruction() 583 for (arg = 0; arg < inst->ArgCount[optype]; arg++) { in st_init_atifs_prog()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_atifragshader.c | 334 for (i = 0; i < inst->ArgCount[optype]; i++) { in execute_shader()
|
/external/clang/utils/TableGen/ |
D | ClangAttrEmitter.cpp | 2532 unsigned ArgCount = 0, OptCount = 0; in emitArgInfo() local 2535 Arg->getValueAsBit("Optional") ? ++OptCount : ++ArgCount; in emitArgInfo() 2542 OS << ArgCount << ", " << (HasVariadic ? 15 : OptCount); in emitArgInfo()
|