Searched refs:strtoul (Results 1 - 25 of 400) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/arm/arm/
H A Dbootconfig.c99 *((int *)result) = ((u_int)strtoul(ptr, NULL, 10) != 0);
107 *((int *)result) = (u_int)strtoul(ptr, NULL, 10);
110 *((int *)result) = (u_int)strtoul(ptr, NULL, 2);
113 *((int *)result) = (u_int)strtoul(ptr, NULL, 16);
/freebsd-10.0-release/contrib/binutils/gas/
H A Ditbl-lex.l65 yylval.processor = strtoul (yytext+1, 0, 0);
70 yylval.num = strtoul (yytext, 0, 0);
75 yylval.num = strtoul (yytext, 0, 0);
/freebsd-10.0-release/contrib/gcc/
H A Dgcov-iov.c47 major = strtoul (ptr, &ptr, 10);
50 minor = strtoul (ptr + 1, 0, 10);
/freebsd-10.0-release/tools/test/malloc/
H A Dmain.c18 if (argc > 1) NOPS = strtoul(argv[1],0,0);
19 if (argc > 2) NBUCKETS = strtoul(argv[2],0,0);
20 if (argc > 3) NSIZE = strtoul(argv[3],0,0);
/freebsd-10.0-release/usr.sbin/fifolog/fifolog_writer/
H A Dfifolog_writer.c66 w_opt = strtoul(optarg, NULL, 0);
69 s_opt = strtoul(optarg, NULL, 0);
72 z_opt = strtoul(optarg, NULL, 0);
/freebsd-10.0-release/contrib/ofed/management/infiniband-diags/src/
H A Dsminfo.c129 ca_port = strtoul(optarg, 0, 0);
147 timeout = strtoul(optarg, 0, 0);
151 act = strtoul(optarg, 0, 0);
154 state = strtoul(optarg, 0, 0);
157 prio = strtoul(optarg, 0, 0);
H A Dibaddr.c158 ca_port = strtoul(optarg, 0, 0);
184 timeout = strtoul(optarg, 0, 0);
199 port = strtoul(argv[1], 0, 0);
/freebsd-10.0-release/contrib/gcclibs/libcpp/
H A Dmakeucnid.c78 start = strtoul (l, &endptr, 16);
86 end = strtoul (l + 1, &endptr, 16);
129 codepoint = strtoul (line, &l, 16);
150 combining_value[codepoint] = strtoul (l, &l, 10);
169 this_decomp[i] = strtoul (l, &l, 16);
210 start = strtoul (line, &l, 16);
216 end = strtoul (l + 2, &l, 16);
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dvasprintf.c36 extern unsigned long strtoul ();
90 total_width += strtoul (p, (char **) &p, 10);
100 total_width += strtoul (p, (char **) &p, 10);
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dvasprintf.c36 extern unsigned long strtoul ();
90 total_width += strtoul (p, (char **) &p, 10);
100 total_width += strtoul (p, (char **) &p, 10);
/freebsd-10.0-release/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptc.c351 v = strtoul(ptr, &endptr, 10);
366 v = strtoul(ptr, &endptr, 10);
379 v = strtoul(ptr, &endptr, 10);
392 v = strtoul(ptr, &endptr, 10);
405 v = strtoul(ptr, &endptr, 10);
418 v = strtoul(ptr, &endptr, 10);
431 v = strtoul(ptr, &endptr, 10);
456 v = strtoul(ptr, &endptr, 10);
469 v = strtoul(ptr, &endptr, 10);
495 v = strtoul(va
[all...]
/freebsd-10.0-release/sbin/mknod/
H A Dmknod.c80 val = strtoul(name, &ep, 10);
132 mymajor = (long)strtoul(argv[3], &endp, 0);
137 myminor = (long)strtoul(argv[4], &endp, 0);
/freebsd-10.0-release/tools/regression/netinet/tcpconnect/
H A Dtcpconnect.c71 port = strtoul(argv[0], &dummy, 10);
116 port = strtoul(argv[1], &dummy, 10);
121 count = strtoul(argv[2], &dummy, 10);
/freebsd-10.0-release/usr.sbin/chroot/
H A Dchroot.c104 gid = (gid_t)strtoul(group, &endp, 0);
125 gidlist[gids] = (gid_t)strtoul(p, &endp, 0);
142 uid = (uid_t)strtoul(user, &endp, 0);
/freebsd-10.0-release/contrib/diff/lib/
H A Dstrtoimax.c58 # define strtol strtoul
/freebsd-10.0-release/games/primes/
H A Dprimes.c129 start = strtoul(argv[0], &p, 0);
136 stop = strtoul(argv[1], &p, 0);
148 start = strtoul(argv[0], &p, 0);
189 val = strtoul(buf, &p, 0);
/freebsd-10.0-release/lib/libc/stdlib/
H A DMakefile.inc13 strtol.c strtoll.c strtoq.c strtoul.c strtonum.c strtoull.c \
28 realpath.3 strfmon.3 strtod.3 strtol.3 strtonum.3 strtoul.3 system.3 \
48 MLINKS+=strtoul.3 strtoull.3 strtoul.3 strtouq.3 strtoul.3 strtoumax.3
/freebsd-10.0-release/tools/regression/netinet/tcpstream/
H A Dtcpstream.c199 port = strtoul(argv[3], &dummy, 10);
204 seed = strtoul(argv[4], &dummy, 10);
219 port = strtoul(argv[2], &dummy, 10);
224 seed = strtoul(argv[3], &dummy, 10);
/freebsd-10.0-release/usr.bin/mkcsmapper/
H A Dlex.l70 yylval.i_value = strtoul(yytext, NULL, 0);
/freebsd-10.0-release/usr.bin/mkesdb/
H A Dlex.l70 yylval.i_value = strtoul(yytext, NULL, 0);
/freebsd-10.0-release/usr.sbin/mtree/
H A Dspec.c182 ip->cksum = strtoul(val, &ep, 10);
214 ip->st_gid = strtoul(val, &ep, 10);
234 ip->st_nlink = strtoul(val, &ep, 10);
256 ip->st_mtimespec.tv_sec = strtoul(val, &ep, 10);
262 = strtoul(val, &ep, 10);
303 ip->st_uid = strtoul(val, &ep, 10);
/freebsd-10.0-release/contrib/opie/libopie/
H A Dgenerator.c226 window = strtoul(&cmd[3], &c, 10);
281 if ((cmd[0] != 'S') || (cmd[1] != '+') || (cmd[2] != ' ') || (strtoul(&cmd[3], &c, 10) != algorithm) || (strtoul(c + 1, &c, 10) != sequence) || strncmp(++c, seed, i) || (*(c + i) != '\n')) {
321 if ((cmd[0] != 's') || (cmd[2] != ' ') || (strtoul(&cmd[3], &c, 10) != algorithm) || (strtoul(c + 1, &c, 10) != sequence) || strncmp(++c, seed, i)) {
/freebsd-10.0-release/share/examples/libusb20/
H A Dcontrol.c217 return strtoul(reqname, 0, 0);
286 setup.wValue = strtoul(argv[idx], 0, 0);
290 setup.wIndex = strtoul(argv[idx], 0, 0);
294 setup.wLength = strtoul(argv[idx], 0, 0);
373 unsigned n = strtoul(argv[out_len], 0, 0);
/freebsd-10.0-release/sbin/nvmecontrol/
H A Dperftest.c108 io_test.num_threads = strtoul(optarg, &p, 0);
140 io_test.size = strtoul(optarg, &p, 0);
155 io_test.time = strtoul(optarg, &p, 0);
/freebsd-10.0-release/tools/tools/netrate/netblast/
H A Dnetblast.c157 port = strtoul(argv[2], &dummy, 10);
164 payloadsize = strtoul(argv[3], &dummy, 10);
173 duration = strtoul(argv[4], &dummy, 10);

Completed in 156 milliseconds

1234567891011>>