Searched refs:digit (Results 76 - 100 of 178) sorted by relevance

12345678

/openbsd-current/gnu/llvm/llvm/lib/MC/
H A DMCInstPrinter.cpp181 // For asm-style hex (e.g. 0ffh) the first digit always has to be a number.
186 uint64_t digit = (Value >> 60) & 0xf;
187 if (digit != 0)
188 return (digit >= 0xa);
/openbsd-current/sys/arch/hppa/stand/libsa/
H A Dcmd_hppa.c254 char *digit; local
264 for (digit = arg; *digit != '\0'; digit++) {
265 if (*digit >= '0' && *digit <= '9')
266 mode = 10 * mode + (*digit - '0');
/openbsd-current/gnu/usr.bin/perl/
H A Dvutil.c905 I32 digit; local
939 digit = SvIV(tsv);
941 sv = Perl_newSVpvf(aTHX_ "%d.", (int)PERL_ABS(digit));
945 digit = SvIV(tsv);
946 Perl_sv_catpvf(aTHX_ sv, "%03d", (int)digit);
978 I32 i, len, digit; local
998 digit = SvIV(tsv);
1000 sv = Perl_newSVpvf(aTHX_ "v%" IVdf, (IV)digit);
1003 digit = SvIV(tsv);
1004 Perl_sv_catpvf(aTHX_ sv, ".%" IVdf, (IV)digit);
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h513 # Returns integer 7 digit human-readable version, suitable for use in file
13522 # define isDIGIT_uvchr(c) D_PPP_is_ctype(DIGIT, digit, c)
16745 /* next must be digit or the radix separator or beginning of infinity */
16752 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
16756 int digit = *s - '0'; local
16757 if (digit >= 0 && digit <= 9) {
16758 value = value * 10 + digit;
16760 digit = *s - '0';
16761 if (digit >
17156 int digit = *s - '0'; local
[all...]
/openbsd-current/lib/libc/gen/
H A Dgetcap.c1028 int base, digit; local
1060 digit = *bp - '0';
1062 digit = 10 + *bp - 'a';
1064 digit = 10 + *bp - 'A';
1068 if (digit >= base)
1071 n = n * base + digit;
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.cpp246 int digit = ((*nptr) - '0'); local
247 res = (res <= UINT64_MAX - digit) ? res + digit : UINT64_MAX;
/openbsd-current/gnu/lib/libstdc++/libstdc++/src/
H A Dctype.cc72 const ctype_base::mask ctype_base::digit; member in class:std::ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/
H A Dctype_to_char.cc61 int i04 = std::ctype_base::digit;
H A Dctype_is_wchar_t.cc66 int i04 = std::ctype_base::digit;
91 VERIFY( gctype.is(std::ctype_base::digit, c20) );
H A Dctype_to_wchar_t.cc62 int i04 = std::ctype_base::digit;
H A Dctype_is_char.cc65 int i04 = std::ctype_base::digit;
90 VERIFY( gctype.is(std::ctype_base::digit, c20) );
/openbsd-current/bin/ksh/
H A Dc_ulimit.c153 if (!rval && !digit(v[0])) {
/openbsd-current/libexec/getty/
H A Dmain.c62 int crmod, digit, lower, upper; variable
320 if (!(upper || lower || digit))
383 crmod = digit = lower = upper = 0;
435 digit++;
/openbsd-current/sys/arch/powerpc64/powerpc64/
H A Dmachdep.c834 int digit, count = 0; local
838 digit = *cp - '0';
840 digit = *cp - 'a' + 10;
844 duid += digit;
862 int digit, count = 0; local
868 digit = *cp - '0';
870 digit = *cp - 'a' + 10;
876 lladdr[count / 2] |= digit << (4 * !(count % 2));
/openbsd-current/gnu/llvm/libcxx/src/
H A Dregex.cpp326 {"d", ctype_base::digit},
327 {"digit", ctype_base::digit},
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dlocale.t876 # of which are each displayed as 2-digit hex. Blanks are inserted so as
877 # to keep anything from the first part looking like a 2-digit hex number.
1074 @{$posixes{'digit'}} = grep /\d/, map { chr } 0..255;
1105 @{$posixes{'digit'}} = grep /\d/, map { chr } 0..255;
1141 debug ' \d = ', disp_chars(@{$posixes{'digit'}}), "\n";
1265 $test_names{$locales_test_number} = 'Verify that \d and [:digit:] are identical';
1269 push @f, $_ unless /[[:digit:]]/ == /\d/;
1272 push @f, $_ unless /[[:digit:]]/ == /\d/;
1302 (/[[:digit:]]/ xor /[[:^digit
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Time-Local/lib/Time/
H A DLocal.pm311 years as a two-digit value like C<99> for C<1999> or C<1> for C<2001>. This
362 years as two-digit or four-digit values, the following conventions are
386 digit dates. Whenever possible, use an absolute four digit year instead.
391 if 4-digit years are used. But it also means that the behavior of your code
468 The whole scheme for interpreting two-digit years can be considered a bug.
/openbsd-current/gnu/usr.bin/gcc/gcc/java/
H A Dmangle.c512 int digit = i / m; local
513 obstack_1grow (mangle_obstack, digits [digit]);
514 i -= digit * m;
/openbsd-current/gnu/usr.bin/perl/cpan/Locale-Maketext-Simple/lib/Locale/Maketext/
H A DSimple.pm234 \d+ # a digit, like %1
254 my $digit = $2 || shift;
255 $digit . (
258 ($1 eq 'quant') ? ' ' . (($digit > 1) ? ($4 || "$3s") : $3) :
/openbsd-current/gnu/gcc/libstdc++-v3/config/locale/generic/
H A Dctype_members.cc78 case digit:
79 __ret = wctype("digit");
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/locale/generic/
H A Dctype_members.cc75 case digit:
76 __ret = wctype("digit");
/openbsd-current/regress/usr.bin/sed/
H A Ddc.sed186 :digit
188 t digit
/openbsd-current/gnu/usr.bin/binutils/ld/
H A Dldexp.c1037 unsigned int digit; local
1039 digit = *s++ - '0';
1040 if (digit > 9)
1041 digit = (digit - 'A' + '0' + 10) & 0xf;
1043 val += digit;
/openbsd-current/gnu/usr.bin/binutils-2.17/ld/
H A Dldexp.c1040 unsigned int digit; local
1042 digit = *s++ - '0';
1043 if (digit > 9)
1044 digit = (digit - 'A' + '0' + 10) & 0xf;
1046 val += digit;
/openbsd-current/usr.sbin/ldpd/
H A Dparse.y1714 int digit;
1717 digit = hexchar(*src);
1718 if (digit == -1)
1722 *dst = digit << 4;
1727 digit = hexchar(*src);
1728 if (digit == -1)
1732 *dst |= digit;

Completed in 412 milliseconds

12345678