Home
last modified time | relevance | path

Searched refs:num_args (Results 1 – 25 of 56) sorted by relevance

123

/openbsd/gnu/usr.bin/binutils/gdb/
H A Dreply_mig_hack.awk35 num_args = 0;
55 if (num_args > 1)
66 arg_type_code_name[num_args] = $2;
67 sub (/;$/, "", arg_type_code_name[num_args]) # Get rid of the semi-colon
74 arg_name[num_args] = $2;
75 sub (/;$/, "", arg_name[num_args]) # Get rid of the semi-colon
76 arg_type[num_args] = $1;
77 num_args++;
112 for (i = 0; i < num_args; i++)
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangFunctionCaller.cpp105 uint32_t num_args = UINT32_MAX; in CompileFunction() local
115 num_args = num_func_args; in CompileFunction()
120 if (num_args == UINT32_MAX) in CompileFunction()
121 num_args = m_arg_values.GetSize(); in CompileFunction()
127 for (size_t i = 0; i < num_args; i++) { in CompileFunction()
149 if (i < num_args - 1) in CompileFunction()
162 if (i < num_args - 1) in CompileFunction()
/openbsd/gnu/usr.bin/gcc/gcc/java/
H A Djvspec.c239 int num_args = 1; local
431 num_args = argc + added;
439 num_args += 3;
443 num_args -= class_files_count + zip_files_count;
447 num_args += 2; /* For -o NONE. */
467 num_args += 2; /* for the combined arg and "-xjava" */
483 num_args++;
484 num_args++;
487 num_args += 1; /* for "-ffilelist-file" */
497 num_args += shared_libgcc;
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/config/alpha/
H A Dvms.h171 typedef struct {int num_args; enum avms_arg_type atypes[6];} avms_arg_info; member
182 (CUM).num_args = 0; \
189 (CUM).num_args += 6; \
192 if ((CUM).num_args < 6) \
193 (CUM).atypes[(CUM).num_args] = alpha_arg_type (MODE); \
195 (CUM).num_args += ALPHA_ARG_SIZE (MODE, TYPE, NAMED); \
204 ((CUM).num_args < 6 && 6 < (CUM).num_args \
206 ? 6 - (CUM).num_args : 0)
231 { if ((CUM).num_args < 6) \
H A Dunicosmk.h151 int num_args; member
182 do { (CUM).num_args = 0; \
220 ++(CUM).num_args; \
/openbsd/gnu/gcc/gcc/config/alpha/
H A Dvms.h170 typedef struct {int num_args; enum avms_arg_type atypes[6];} avms_arg_info; member
181 (CUM).num_args = 0; \
188 (CUM).num_args += 6; \
191 if ((CUM).num_args < 6) \
192 (CUM).atypes[(CUM).num_args] = alpha_arg_type (MODE); \
194 (CUM).num_args += ALPHA_ARG_SIZE (MODE, TYPE, NAMED); \
H A Dunicosmk.h140 int num_args; member
171 do { (CUM).num_args = 0; \
210 ++(CUM).num_args; \
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp63 const size_t num_args = command.GetArgumentCount(); in DoExecute() local
69 for (size_t i = 0; i < num_args; i++) { in DoExecute()
175 const size_t num_args = command.GetArgumentCount(); in DoExecute() local
180 if (num_args > 0 && ::strcmp(command.GetArgumentAtIndex(0), "all") == 0) { in DoExecute()
184 if (num_args == 0) { in DoExecute()
189 for (size_t i = 0; i < num_args; i++) { in DoExecute()
H A DCommandObjectCommands.cpp1574 size_t num_args = command.GetArgumentCount(); in DoExecute() local
1716 size_t num_args = command.GetArgumentCount(); in DoExecute() local
1740 if (cmd_sp->GetAsMultiwordCommand() && num_args == 1) { in DoExecute()
1770 const char *leaf_cmd = command[num_args - 1].c_str(); in DoExecute()
1783 for (size_t idx = 0; idx < num_args; idx++) { in DoExecute()
1911 size_t num_args = command.GetArgumentCount(); in DoExecute() local
1913 if (num_args == 0) { in DoExecute()
1918 if (num_args == 1) { in DoExecute()
2005 size_t num_args = command.GetArgumentCount(); in DoExecute() local
2007 if (num_args == 0) { in DoExecute()
[all …]
/openbsd/usr.bin/rpcgen/
H A Drpc_parse.c148 int num_args; local
175 num_args = 1;
181 get_prog_declaration(&dec, DEF_PROGRAM, num_args);
190 num_args++;
192 num_args);
201 if (!newstyle && num_args > 1) {
204 if (isvoid && num_args > 1) {
213 plist->arg_num = num_args;
/openbsd/gnu/llvm/lldb/source/Target/
H A DThreadPlanTracer.cpp190 const int num_args = 1; in Log() local
192 for (int arg_index = 0; arg_index < num_args; ++arg_index) { in Log()
200 for (int arg_index = 0; arg_index < num_args; ++arg_index) { in Log()
205 if (arg_index + 1 < num_args) in Log()
/openbsd/gnu/usr.bin/perl/cpan/Memoize/t/
H A Dbasic.t55 my $num_args;
56 sub fake_normalize { $num_args = @_ }
59 is $num_args, 7, 'NORMALIZER installs the requested normalizer; both by name';
62 is $num_args, 23, '... as well as by reference';
/openbsd/gnu/usr.bin/gcc/gcc/cp/
H A Dg++spec.c107 int num_args = 1; local
227 num_args = argc + added + need_math + shared_libgcc + 1;
228 arglist = (const char **) xmalloc (num_args * sizeof (char *));
/openbsd/gnu/gcc/gcc/cp/
H A Dg++spec.c110 int num_args = 1; in lang_specific_driver() local
254 num_args = argc + added + need_math + shared_libgcc + (library > 0) + 1; in lang_specific_driver()
255 arglist = XNEWVEC (const char *, num_args); in lang_specific_driver()
/openbsd/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/
H A DUtilities.pm612 my ($ellipsis, $min_args, $num_args) = @_;
617 elsif ($min_args == $num_args) {
621 $cond = qq(items < $min_args || items > $num_args);
/openbsd/regress/lib/libcrypto/x509/bettertls/
H A Dcheck.perl20 my $num_args = $#ARGV + 1;
21 if ($num_args != 3) {
/openbsd/gnu/llvm/lldb/examples/python/
H A Dmemory.py205 num_args = len(args)
207 if num_args == 1:
215 elif num_args == 2:
/openbsd/gnu/llvm/lldb/source/Expression/
H A DFunctionCaller.cpp192 size_t num_args = arg_values.GetSize(); in WriteFunctionArguments() local
193 if (num_args != m_arg_values.GetSize()) { in WriteFunctionArguments()
197 (uint64_t)num_args, (uint64_t)m_arg_values.GetSize()); in WriteFunctionArguments()
201 for (size_t i = 0; i < num_args; i++) { in WriteFunctionArguments()
/openbsd/sbin/unwind/libunbound/util/
H A Dconfiglexer.lex38 num_args=(nargs); \
39 LEXOUT(("v(%s%d) ", yytext, num_args)); \
40 if(num_args > 0) { BEGIN(val); } \
53 static int num_args = 0; variable
61 num_args = 0; in init_cfg_parse()
597 if(--num_args == 0) { BEGIN(INITIAL); }
605 if(--num_args == 0) { BEGIN(INITIAL); }
618 if(--num_args == 0) { BEGIN(INITIAL); }
626 if(--num_args == 0) { BEGIN(INITIAL); }
711 if(--num_args == 0) { BEGIN(INITIAL); }
H A Dconfiglexer.c3479 num_args=(nargs); \
3480 LEXOUT(("v(%s%d) ", yytext, num_args)); \
3481 if(num_args > 0) { BEGIN(val); } \
3494 static int num_args = 0; variable
3502 num_args = 0; in init_cfg_parse()
5773 if(--num_args == 0) { BEGIN(INITIAL); }
5794 if(--num_args == 0) { BEGIN(INITIAL); }
5813 if(--num_args == 0) { BEGIN(INITIAL); }
5834 if(--num_args == 0) { BEGIN(INITIAL); }
6004 if(--num_args == 0) { BEGIN(INITIAL); }
/openbsd/usr.sbin/unbound/util/
H A Dconfiglexer.lex38 num_args=(nargs); \
39 LEXOUT(("v(%s%d) ", yytext, num_args)); \
40 if(num_args > 0) { BEGIN(val); } \
53 static int num_args = 0; variable
61 num_args = 0; in init_cfg_parse()
597 if(--num_args == 0) { BEGIN(INITIAL); }
605 if(--num_args == 0) { BEGIN(INITIAL); }
618 if(--num_args == 0) { BEGIN(INITIAL); }
626 if(--num_args == 0) { BEGIN(INITIAL); }
711 if(--num_args == 0) { BEGIN(INITIAL); }
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBType.i897 num_args = self.num_template_args
898 if num_args:
900 for i in range(num_args):
/openbsd/usr.sbin/pppd/
H A Doptions.c267 int num_args; member
452 if (argc < cmdp->num_args) { in parse_args()
459 argc -= cmdp->num_args; in parse_args()
460 argv += cmdp->num_args; in parse_args()
500 argc -= cmdp->num_args; in scan_args()
501 argv += cmdp->num_args; in scan_args()
587 for (i = 0; i < cmdp->num_args; ++i) { in options_from_file()
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/
H A Dis_deeply_fail.t221 my $num_args = @$test;
228 "/^is_deeply\\(\\) takes two or three args, you gave $num_args\.\n/";
/openbsd/gnu/llvm/lldb/tools/driver/
H A DDriver.cpp495 const size_t num_args = m_option_data.m_args.size(); in MainLoop() local
496 if (num_args > 0) { in MainLoop()
512 if (num_args > 1) { in MainLoop()
514 for (size_t arg_idx = 1; arg_idx < num_args; ++arg_idx) in MainLoop()

123