Home
last modified time | relevance | path

Searched refs:argumentCount (Results 1 – 10 of 10) sorted by relevance

/external/oj-libjdwp/src/share/back/
Dinvoker.c115 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 …]
Dinvoker.h48 jint argumentCount; member
66 jvalue *arguments, jint argumentCount);
Dutil.c554 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/
DTextureFunctionHLSL.h62 size_t argumentCount,
DTextureFunctionHLSL.cpp1374 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/
DReparser.java273 if (macro.parameterCount() != macroCall.argumentCount()) { in linkMacroCall()
277 + ", got " + macroCall.argumentCount(), in linkMacroCall()
DDirectiveNode.java212 int argumentCount() { in argumentCount() method in DirectiveNode.MacroCallNode
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1269 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/
Dpreprocessor.h42 std::size_t argumentCount() const { return argumentCount_; } in argumentCount() function
Dpreprocessor.cpp355 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()