Home
last modified time | relevance | path

Searched refs:ArgCount (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
DInterpreter.cpp87 const unsigned ArgCount = F->getFunctionType()->getNumParams(); in runFunction() local
88 for (unsigned i = 0; i < ArgCount; ++i) in runFunction()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.cpp88 const size_t ArgCount = F->getFunctionType()->getNumParams(); in runFunction() local
90 ArgValues.slice(0, std::min(ArgValues.size(), ArgCount)); in runFunction()
/external/llvm/tools/llvm-c-test/
Decho.cpp380 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/
DObjCSuperDeallocChecker.cpp209 unsigned ArgCount = CE.getNumArgs(); in diagnoseCallArguments() local
210 for (unsigned I = 0; I < ArgCount; I++) { in diagnoseCallArguments()
/external/llvm/lib/Support/Windows/
DProcess.inc252 int ArgCount;
254 CommandLineToArgvW(GetCommandLineW(), &ArgCount);
258 Args.reserve(ArgCount);
273 for (int i = 1; i < ArgCount && !ec; ++i) {
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DProcess.inc240 int ArgCount;
242 CommandLineToArgvW(GetCommandLineW(), &ArgCount);
246 Args.reserve(ArgCount);
261 for (int i = 1; i < ArgCount && !ec; ++i) {
/external/mesa3d/src/mesa/main/
Datifragshader.h51 GLuint ArgCount[2]; member
Datifragshader.c408 GLuint count0 = curProg->Instructions[j][i].ArgCount[0]; in _mesa_EndFragmentShaderATI()
409 GLuint count1 = curProg->Instructions[j][i].ArgCount[1]; in _mesa_EndFragmentShaderATI()
676 curI->ArgCount[optype] = arg_count; in _mesa_FragmentOpXATI()
/external/mesa3d/src/mesa/state_tracker/
Dst_atifs_to_tgsi.c367 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/
Ds_atifragshader.c334 for (i = 0; i < inst->ArgCount[optype]; i++) { in execute_shader()
/external/clang/utils/TableGen/
DClangAttrEmitter.cpp2532 unsigned ArgCount = 0, OptCount = 0; in emitArgInfo() local
2535 Arg->getValueAsBit("Optional") ? ++OptCount : ++ArgCount; in emitArgInfo()
2542 OS << ArgCount << ", " << (HasVariadic ? 15 : OptCount); in emitArgInfo()