Searched refs:isnum (Results 1 - 16 of 16) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/arch/mmeye/stand/boot/
H A Ddevopen.c69 #define isnum(c) (((c) >= '0') && ((c) <= '9')) macro
78 if (!isnum(fname[i]))
82 for (u = 0; isnum(fname[i]) && (i < devlen); i++)
/netbsd-6-1-5-RELEASE/sys/arch/cobalt/stand/boot/
H A Ddevopen.c69 #define isnum(c) (((c) >= '0') && ((c) <= '9')) macro
85 if (!isnum(fname[i]))
89 for (u = 0; isnum(fname[i]) && (i < devlen); i++)
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/lib/
H A Dbootmenu.c42 #define isnum(c) ((c) >= '0' && (c) <= '9') macro
63 for (; isnum(*c); c++)
212 if (!isnum(*value))
287 else if (isnum(*input)) {
294 !isnum(*input) && !usedef)
/netbsd-6-1-5-RELEASE/sys/arch/zaurus/stand/zboot/
H A Dbootmenu.c38 #define isnum(c) ((c) >= '0' && (c) <= '9') macro
56 for (; isnum(*c); c++)
182 if (!isnum(*value))
249 else if (isnum(*input)) {
H A Dboot.c122 #define isnum(c) ((c) >= '0' && (c) <= '9') macro
124 if (!isnum(fname[i]))
129 } while (isnum(fname[i]));
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/boot/
H A Dboot2.c178 #define isnum(c) ((c) >= '0' && (c) <= '9') macro
180 if (!isnum(fname[i]))
185 } while (isnum(fname[i]));
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/dosboot/
H A Dmain.c123 #define isnum(c) ((c) >= '0' && (c) <= '9') macro
125 if (!isnum(fname[i]))
130 } while (isnum(fname[i]));
/netbsd-6-1-5-RELEASE/sys/arch/landisk/stand/boot/
H A Dboot2.c145 #define isnum(c) ((c) >= '0' && (c) <= '9') macro
147 if (!isnum(fname[i]))
152 } while (isnum(fname[i]));
/netbsd-6-1-5-RELEASE/external/historical/nawk/dist/
H A Dawk.h195 #define isnum(n) ((n)->tval & NUM) macro
H A Dtran.c375 if (!isnum(vp)) { /* not a number */
H A Drun.c939 if (isnum(x)) {
1122 else if (isnum(y))
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/lib/libmpfr/
H A DMakefile124 isnum.c \
272 isnum.c \
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A DMakefile.am35 isinf.c isnan.c isnum.c const_log2.c log.c modf.c mul_2exp.c mul_2si.c \
H A DMakefile.in104 isinteger$U.lo isinf$U.lo isnan$U.lo isnum$U.lo \
377 isinf.c isnan.c isnum.c const_log2.c log.c modf.c mul_2exp.c mul_2si.c \
637 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isnum$U.Plo@am__quote@
982 isnum_.c: isnum.c $(ANSI2KNR)
983 $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/isnum.c; then echo $(srcdir)/isnum.c; else echo isnum.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > $@ || rm -f $@
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Dcfparse.y2931 int isnum;
2940 isnum = !errno;
2941 if (((pw = getpwnam(owner->v)) == NULL) && !isnum)
2954 isnum = !errno;
2955 if (((gr = getgrnam(group->v)) == NULL) && !isnum)
/netbsd-6-1-5-RELEASE/external/mit/lua/dist/src/
H A Dlparser.c1048 static void forbody (LexState *ls, int base, int line, int nvars, int isnum) { argument
1055 prep = isnum ? luaK_codeAsBx(fs, OP_FORPREP, base, NO_JUMP) : luaK_jump(fs);
1062 endfor = (isnum) ? luaK_codeAsBx(fs, OP_FORLOOP, base, NO_JUMP) :
1065 luaK_patchlist(fs, (isnum ? endfor : luaK_jump(fs)), prep + 1);

Completed in 380 milliseconds