HomeSort by: relevance | last modified time | path
    Searched defs:isdigit (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/lib/libc/citrus/
citrus_bcs_strtol.c 52 #undef isdigit macro
53 #define isdigit(c) _bcs_isdigit(c) macro
citrus_bcs_strtoul.c 57 #undef isdigit macro
58 #define isdigit(c) _bcs_isdigit(c) macro
  /src/lib/libc/locale/
fix_grouping.c 56 /* don't use libc's isdigit, it owes locale. */
57 #define isdigit(c) (c >= '0' && c <= '9') macro
88 if (!isdigit((unsigned char)*src)) {
95 if (isdigit((unsigned char)*(src+1))) {
  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 20 int isdigit(int c);
46 #undef isdigit macro
  /src/external/cddl/osnet/dist/common/util/
strtolctype.h 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
51 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro
56 #define isxdigit(ch) (isdigit(ch) || ((ch) >= 'a' && (ch) <= 'f') || \
62 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
73 (isdigit(x) || ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z'))
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
missing_files.py 45 def isdigit(c): function
58 return isalpha(c) or isdigit(c)
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
missing_files.py 45 def isdigit(c): function
58 return isalpha(c) or isdigit(c)
  /src/sys/sys/
ctype_inline.h 51 #define isdigit(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_D)) macro
  /src/sys/external/bsd/acpica/dist/include/
acclib.h 68 #define isdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_DI)) macro
  /src/external/gpl2/texinfo/dist/makeinfo/
makeinfo.h 275 #ifndef isdigit
276 #define isdigit(c) ((c) >= '0' && (c) <= '9')
271 #define isdigit macro
  /src/sys/lib/libkern/
libkern.h 75 LIBKERN_INLINE int isdigit(int) __unused;
183 return (isalpha(ch) || isdigit(ch));
187 isdigit(int ch) function
195 return (isdigit(ch) ||
  /src/external/cddl/osnet/sys/kern/
ddi.c 88 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
90 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro
95 #define isxdigit(ch) (isdigit(ch) || ((ch) >= 'a' && (ch) <= 'f') || \
99 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
110 (isdigit(x) || ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z'))
  /src/external/gpl2/gettext/dist/gettext-tools/src/
format-awk.c 82 <ctype.h> isdigit must be an 'unsigned char'.) */
83 #undef isdigit macro
84 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
118 if (isdigit (*format))
128 while (isdigit (*f));
154 if (isdigit (*format))
164 while (isdigit (*f));
220 else if (isdigit (*format))
222 do format++; while (isdigit (*format));
236 if (isdigit (*format)
    [all...]
format-boost.c 102 <ctype.h> isdigit must be an 'unsigned char'.) */
103 #undef isdigit macro
104 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
150 if (isdigit (*format) && *format != '0')
160 while (isdigit (*f));
200 if (isdigit (*format))
210 while (isdigit (*f));
270 else if (isdigit (*format))
272 do format++; while (isdigit (*format));
286 if (isdigit (*format)
    [all...]
format-elisp.c 83 <ctype.h> isdigit must be an 'unsigned char'.) */
84 #undef isdigit macro
85 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
118 if (isdigit (*format))
128 while (isdigit (*f));
158 else if (isdigit (*format))
160 do format++; while (isdigit (*format));
183 else if (isdigit (*format))
185 do format++; while (isdigit (*format));
format-librep.c 80 <ctype.h> isdigit must be an 'unsigned char'.) */
81 #undef isdigit macro
82 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
115 if (isdigit (*format))
125 while (isdigit (*f));
140 if (isdigit (*format))
142 do format++; while (isdigit (*format));
150 if (isdigit (*format))
152 do format++; while (isdigit (*format));
format-pascal.c 91 <ctype.h> isdigit must be an 'unsigned char'.) */
92 #undef isdigit macro
93 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
141 if (isdigit (*format))
151 while (isdigit (*f));
174 if (isdigit (*format))
178 while (isdigit (*format));
201 if (isdigit (*format))
205 while (isdigit (*format));
format-perl.c 114 <ctype.h> isdigit must be an 'unsigned char'.) */
115 #undef isdigit macro
116 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
168 while (isdigit (*f));
217 while (isdigit (*f));
275 while (isdigit (*f));
298 do format++; while (isdigit (*format));
322 while (isdigit (*f));
343 while (isdigit (*format)) format++;
format-php.c 82 <ctype.h> isdigit must be an 'unsigned char'.) */
83 #undef isdigit macro
84 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
125 if (isdigit (*format))
135 while (isdigit (*f));
170 if (isdigit (*format))
174 while (isdigit (*format));
182 if (isdigit (*format))
186 while (isdigit (*format));
format-python.c 100 <ctype.h> isdigit must be an 'unsigned char'.) */
101 #undef isdigit macro
102 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
194 else if (isdigit (*format))
196 do format++; while (isdigit (*format));
222 else if (isdigit (*format))
224 do format++; while (isdigit (*format));
format-tcl.c 86 <ctype.h> isdigit must be an 'unsigned char'.) */
87 #undef isdigit macro
88 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
130 if (isdigit (*format))
140 while (isdigit (*f));
195 else if (isdigit (*format))
197 do format++; while (isdigit (*format));
220 else if (isdigit (*format))
222 do format++; while (isdigit (*format));
  /src/external/gpl2/rcs/dist/src/
partime.c 45 #undef isdigit macro
46 #define isdigit(c) (((unsigned)(c)-'0') <= 9) /* faster than stock */ macro
340 if ((s[0]==',' || s[0]=='.') && isdigit ((unsigned char) s[1])) {
343 while (isdigit ((unsigned char) *++s))
431 if (isdigit ((unsigned char) *s)) {
434 if (*s==':' && s[-3]==':' && isdigit ((unsigned char) s[1])) {
439 if (isdigit ((unsigned char) *s))
460 if (isdigit ((unsigned char) *s))
515 isdigit ((unsigned char) s[0]) &&
516 isdigit ((unsigned char) s[1]
    [all...]
  /src/external/gpl3/binutils/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/binutils.old/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/gcc/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro

Completed in 25 milliseconds

1 2