Searched refs:eptr (Results 26 - 41 of 41) sorted by relevance

12

/freebsd-11-stable/sys/netgraph/netflow/
H A Dng_netflow.c288 char *eptr; local
294 ifnum = (int)strtoul(cp, &eptr, 10);
295 if (*eptr != '\0' || ifnum < 0 || ifnum >= NG_NETFLOW_MAXIFACES)
320 char *eptr; local
326 ifnum = (int)strtoul(cp, &eptr, 10);
327 if (*eptr != '\0' || ifnum < 0 || ifnum >= NG_NETFLOW_MAXIFACES)
/freebsd-11-stable/sys/dev/rc/
H A Drc.c658 u_char *tptr, *eptr; local
700 eptr = rc->rc_iptr;
705 icnt = eptr - tptr;
754 for (; tptr < eptr; tptr++)
780 u_char *tptr, *eptr; local
793 eptr = rc->rc_iptr;
801 sc->sc_scheduled_event -= eptr - tptr;
/freebsd-11-stable/usr.sbin/inetd/
H A Dinetd.c1879 char *eptr; local
1882 val = strtoul(s + 1, &eptr, 10);
1883 if (eptr == s + 1 || val > MAX_MAXCHLD) {
1894 if (*eptr == '/')
1895 sep->se_maxcpm = strtol(eptr + 1, &eptr, 10);
1896 if (*eptr == '/')
1897 sep->se_maxperip = strtol(eptr + 1, &eptr, 10);
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddoublest.c288 static long double ldfrexp (long double value, int *eptr);
291 ldfrexp (long double value, int *eptr)
323 *eptr = exp;
290 ldfrexp(long double value, int *eptr) argument
/freebsd-11-stable/contrib/file/src/
H A Dfuncs.c737 char *ptr, *eptr = buf + bufsiz - 1; local
741 for (ptr = buf; ptr < eptr && s < es && *s; s++) {
746 if (ptr >= eptr - 3)
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_nmea.c1265 char * eptr; /* buffer end end pointer */ local
1273 eptr = cptr + dlen;
1274 *eptr = '\0';
1317 if (*cptr != '*' || cptr != eptr - 3 ||
1331 if (cptr != eptr || cs_l != cs_r)
/freebsd-11-stable/contrib/gcc/
H A Dmips-tfile.c2797 EXTR *eptr = (EXTR *) 0; /* ext. sym equivalent to def*/
3114 eptr = ext_hash_ptr->esym_ptr;
3123 && eptr == (EXTR *) 0)
3135 : &eptr->asym;
3229 last_func_eptr = eptr;
3242 if (eptr != (EXTR *) 0
3243 && (eptr->asym.index == indexNil || cur_proc_ptr == (PDR *) 0))
3245 eptr->ifd = cur_file_ptr->file_index;
3246 eptr->asym.index = indx;
3302 if (eptr
2768 EXTR *eptr = (EXTR *) 0; /* ext. sym equivalent to def*/ local
4489 EXTR *eptr = orig_ext_syms + es; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_pid.c861 char *eptr; local
923 lmid = strtol(pdp->dtpd_mod + 2, &eptr, 16);
924 if (errno == ERANGE || eptr != mptr) {
H A Ddt_module.c472 char *eptr; local
514 pid = strtol(dmp->dm_name + 3, &eptr, 10);
515 if (errno == 0 && *eptr == '\0')
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dtelnetd.c308 char *eptr; local
310 utmp_len = strtol(optarg, &eptr, 0);
311 if (optarg == eptr)
/freebsd-11-stable/sys/netgraph/
H A Dng_bridge.c358 char *eptr; local
364 linkNum = strtoul(cp, &eptr, 10);
365 if (*eptr != '\0' || linkNum >= NG_BRIDGE_MAX_LINKS)
H A Dng_ppp.c529 char *eptr; local
534 linkNum = (int)strtoul(cp, &eptr, 10);
535 if (*eptr != '\0' || linkNum < 0 || linkNum >= NG_PPP_MAX_LINKS)
H A Dng_base.c951 char *eptr; local
960 val = strtoul(name + 1, &eptr, 16);
961 if ((eptr - name != len - 1) || (val == ULONG_MAX) || (val == 0))
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dinput.cpp211 const unsigned char *eptr; member in class:input_iterator
232 : is_diversion(0), ptr(0), eptr(0)
237 : is_diversion(is_div), ptr(0), eptr(0)
253 return ptr < eptr ? *ptr++ : fill(p);
331 eptr = 0;
360 eptr = p;
364 eptr = p;
480 int res = (top->ptr < top->eptr) ? *top->ptr++ : finish_get(np);
507 if (top->ptr < top->eptr)
516 return (top->ptr < top->eptr)
[all...]
/freebsd-11-stable/sbin/ifconfig/
H A Difieee80211.c730 char *eptr; local
739 v = strtol(val, &eptr, 10);
740 if (val[0] == '\0' || val == eptr || errno == ERANGE ||
742 (eptr[0] != '\0' && eptr[0] != ':' && eptr[0] != '/'))
2274 char *eptr; local
2275 long sku = strtol(val, &eptr, 0);
2277 if (eptr != val)
2279 if (eptr
2302 char *eptr; local
[all...]
/freebsd-11-stable/sys/dev/isp/
H A Disp_pci.c592 char *eptr = NULL; local
593 ISP_FC_PC(isp, chan)->def_wwpn = strtouq(sptr, &eptr, 16);
594 if (eptr < sptr + 16 || ISP_FC_PC(isp, chan)->def_wwpn == -1) {
605 char *eptr = NULL; local
606 ISP_FC_PC(isp, chan)->def_wwnn = strtouq(sptr, &eptr, 16);
607 if (eptr < sptr + 16 || ISP_FC_PC(isp, chan)->def_wwnn == 0) {

Completed in 306 milliseconds

12