Home
last modified time | relevance | path

Searched refs:eptr (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/lib/msun/src/
H A Ds_frexpf.c23 frexpf(float x, int *eptr) in frexpf() argument
28 *eptr = 0; in frexpf()
34 *eptr = -25; in frexpf()
36 *eptr += (ix>>23)-126; in frexpf()
H A Ds_frexp.c31 frexp(double x, int *eptr) in frexp() argument
36 *eptr = 0; in frexp()
42 *eptr = -54; in frexp()
44 *eptr += (ix>>20)-1022; in frexp()
/freebsd/contrib/libarchive/unzip/
H A Dla_getline.c54 char *ptr, *eptr; in la_getdelim() local
63 for (ptr = *buf, eptr = *buf + *bufsiz;;) { in la_getdelim()
80 if (ptr + 2 >= eptr) { in la_getdelim()
88 eptr = nbuf + nbufsiz; in la_getdelim()
/freebsd/crypto/openssl/crypto/asn1/
H A Dasn_mstbl.c59 char *eptr; in do_tcreate() local
78 tbl_min = strtoul(cnf->value, &eptr, 0); in do_tcreate()
79 if (*eptr) in do_tcreate()
82 tbl_max = strtoul(cnf->value, &eptr, 0); in do_tcreate()
83 if (*eptr) in do_tcreate()
H A Dasn1_gen.c350 char *eptr; in parse_tagging() local
353 tag_num = strtoul(vstart, &eptr, 10); in parse_tagging()
355 if (eptr && *eptr && (eptr > vstart + vlen)) in parse_tagging()
363 if (eptr) in parse_tagging()
364 vlen -= eptr - vstart; in parse_tagging()
368 switch (*eptr) { in parse_tagging()
388 "Char=%c", *eptr); in parse_tagging()
748 char *eptr; in bitstr_cb() local
751 bitnum = strtoul(elem, &eptr, 10); in bitstr_cb()
752 if (eptr && *eptr && (eptr != elem + len)) in bitstr_cb()
/freebsd/contrib/libfido2/openbsd-compat/
H A Dbsd-getline.c54 char *ptr, *eptr; in getdelim() local
63 for (ptr = *buf, eptr = *buf + *bufsiz;;) { in getdelim()
80 if (ptr + 2 >= eptr) { in getdelim()
88 eptr = nbuf + nbufsiz; in getdelim()
/freebsd/crypto/openssh/openbsd-compat/
H A Dbsd-getline.c52 char *ptr, *eptr; in getdelim() local
61 for (ptr = *buf, eptr = *buf + *bufsiz;;) { in getdelim()
78 if (ptr + 2 >= eptr) { in getdelim()
86 eptr = nbuf + nbufsiz; in getdelim()
/freebsd/contrib/file/src/
H A Dgetline.c43 char *ptr, *eptr; in getdelim() local
52 for (ptr = *buf, eptr = *buf + *bufsiz;;) { in getdelim()
69 if (ptr + 2 >= eptr) { in getdelim()
77 eptr = nbuf + nbufsiz; in getdelim()
/freebsd/contrib/elftoolchain/libelftc/
H A Delftc_timestamp.c39 char *env, *eptr; in elftc_timestamp() local
43 source_date_epoch = strtoll(env, &eptr, 10); in elftc_timestamp()
44 if (*eptr != '\0') in elftc_timestamp()
/freebsd/contrib/tcsh/
H A Dgethost.c170 const char *ptr, *bptr, *eptr = NULL, *name; in explode() local
179 for (ptr = defs; (bptr = strstr(ptr, def)) != NULL; ptr = eptr + 1) { in explode()
183 if ((eptr = strchr(ptr + sizeof(def) - 1, ')')) == NULL) { in explode()
189 buf = cat(buf, bptr, eptr - bptr + 1); in explode()
191 len = eptr - name; in explode()
213 if (!eptr) { in explode()
217 buf = cat(buf, eptr + 1, 0); in explode()
/freebsd/sys/netgraph/
H A Dng_parse.c338 char *eptr; in ng_int8_parse() local
343 *off = eptr - s; in ng_int8_parse()
433 char *eptr; in ng_int16_parse() local
439 *off = eptr - s; in ng_int16_parse()
529 char *eptr; in ng_int32_parse() local
538 *off = eptr - s; in ng_int32_parse()
628 char *eptr; in ng_int64_parse() local
633 *off = eptr - s; in ng_int64_parse()
1020 char *eptr; in ng_enaddr_parse() local
1031 *off = (eptr - s); in ng_enaddr_parse()
[all …]
H A Dng_ksocket.c273 char *eptr; in ng_ksocket_sockaddr_parse() local
275 val = strtoul(s + *off, &eptr, 10); in ng_ksocket_sockaddr_parse()
276 if (val > 0xff || eptr == s + *off) in ng_ksocket_sockaddr_parse()
278 *off += (eptr - (s + *off)); in ng_ksocket_sockaddr_parse()
286 val = strtoul(s + *off, &eptr, 10); in ng_ksocket_sockaddr_parse()
287 if (val > 0xffff || eptr == s + *off) in ng_ksocket_sockaddr_parse()
289 *off += (eptr - (s + *off)); in ng_ksocket_sockaddr_parse()
1279 char *eptr; in ng_ksocket_parse() local
1289 val = (int)strtoul(s, &eptr, 10); in ng_ksocket_parse()
1290 if (val < 0 || *eptr != '\0') in ng_ksocket_parse()
H A Dng_sample.c200 char *eptr; in ng_xxx_newhook() local
205 dlci = (int)strtoul(cp, &eptr, 10); in ng_xxx_newhook()
206 if (*eptr != '\0' || dlci < 0 || dlci > 1023) in ng_xxx_newhook()
H A Dng_frame_relay.c236 char *eptr; in ngfrm_newhook() local
274 dlci = (int)strtoul(cp, &eptr, 10); in ngfrm_newhook()
275 if (*eptr != '\0' || dlci < 0 || dlci > 1023) in ngfrm_newhook()
H A Dng_one2many.c215 char *eptr; in ng_one2many_newhook() local
220 i = strtoul(cp, &eptr, 10); in ng_one2many_newhook()
221 if (*eptr != '\0' || i >= NG_ONE2MANY_MAX_LINKS) in ng_one2many_newhook()
/freebsd/stand/common/
H A Dconsole.c51 char *eptr; in module_verbose_set() local
53 v = strtoul(value, &eptr, 0); in module_verbose_set()
54 if (*(const char *)value == 0 || *eptr != 0) { in module_verbose_set()
338 char *eptr; in twiddle_set() local
340 tdiv = strtoul(value, &eptr, 0); in twiddle_set()
341 if (*(const char *)value == 0 || *eptr != 0) { in twiddle_set()
/freebsd/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_getopt_long.c54 char *line, *eptr, *longopt, *ptr, *optstring = NULL, *result = NULL; in main() local
89 maxnlongopts = strtoul(ptr, &eptr, 10); in main()
90 if (*eptr != '\0') in main()
148 (int)strtoul(longopt, &eptr, 10); in main()
149 if (*eptr != '\0') in main()
/freebsd/tools/tools/ath/athpoke/
H A Dathpoke.c67 char *eptr; in main() local
108 reg = (uint32_t) strtoul(argv[0], &eptr, 0); in main()
109 if (argv[0] == eptr || eptr[0] != '\0') in main()
/freebsd/contrib/bmake/
H A Darch.c597 char *ptr, *eptr; in ArchSVR4Entry() local
619 eptr = ar->fnametab + size; in ArchSVR4Entry()
620 for (entry = 0, ptr = ar->fnametab; ptr < eptr; ptr++) in ArchSVR4Entry()
634 entry = (size_t)strtol(&inout_name[1], &eptr, 0); in ArchSVR4Entry()
635 if ((*eptr != ' ' && *eptr != '\0') || eptr == &inout_name[1]) { in ArchSVR4Entry()
/freebsd/usr.bin/elfctl/
H A Delfctl.c258 char *eptr; in convert_to_feature_val() local
262 val = strtoll(feature, &eptr, 0); in convert_to_feature_val()
263 if (eptr == feature || *eptr != '\0') in convert_to_feature_val()
/freebsd/contrib/netbsd-tests/net/in_cksum/
H A Din_cksum.c122 unsigned char *eptr = ptr + m->m_len; in dump_mbuf() local
125 if (ptr == eptr) { in dump_mbuf()
130 eptr = ptr + m->m_len; in dump_mbuf()
/freebsd/sys/netgraph/netflow/
H A Dng_netflow.c289 char *eptr; in ng_netflow_newhook() local
295 ifnum = (int)strtoul(cp, &eptr, 10); in ng_netflow_newhook()
296 if (*eptr != '\0' || ifnum < 0 || ifnum >= NG_NETFLOW_MAXIFACES) in ng_netflow_newhook()
321 char *eptr; in ng_netflow_newhook() local
327 ifnum = (int)strtoul(cp, &eptr, 10); in ng_netflow_newhook()
328 if (*eptr != '\0' || ifnum < 0 || ifnum >= NG_NETFLOW_MAXIFACES) in ng_netflow_newhook()
/freebsd/usr.bin/localedef/
H A Dscanner.c635 char *eptr; in consume_token() local
636 yylval.num = strtol(token, &eptr, 10); in consume_token()
637 if (*eptr != 0) in consume_token()
/freebsd/usr.sbin/makefs/cd9660/
H A Dcd9660_eltorito.c201 char *eptr; in cd9660_eltorito_add_boot_option() local
222 image->loadSegment = strtoul(value, &eptr, 16); in cd9660_eltorito_add_boot_option()
223 if (eptr == value || *eptr != '\0' || errno != ERANGE) { in cd9660_eltorito_add_boot_option()
/freebsd/sbin/umount/
H A Dumount.c673 char *eptr; in md_detach() local
685 mdio.md_unit = strtoul(device + sizeof(DEV_MD) - 1, &eptr, 0); in md_detach()
686 if (mdio.md_unit == (unsigned)ULONG_MAX || eptr - device == sizeof(DEV_MD) - 1) { in md_detach()

12