HomeSort by: relevance | last modified time | path
    Searched refs:strtoimax (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/common/lib/libc/stdlib/
strtoimax.c 1 /* $DragonFly: src/lib/libc/stdlib/strtoimax.c,v 1.2 2008/08/19 15:50:24 joerg Exp $ */
35 __RCSID("$NetBSD: strtoimax.c,v 1.2 2013/12/02 12:20:44 joerg Exp $");
58 #define _FUNCNAME strtoimax
66 __weak_alias(strtoimax, _strtoimax)
strtoi.c 62 #define __WRAPPED strtoimax
  /src/tests/fs/cd9660/
h_hexdump_r.c 67 noff = (off_t)strtoimax(line + m[1].rm_so, NULL, 16);
73 noff = (off_t)strtoimax(line + m[1].rm_so, NULL, 16);
  /src/usr.bin/head/
head.c 91 bytecnt = strtoimax(optarg, &ep, 10);
99 linecnt = strtoimax(optarg, &ep, 10);
  /src/include/
inttypes.h 46 intmax_t strtoimax(const char * __restrict,
  /src/bin/sh/
mystring.c 120 if (!is_digit(*s) || ((n = strtoimax(s, &ep, 10)),
arith_token.c 87 * strtoimax() stops...
89 a_t_val.val = strtoimax(buf, &end, 0);
arithmetic.c 130 result = strtoimax(str, &p, 0);
  /src/tests/lib/libc/stdlib/
t_strtol.c 119 ji = strtoimax(t[i].str, NULL, t[i].base);
175 CHECK(ji, "%jd", strtoimax);
211 ji = strtoimax(t[i].str, NULL, t[i].base);
292 ji = strtoimax(t[i].str, NULL, t[i].base);
  /src/usr.bin/progress/
progress.c 166 strtoimax(buf, &cp, 10);
167 filesize = strtoimax(cp, NULL, 10);
  /src/usr.sbin/flashctl/
flashctl.c 238 *num = strtoimax(str, &endptr, 16);
242 *num = strtoimax(str, &endptr, 10);
  /src/bin/pax/
pax.h 278 #define STRTOOFFT(x,y,z) strtoimax(x,y,z)
  /src/bin/kill/
kill.c 220 n = strtoimax(sn, &ep, 10);
237 n = strtoimax(s, &ep, 10);
  /src/lib/libc/stdlib/
Makefile.inc 17 strtoimax.c strtol.c strtoll.c strtoq.c strtoul.c strtoull.c \
106 MLINKS+=strtol.3 strtoimax.3
  /src/sys/stand/efiboot/
efifile.c 46 vol = strtoimax(fname + 2, &ep, 10);
efiblock.c 94 dev = strtoimax(full_path + 2, &ep, 10);
efinet.c 543 dev = strtoimax(full_path + 3, &ep, 10);
  /src/lib/libc/time/
private.h 60 /* Enable strtoimax on pre-C99 Solaris 11. */
423 # define strtoimax strtoll macro
432 # ifndef strtoimax
433 # define strtoimax strtol macro
zdump.c 517 lo = strtoimax(cutarg, &loend, 10);
522 && (hi = strtoimax(loend + 1, &hiend, 10),
537 lo = strtoimax(cuttimes, &loend, 10);
546 && (hi = strtoimax(loend + 1, &hiend, 10),
  /src/libexec/comsat/
comsat.c 197 offset = val = strtoimax(cp + 1, &fn, 10);
  /src/lib/libc/gen/
sysctlgetmibinfo.c 511 q = strtoimax(token, &t, 0);
  /src/sys/lib/libkern/
libkern.h 467 intmax_t strtoimax(const char *, char **, int);
  /src/sbin/ifconfig/
parse.c 197 val = strtoimax(arg, &end, pi->pi_base);
  /src/share/examples/puffs/pgfs/
pgfs_db.c 513 i = strtoimax(str, &ep, 10);
  /src/lib/libc/include/
namespace.h 71 #define strtoimax _strtoimax macro

Completed in 30 milliseconds

1 2