Home
last modified time | relevance | path

Searched refs:ISDIGIT (Results 1 – 25 of 65) sorted by relevance

123

/mirbsd/src/gnu/usr.bin/binutils/libiberty/
Dstrverscmp.c130 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0)); in strverscmp()
137 state |= (c1 == '0') + (ISDIGIT (c1) != 0); in strverscmp()
140 state = result_type[state << 2 | (((c2 == '0') + (ISDIGIT (c2) != 0)))]; in strverscmp()
148 while (ISDIGIT (*p1++)) in strverscmp()
149 if (!ISDIGIT (*p2++)) in strverscmp()
152 return ISDIGIT (*p2) ? -1 : diff; in strverscmp()
Dcplus-dem.c502 if (! ISDIGIT ((unsigned char)**type)) in consume_count()
505 while (ISDIGIT ((unsigned char)**type)) in consume_count()
516 while (ISDIGIT ((unsigned char) **type)) in consume_count()
544 if (!ISDIGIT ((unsigned char)**mangled)) in consume_count_with_underscores()
954 if (ISDIGIT ((unsigned char) mangled[len0 - 1])) { in ada_demangle()
955 for (i = len0 - 2; i >= 0 && ISDIGIT ((unsigned char) mangled[i]); i -= 1) in ada_demangle()
1464 while (**mangled && ISDIGIT ((unsigned char)**mangled)) in demangle_signature()
1800 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value()
1809 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value()
1819 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value()
[all …]
/mirbsd/src/sys/dev/raidframe/
Drf_utils.c113 #define ISDIGIT(x) ((x) >= '0' && (x) <= '9') macro
116 #define ISHEX(x) (ISDIGIT(x) || ISHEXCHAR(x))
131 for (; ISDIGIT(*p); p++) in rf_atoi()
/mirbsd/src/gnu/usr.bin/binutils/gas/
Datof-generic.c170 if (ISDIGIT (c)) in atof_generic()
199 for (p++; (c = *p) && ISDIGIT (c); p++) in atof_generic()
220 if (ISDIGIT (c)) in atof_generic()
274 if (ISDIGIT (c)) in atof_generic()
385 if (ISDIGIT (c)) in atof_generic()
Dread.c953 if ((LOCAL_LABELS_DOLLAR || LOCAL_LABELS_FB) && ISDIGIT (c)) in read_a_source_file()
963 while (ISDIGIT (*input_line_pointer)) in read_a_source_file()
1541 if (!ISDIGIT (*name)) in s_mri_common()
1549 while (ISDIGIT (*input_line_pointer)); in s_mri_common()
2497 if (!ISDIGIT (*name)) in s_mri_sect()
2505 while (ISDIGIT (*input_line_pointer)); in s_mri_sect()
4697 ISDIGIT (c) && i < 3; in next_char_of_string()
4717 if (ISDIGIT (c)) in next_char_of_string()
/mirbsd/src/usr.bin/patch/
Dbackupfile.c34 #define ISDIGIT(c) (isascii (c) && isdigit (c)) macro
138 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length])) { in version_number()
139 for (p = &backup[base_length]; ISDIGIT(*p); ++p) in version_number()
/mirbsd/src/gnu/usr.bin/cvs/diff/
Difdef.c147 if (ISDIGIT (f0))
150 while (ISDIGIT ((unsigned char) *++f))
425 while (ISDIGIT (c))
428 while (ISDIGIT (c = *spec++))
Dsystem.h227 #ifndef ISDIGIT
228 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) macro
/mirbsd/src/usr.sbin/ppp/ppp/
Dalias_smedia.c115 #define ISDIGIT(a) (((a) >= '0') && ((a) <= '9')) macro
194 if (ISDIGIT(port_data[i])) { in alias_rtsp_out()
206 if (ISDIGIT(port_data[i])) { in alias_rtsp_out()
/mirbsd/src/gnu/usr.bin/binutils/gas/config/
Dtc-iq2000.c911 if (! ISDIGIT (*input_line_pointer)) in get_number()
930 while (ISDIGIT (*input_line_pointer)) in get_number()
939 if (! ISDIGIT (*input_line_pointer)) in get_number()
947 while (ISDIGIT (*input_line_pointer)) in get_number()
969 if (ISDIGIT (*input_line_pointer) || *input_line_pointer == '-') in s_iq2000_ent()
Dtc-or32.c309 if ((*s == 'r') && ISDIGIT (*(s + 1))) in parse_operand()
397 if ((*s == 'r') && ISDIGIT (*(s + 1))) in parse_operand()
1274 || ! ISDIGIT ((unsigned char) input_line_pointer[0])) in or32_unrecognized_line()
1280 while (ISDIGIT ((unsigned char) *s)) in or32_unrecognized_line()
1375 && ISDIGIT ((unsigned char) input_line_pointer[1])) in md_operand()
1435 if (ISDIGIT (*s)) in md_operand()
Dtc-i860.c557 if (ISDIGIT (*s++)) in i860_process_insn()
559 while (ISDIGIT (*s)) in i860_process_insn()
600 if (!ISDIGIT (c = *s++)) in i860_process_insn()
604 if (ISDIGIT (*s)) in i860_process_insn()
647 if (*s++ == 'f' && ISDIGIT (*s)) in i860_process_insn()
650 if (ISDIGIT (*s)) in i860_process_insn()
Dtc-h8300.c488 if (src[0] == '8' && !ISDIGIT (src[1])) in skip_colonthing()
490 else if (src[0] == '2' && !ISDIGIT (src[1])) in skip_colonthing()
492 else if (src[0] == '3' && !ISDIGIT (src[1])) in skip_colonthing()
494 else if (src[0] == '4' && !ISDIGIT (src[1])) in skip_colonthing()
496 else if (src[0] == '5' && !ISDIGIT (src[1])) in skip_colonthing()
498 else if (src[0] == '2' && src[1] == '4' && !ISDIGIT (src[2])) in skip_colonthing()
500 else if (src[0] == '3' && src[1] == '2' && !ISDIGIT (src[2])) in skip_colonthing()
502 else if (src[0] == '1' && src[1] == '6' && !ISDIGIT (src[2])) in skip_colonthing()
507 while (ISDIGIT (*src)) in skip_colonthing()
586 ISDIGIT (src[2]) && src[3] == '-' && in get_operand()
[all …]
Dtc-dlx.c188 && ISDIGIT ((unsigned char) ptr[1])) in is_ldst_registers()
626 && ISDIGIT ((unsigned char) s[1])) in parse_operand()
1157 if (c != '$' || ! ISDIGIT ((unsigned char) input_line_pointer[0])) in dlx_unrecognized_line()
1163 while (ISDIGIT ((unsigned char) *s)) in dlx_unrecognized_line()
1205 ISDIGIT ((unsigned char) input_line_pointer[1])) in md_operand()
Dtc-a29k.c954 || ! ISDIGIT (input_line_pointer[0])) in a29k_unrecognized_line()
960 while (ISDIGIT (*s)) in a29k_unrecognized_line()
1060 && ISDIGIT (input_line_pointer[1])) in md_operand()
1120 if (ISDIGIT (*s)) in md_operand()
Dtc-sparc.c1403 while (ISLOWER (*s) || ISDIGIT (*s));
1633 if (ISDIGIT (*s))
1637 while (ISDIGIT (*s))
1919 if (ISDIGIT (*s++))
1921 while (ISDIGIT (*s))
1940 if (*s++ == '%' && *s++ == 'c' && ISDIGIT (*s))
1943 if (ISDIGIT (*s))
2036 if (!ISDIGIT ((c = *s++)))
2051 if (ISDIGIT (*s))
2116 && ISDIGIT (*++s))
[all …]
Dm68k-parse.y774 if (ISDIGIT (str[1]) in yylex()
776 && ISDIGIT (str[2]))) in yylex()
Dtc-m88k.c427 (ISDIGIT (z) ? (z) - '0' : \
481 if (ISDIGIT (*param)) in get_cnd()
Dtc-tic30.c191 if (ISLOWER (c) || ISDIGIT (c)) in md_begin()
204 if (ISUPPER (c) || ISLOWER (c) || ISDIGIT (c)) in md_begin()
207 if (ISDIGIT (c) || c == '-') in md_begin()
210 if (ISALPHA (c) || c == '_' || c == '.' || ISDIGIT (c)) in md_begin()
Dtc-mips.c8258 if (ISDIGIT (s[1])) in mips_ip()
8268 while (ISDIGIT (*s)); in mips_ip()
8469 if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2])) in mips_ip()
8471 && ISDIGIT (s[2]))) in mips_ip()
8481 while (ISDIGIT (*s)); in mips_ip()
8891 while (ISDIGIT (*s)); in mips_ip()
8914 if (ISDIGIT (*s)) in mips_ip()
8923 while (ISDIGIT (*s)); in mips_ip()
9175 if (ISDIGIT (s[1])) in mips16_ip()
9185 while (ISDIGIT (*s)); in mips16_ip()
[all …]
/mirbsd/src/gnu/usr.bin/binutils/binutils/
Dstabs.c298 if (ISDIGIT (d)) in parse_number()
752 if (ISDIGIT (*p) || *p == '(' || *p == '-') in parse_stab_string()
1149 if (! ISDIGIT (**pp) && **pp != '(' && **pp != '-') in parse_stab_type()
1190 if (ISDIGIT (*p) || *p == '(' || *p == '-') in parse_stab_type()
2832 && (ISDIGIT (argtypes[2]) in parse_stab_argtypes()
3063 if (! ISDIGIT (**pp) && **pp != '-') in parse_stab_array_type()
3077 if (! ISDIGIT (**pp) && **pp != '-') in parse_stab_array_type()
3655 while (ISDIGIT (**pp)) in stab_demangle_count()
3670 if (! ISDIGIT (**pp)) in stab_demangle_get_count()
3675 if (ISDIGIT (**pp)) in stab_demangle_get_count()
[all …]
/mirbsd/src/gnu/usr.bin/binutils/include/
Dsafe-ctype.h97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/mirbsd/src/gnu/usr.bin/cvs/lib/
Dgetdate.c233 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro
2730 if (ISDIGIT (c) || c == '-' || c == '+') in yylex()
2740 if (! ISDIGIT (c)) in yylex()
2754 if (! ISDIGIT (c)) in yylex()
2759 if ((c == '.' || c == ',') && ISDIGIT (p[1])) in yylex()
2790 if (ISDIGIT (*p)) in yylex()
2796 for (; ISDIGIT (*p); p++) in yylex()
2802 while (ISDIGIT (*p)) in yylex()
Dstrftime.c264 #define ISDIGIT(Ch) ((unsigned int) (Ch) - L_('0') <= 9) macro
610 if (ISDIGIT (*f)) in my_strftime()
626 while (ISDIGIT (*f)); in my_strftime()
/mirbsd/src/gnu/usr.bin/binutils/ld/
Dldctor.c143 if (! ISDIGIT (name[3])) in ctor_prio()

123