Searched refs:atoi (Results 26 - 50 of 1300) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Drun.c25 printf ("%d\n", factorial (atoi (argv[1])));
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Drun.c25 printf ("%d\n", factorial (atoi (argv[1])));
/netbsd-current/tests/lib/libc/stdio/
H A Dh_makenumbers.c14 maxi = atoi(argv[1]);
H A Dh_testnumbers.c11 if ((size_t)atoi(line) != i)
/netbsd-current/sys/arch/next68k/stand/boot/
H A Ddevopen.c92 *count = atoi(args[0]);
93 *lun = atoi(args[1]);
94 *part = atoi(args[2]);
97 *lun = atoi(args[0]);
98 *part = atoi(args[1]);
101 *part = atoi(args[0]);
/netbsd-current/crypto/external/bsd/netpgp/dist/src/hkpclient/
H A Dmain.c51 family = atoi(optarg);
57 port = atoi(optarg);
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Drand_sleep.c83 if ((delay = atoi(argv[1])) <= 0)
85 if ((variation = atoi(argv[2])) < 0)
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/com_err/
H A Dlex.l69 [0-9]+ { yylval.number = atoi(yytext); return NUMBER; }
/netbsd-current/tests/lib/libc/ssp/
H A Dh_raw.c55 poke(b, atoi(argv[1]));
H A Dh_stpncpy.c43 int len = atoi(argv[1]);
/netbsd-current/sys/lib/libsa/
H A Datoi.c1 /* $NetBSD: atoi.c,v 1.2 2019/03/31 20:08:45 christos Exp $ */
36 atoi(const char *in) function
/netbsd-current/external/lgpl3/mpfr/dist/examples/
H A Ddivworst.c64 dmax = atoi (argv[1]);
65 n = atoi (argv[2]);
66 p = argc == 3 ? n : atoi (argv[3]);
/netbsd-current/external/bsd/unbound/dist/util/
H A Dconfigparser.y524 if(atoi($2) == 0 && strcmp($2, "0") != 0)
526 else cfg_parser->cfg->num_threads = atoi($2);
533 if(atoi($2) == 0 && strcmp($2, "0") != 0)
535 else cfg_parser->cfg->verbosity = atoi($2);
544 else if(atoi($2) == 0)
546 else cfg_parser->cfg->stat_interval = atoi($2);
591 else if(atoi($2) == 0)
593 else cfg_parser->cfg->shm_key = atoi($2);
600 if(atoi($2) == 0)
602 else cfg_parser->cfg->port = atoi(
[all...]
/netbsd-current/tests/lib/libc/misc/
H A Dt_ubsan.c120 volatile int b = atoi("1");
143 volatile unsigned int b = atoi("1");
165 volatile int a = atoi("1");
166 volatile int b = atoi("1");
192 volatile int b = atoi("-1");
214 volatile int b = atoi("-1");
268 volatile int a = atoi("0"); \
298 volatile int a = INT_MAX - atoi("10");
321 volatile int a = INT_MAX - atoi("10");
377 volatile int b = atoi("
[all...]
/netbsd-current/regress/sys/fs/lfs/ckckp/
H A Dcleanalot_async.c123 bs = atoi(optarg);
126 count = atoi(optarg);
129 plex = atoi(optarg);
141 count = atoi(argv[optind]);
144 bs = atoi(getenv("BS"));
/netbsd-current/games/warp/
H A Dwarp.c188 debug = atoi(++s);
195 ismarts = atoi(s);
209 inumenemies = atoi(s);
217 inumfriends = atoi(s);
238 inumpirates = atoi(s);
247 prescene = atoi(s);
261 inumstars = atoi(s);
/netbsd-current/usr.sbin/grfconfig/
H A Dgrfconfig.c170 gv->pixel_clock = atoi(cps[1]);
171 gv->disp_width = atoi(cps[2]);
172 gv->disp_height = atoi(cps[3]);
173 gv->depth = atoi(cps[4]);
174 gv->hblank_start = atoi(cps[5]);
175 gv->hsync_start = atoi(cps[6]);
176 gv->hsync_stop = atoi(cps[7]);
177 gv->htotal = atoi(cps[8]);
178 gv->vblank_start = atoi(cps[9]);
179 gv->vsync_start = atoi(cp
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/ppc/
H A Dregisters.c89 description.index = atoi(reg+1);
94 description.index = atoi(reg+1);
129 description.index = atoi(reg+2);
155 description.index = atoi(reg+2);
167 description.index = atoi(reg+2);
172 description.index = atoi(reg+2);
/netbsd-current/external/gpl2/rcs/dist/src/
H A Drcstime.c149 t.tm_year = atoi(date) - (date[2]=='.' ? 0 : 1900);
150 t.tm_mon = atoi(p) - 1;
151 t.tm_mday = atoi(p+3);
152 t.tm_hour = atoi(p+6);
153 t.tm_min = atoi(p+9);
154 t.tm_sec = atoi(p+12);
/netbsd-current/external/gpl3/gdb/dist/sim/ppc/
H A Dregisters.c79 description.index = atoi(reg+1);
84 description.index = atoi(reg+1);
119 description.index = atoi(reg+2);
145 description.index = atoi(reg+2);
157 description.index = atoi(reg+2);
162 description.index = atoi(reg+2);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/tsan/benchmarks/
H A Dvts_many_threads_bench.cc78 n_threads = atoi(argv[1]);
80 n_garbage_threads = atoi(argv[2]);
82 n_iterations = atoi(argv[3]);
/netbsd-current/tests/lib/libc/stdlib/
H A Dt_atoi.c62 "Test that atoi(3) matches the corresponding strtol(3) call");
71 ATF_REQUIRE(atoi("0") == strtol("0", NULL, 10));
72 ATF_REQUIRE(atoi("-1") == strtol("-1", NULL, 10));
73 ATF_REQUIRE(atoi(buf) == strtol(buf, NULL, 10));
/netbsd-current/usr.sbin/lpr/lprm/
H A Dlprm.c116 wait_time = atoi(&arg[2]);
119 wait_time = atoi(*++argv);
142 requ[requests++] = atoi(arg);
/netbsd-current/sys/arch/rs6000/stand/boot/
H A Ddevopen.c99 *part = atoi(args[2]);
102 *unit = atoi(args[1]);
105 *ctlr = atoi(args[0]);
/netbsd-current/external/bsd/am-utils/dist/amd/
H A Dops_tmpfs.c140 tmpfs_args.ta_nodes_max = atoi(p);
145 tmpfs_args.ta_size_max = atoi(p);
150 tmpfs_args.ta_root_uid = atoi(p);
155 tmpfs_args.ta_root_gid = atoi(p);

Completed in 313 milliseconds

1234567891011>>