Home
last modified time | relevance | path

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

/external/v8/src/objects/
Darguments.tq195 frame: FrameWithArguments, argumentCount: intptr): JSArray {
197 const arguments = GetFrameArguments(frame, argumentCount);
199 const elements = NewFixedArray(argumentCount, it);
205 argumentCount: intptr): FixedArray {
206 const length = (formalParameterCount >= argumentCount) ?
208 argumentCount - formalParameterCount;
209 const arguments = GetFrameArguments(frame, argumentCount);
216 const argumentCount = Convert<intptr>(info.argument_count);
220 NewRestArgumentsElements(info.frame, formalParameterCount, argumentCount);
225 frame: FrameWithArguments, argumentCount: intptr): FixedArray {
[all …]
/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/v8/src/builtins/
Dframe-arguments.tq56 const argumentCount: bint = Convert<bint>(frame.argument_count);
59 argument_count: argumentCount,
63 const argumentCount: bint = formalParameterCount;
68 argument_count: argumentCount,
/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/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/skia/src/sksl/
DSkSLByteCodeGenerator.cpp876 int argumentCount = 0; in writeExternalFunctionCall() local
878 argumentCount += SlotCount(arg->fType); in writeExternalFunctionCall()
880 ByteCode::Register args = this->next(argumentCount); in writeExternalFunctionCall()
881 argumentCount = 0; in writeExternalFunctionCall()
883 this->writeExpression(*arg, args + argumentCount); in writeExternalFunctionCall()
884 argumentCount += SlotCount(arg->fType); in writeExternalFunctionCall()
895 SkASSERT(argumentCount <= 255); in writeExternalFunctionCall()
896 this->write((uint8_t) argumentCount); in writeExternalFunctionCall()