Searched refs:atol (Results 1 - 25 of 76) sorted by relevance

1234

/freebsd-11-stable/lib/libc/stdlib/
H A Datol.c36 static char sccsid[] = "@(#)atol.c 8.1 (Berkeley) 6/4/93";
45 atol(const char *str) function
H A DMakefile.inc7 MISRCS+=C99_Exit.c a64l.c abort.c abs.c atexit.c atof.c atoi.c atol.c atoll.c \
34 atoi.3 atol.3 at_quick_exit.3 bsearch.3 \
45 MLINKS+=atol.3 atoll.3
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_atoi.c80 "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));
/freebsd-11-stable/usr.sbin/ctm/ctm_rmail/
H A Doptions.h57 extern long atol();
118 (n) = atol(*argv);
/freebsd-11-stable/contrib/gdb/gdb/mi/
H A Dmi-cmd-break.c122 ignore_count = atol (optarg);
125 thread = atol (optarg);
H A Dmi-main.c832 offset = atol (optarg);
854 word_size = atol (argv[2]);
878 nr_rows = atol (argv[3]);
886 nr_cols = atol (argv[4]);
1042 offset = atol (optarg);
1063 word_size = atol (argv[2]);
/freebsd-11-stable/contrib/libstdc++/include/c_compatibility/
H A Dstdlib.h43 using std::atol;
/freebsd-11-stable/contrib/less/
H A Dscrsize.c97 get_winsize(dpy, (Window) atol(cp), &size[0], &size[1]);
/freebsd-11-stable/usr.bin/at/
H A Dparsetime.c507 mday = atol(sc_token);
509 year = atol(sc_token);
540 mon = atol(sc_token);
548 mday = atol(sc_token);
551 year = atol(sc_token);
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cstdlib.h80 #undef atol
114 using ::atol;
/freebsd-11-stable/lib/libc/gen/
H A Dpw_scan.c184 pw->pw_change = atol(p);
190 pw->pw_expire = atol(p);
/freebsd-11-stable/usr.bin/tip/tip/
H A Duucplock.c90 pid = atol(text_pid);
/freebsd-11-stable/lib/libc/rpc/
H A Dnetnamer.c91 *uidp = (uid_t) atol(p);
96 *gidp = (gid_t) atol(p);
101 gidlist[gidlen] = (gid_t) atol(p);
/freebsd-11-stable/contrib/ofed/opensm/libvendor/
H A Dosm_pkt_randomizer.c270 tmp = atol(getenv("OSM_PKT_DROP_RATE"));
274 && (tmp = atol(getenv("OSM_PKT_NUM_UNSTABLE_LINKS"))) > 0)
280 && (tmp = atol(getenv("OSM_PKT_UNSTABLE_LINK_RATE"))) > 0)
/freebsd-11-stable/contrib/openbsm/libauditd/
H A Dauditd_lib.c359 tm.tm_sec = atol(p);
365 tm.tm_min = atol(p);
371 tm.tm_hour = atol(p);
377 tm.tm_mday = atol(p);
383 tm.tm_mon = atol(p) - 1;
389 tm.tm_year = atol(p) - 1900;
/freebsd-11-stable/contrib/ncurses/form/
H A Dfty_int.c228 val = atol(s);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cpp60 INTERCEPT_LIBRARY_FUNCTION(atol); variable
H A Dasan_interceptors.cpp522 INTERCEPTOR(long, atol, const char *nptr) {
524 ASAN_INTERCEPTOR_ENTER(ctx, atol);
526 if (UNLIKELY(!asan_inited)) return REAL(atol)(nptr);
530 return REAL(atol)(nptr);
649 ASAN_INTERCEPT_FUNC(atol);
/freebsd-11-stable/release/picobsd/tinyware/passwd/
H A Dpw_copy.c269 pw->pw_change = atol(p);
274 pw->pw_expire = atol(p);
/freebsd-11-stable/libexec/mknetid/
H A Dmknetid.c215 i = atol(gidptr);
/freebsd-11-stable/usr.bin/tset/
H A Dmap.c247 speed = atol(rate);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dcmd_args.c123 tkey = (int)atol(p);
/freebsd-11-stable/usr.sbin/binmiscctl/
H A Dbinmiscctl.c314 xbe->xbe_moffset = atol(optarg);
318 xbe->xbe_msize = atol(optarg);
/freebsd-11-stable/bin/chio/
H A Dchio.c610 base = (u_int16_t)atol(argv[1]);
614 count = (u_int16_t)atol(argv[2]) - base + 1;
754 timeout = atol(argv[1]);
809 csvr.csvr_addr = (u_int16_t)atol(argv[1]);
831 csvr.csvr_voltag.cv_serial = (u_int16_t)atol(argv[3]);
/freebsd-11-stable/contrib/apr-util/dbd/
H A Dapr_dbd_mysql.c424 *(long*)data = atol(bind->buffer);
427 *(unsigned long*)data = atol(bind->buffer);
494 *(long*)data = atol(row->row[n]);
497 *(unsigned long*)data = atol(row->row[n]);
629 bind[i].buffer_length = atol(values[++j]);
1172 sql->fldsz = atol(fields[7].value);

Completed in 216 milliseconds

1234