| /src/lib/libc/stdlib/ |
| atol.c | 1 /* $NetBSD: atol.c,v 1.11 2012/06/25 22:32:45 abs Exp $ */ 35 static char sccsid[] = "@(#)atol.c 8.1 (Berkeley) 6/4/93"; 37 __RCSID("$NetBSD: atol.c,v 1.11 2012/06/25 22:32:45 abs Exp $"); 45 atol(const char *str) function in typeref:typename:long
|
| Makefile.inc | 8 a64l.c abort.c atexit.c atof.c atoi.c atol.c atoll.c \ 46 MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 atoll.3 \
|
| /src/tests/lib/libc/stdlib/ |
| t_atoi.c | 80 "Test that atol(3) matches the corresponding strtol(3) call"); 89 ATF_REQUIRE(atol("0") == strtol("0", NULL, 10)); 90 ATF_REQUIRE(atol("-1") == strtol("-1", NULL, 10)); 91 ATF_REQUIRE(atol(buf) == strtol(buf, NULL, 10));
|
| /src/lib/npf/ext_normalize/ |
| npfext_normalize.c | 91 npf_ext_param_u32(ext, name, atol(val));
|
| /src/sys/arch/amiga/stand/bootblock/elf2bb/ |
| chksum.c | 68 bbsize = atol(argb[1]);
|
| /src/games/boggle/boggle/ |
| word.c | 205 dictindex[j].start = atol(buf + 1); 206 dictindex[j].length = atol(buf + 9) - dictindex[j].start;
|
| bog.c | 156 seed = atol(optarg);
|
| /src/lib/npf/ext_rndblock/ |
| npfext_rndblock.c | 87 ival = (i == 1) ? atof(val) * 100 : atol(val);
|
| /src/usr.sbin/sysinst/ |
| factor.c | 131 val = atol(argv[arg]);
|
| /src/lib/libform/ |
| type_integer.c | 145 number = atol(buf);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerDataFlowTrace.cpp | 61 size_t N = std::atol(L.c_str() + 1);
|
| /src/common/dist/zlib/contrib/testzlib/ |
| testzlib.c | 175 BlockSizeCompress=atol(argv[2]);
178 BlockSizeUncompress=atol(argv[3]);
181 cprLevel=(int)atol(argv[4]);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_win_dll_thunk.cc | 61 INTERCEPT_LIBRARY_FUNCTION(atol);
|
| asan_interceptors.cc | 518 INTERCEPTOR(long, atol, const char *nptr) { // NOLINT 520 ASAN_INTERCEPTOR_ENTER(ctx, atol); 522 if (UNLIKELY(!asan_inited)) return REAL(atol)(nptr); 526 return REAL(atol)(nptr); 606 ASAN_INTERCEPT_FUNC(atol);
|
| /src/usr.bin/last/ |
| last.c | 168 maxrec = atol(++p); 170 maxrec = atol(argv[optind] + 1);
|
| /src/usr.sbin/diskpart/ |
| diskpart.c | 465 *fp->f_location = atol(cp); 480 dp->d_secpercyl = atol(buf); 490 dp->d_drivedata[i] = atol(buf);
|
| /src/libexec/httpd/ |
| lua-bozo.c | 418 if (clen && *clen && atol(clen) > 0) { 419 length = atol(clen);
|
| /src/usr.bin/ipcrm/ |
| ipcrm.c | 257 target_key = atol(optarg);
|
| /src/include/ |
| stdlib.h | 101 long atol(const char *);
|
| /src/games/warp/ |
| score.c | 157 totalscore = atol(spbuf+9); 556 if (atol(buf+32) < totalscore)
|
| /src/usr.bin/xlint/llib/ |
| llib-lstdc | 187 long (atol)(const char *nptr);
|
| llib-lposix | 79 long (atol)(const char *nptr);
|
| /src/sbin/swapctl/ |
| swapctl.c | 763 priority = atol(s);
|
| /src/sbin/pppoectl/ |
| pppoectl.c | 487 timeout.idle_seconds = (time_t)atol(arg+off);
|
| /src/usr.bin/patch/ |
| pch.c | 349 if (atol(s + 4) == 0) 461 LINENUM l = (LINENUM)atol(s);
|