Searched refs:argumentCount (Results 1 – 10 of 10) sorted by relevance
/external/oj-libjdwp/src/share/back/ |
D | invoker.c | 115 if ( request->argumentCount > 0 ) { in createGlobalRefs() 117 argRefs = jvmtiAllocate((jint)(request->argumentCount*sizeof(jobject))); in createGlobalRefs() 122 (void)memset(argRefs, 0, request->argumentCount*sizeof(jobject)); in createGlobalRefs() 145 if ( argIndex > request->argumentCount ) { in createGlobalRefs() 167 if ( error == JVMTI_ERROR_NONE && argIndex != request->argumentCount ) { in createGlobalRefs() 180 while ( argIndex < request->argumentCount ) { in createGlobalRefs() 202 for ( argIndex=0; argIndex < request->argumentCount; argIndex++ ) { in createGlobalRefs() 257 while (argIndex < request->argumentCount) { in deleteGlobalArgumentRefs() 275 jvalue *arguments, jint argumentCount) in fillInvokeRequest() argument 300 request->argumentCount = argumentCount; in fillInvokeRequest() [all …]
|
D | invoker.h | 48 jint argumentCount; member 66 jvalue *arguments, jint argumentCount);
|
D | util.c | 554 jint argumentCount; in sharedInvoke() local 579 argumentCount = inStream_readInt(in); in sharedInvoke() 585 if ( argumentCount > 0 ) { in sharedInvoke() 588 arguments = jvmtiAllocate(argumentCount * (jint)sizeof(*arguments)); in sharedInvoke() 593 for (i = 0; (i < argumentCount) && !inStream_error(in); i++) { in sharedInvoke() 632 instance, arguments, argumentCount); in sharedInvoke()
|
/external/angle/src/compiler/translator/ |
D | TextureFunctionHLSL.h | 62 size_t argumentCount,
|
D | TextureFunctionHLSL.cpp | 1374 size_t argumentCount, in useTextureFunction() argument 1487 bool bias = (argumentCount > mandatoryArgumentCount); // Bias argument is optional in useTextureFunction()
|
/external/escapevelocity/src/main/java/com/google/escapevelocity/ |
D | Reparser.java | 273 if (macro.parameterCount() != macroCall.argumentCount()) { in linkMacroCall() 277 + ", got " + macroCall.argumentCount(), in linkMacroCall()
|
D | DirectiveNode.java | 212 int argumentCount() { in argumentCount() method in DirectiveNode.MacroCallNode
|
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.cpp | 1269 int argumentCount = static_cast<int>(arg.size()); in visitAggregate() local 1342 for(int i = 0; i < argumentCount; i++) in visitAggregate() 1363 for(int i = 0; i < argumentCount; i++) in visitAggregate() 1415 if(argumentCount == 2) in visitAggregate() 1419 else if(argumentCount == 3) // Bias in visitAggregate() 1423 else UNREACHABLE(argumentCount); in visitAggregate() 1427 if(argumentCount == 3) in visitAggregate() 1431 else if(argumentCount == 4) // Bias in visitAggregate() 1435 else UNREACHABLE(argumentCount); in visitAggregate() 1439 if(!textureFunction.offset && argumentCount == 3) in visitAggregate() [all …]
|
/external/llvm-project/flang/lib/Parser/ |
D | preprocessor.h | 42 std::size_t argumentCount() const { return argumentCount_; } in argumentCount() function
|
D | preprocessor.cpp | 355 if (argStart.size() == 1 && k == argStart[0] && def.argumentCount() == 0) { in MacroReplacement() 360 if (k >= tokens || argStart.size() < def.argumentCount() || in MacroReplacement() 361 (argStart.size() > def.argumentCount() && !def.isVariadic())) { in MacroReplacement()
|