Lines Matching defs:args
92 int nfiles; // num of cmdline data file args processed
345 va_list args;
354 va_start(args, format);
355 vfprintf(stderr, format, args);
356 va_end(args);
1430 XERR("function '%s' expected no args, got %d\n", fname, num_args);
1434 XERR("function '%s' expected 2 args, got %d\n", fname, num_args);
1436 XERR("function '%s' expected at least 2 args, got %d\n", fname, num_args);
1438 XERR("function '%s' expected 2 or 3 args, got %d\n", fname, num_args);
1528 // push args, then push number of args, then:
1908 // primary() has eaten subscripts, function args, postfix ops.
3085 if (k >= stkn(0)) FATAL("too few args for printf\n");
3092 va_list args, args2;
3093 va_start(args, fmt);
3094 va_copy(args2, args);
3095 int len = vsnprintf(0, 0, fmt, args); // size needed
3096 va_end(args);
3153 if (k > stkn(0)) FATAL("too few args for printf\n");
3461 // compile ensures 3 args
3825 // Actual args follow, starting at parmbase + 1
3839 // Push additional "args" that were not passed by the caller, to
3871 // Remove the local args (not supplied by caller) from TT.stack, check to
4165 gsub(opcode, *ip++, parmbase); // tksub/tkgsub, args
4336 // If exit from function, TT.stack will be loaded with args etc. Clean it.