/titanic_44/usr/src/cmd/localedef/data/ |
H A D | KOI8-R.TXT | 95 0x30 0x0030 # DIGIT ZERO 96 0x31 0x0031 # DIGIT ONE 97 0x32 0x0032 # DIGIT TWO 98 0x33 0x0033 # DIGIT THREE 99 0x34 0x0034 # DIGIT FOUR 100 0x35 0x0035 # DIGIT FIVE 101 0x36 0x0036 # DIGIT SIX 102 0x37 0x0037 # DIGIT SEVEN 103 0x38 0x0038 # DIGIT EIGHT 104 0x39 0x0039 # DIGIT NINE
|
H A D | KOI8-U.TXT | 103 0x30 0x0030 # DIGIT ZERO 104 0x31 0x0031 # DIGIT ONE 105 0x32 0x0032 # DIGIT TWO 106 0x33 0x0033 # DIGIT THREE 107 0x34 0x0034 # DIGIT FOUR 108 0x35 0x0035 # DIGIT FIVE 109 0x36 0x0036 # DIGIT SIX 110 0x37 0x0037 # DIGIT SEVEN 111 0x38 0x0038 # DIGIT EIGHT 112 0x39 0x0039 # DIGIT NINE
|
/titanic_44/usr/src/uts/intel/io/acpica/executer/ |
H A D | exoparg1.c | 291 UINT64 Digit; in AcpiExOpcode_1A_1T_1R() local 370 Digit = Operand[0]->Integer.Value; in AcpiExOpcode_1A_1T_1R() 372 /* Convert each BCD digit (each is one nybble wide) */ in AcpiExOpcode_1A_1T_1R() 374 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++) in AcpiExOpcode_1A_1T_1R() 376 /* Get the least significant 4-bit BCD digit */ in AcpiExOpcode_1A_1T_1R() 378 Temp32 = ((UINT32) Digit) & 0xF; in AcpiExOpcode_1A_1T_1R() 380 /* Check the range of the digit */ in AcpiExOpcode_1A_1T_1R() 385 "BCD digit too large (not decimal): 0x%X", in AcpiExOpcode_1A_1T_1R() 392 /* Sum the digit into the result with the current power of 10 */ in AcpiExOpcode_1A_1T_1R() 397 /* Shift to next BCD digit */ in AcpiExOpcode_1A_1T_1R() [all …]
|
/titanic_44/usr/src/lib/libc/port/i18n/ |
H A D | wcstoul.c | 40 #define DIGIT(x) (iswdigit(x) ? (x) - L'0' : \ macro 97 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) { in wcstoull() 107 val = DIGIT(c); in wcstoull() 108 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) { in wcstoull() 122 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base) in wcstoull()
|
H A D | wcstol.c | 40 #define DIGIT(x) (iswdigit(x) ? (x) - L'0' : \ macro 99 if (!iswalnum(c) || (xx = DIGIT(c)) >= base) { in wcstoll() 116 val = -DIGIT(c); in wcstoll() 117 for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) { in wcstoll() 131 while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base) in wcstoll()
|
H A D | wstod.c | 166 * the argument is a valid nonzero digit for the form being parsed. 266 * Only a digit or radix point can in wstring_to_decimal() 357 * we need to see at least one digit. in wstring_to_decimal() 368 * Admissible characters after the first digit are a valid in wstring_to_decimal() 369 * digit, an exponent delimiter (E or e for decimal form, in wstring_to_decimal() 371 * can't get here unless we've already found a digit.) in wstring_to_decimal() 375 * Found another nonzero digit. If there's enough room in wstring_to_decimal() 377 * and then store this digit. Otherwise, stop storing in wstring_to_decimal() 413 /* advance good to the last accepted digit */ in wstring_to_decimal() 457 * Admissible characters after the radix point are a valid digit in wstring_to_decimal() [all …]
|
/titanic_44/usr/src/lib/libc/port/fp/ |
H A D | char_to_decimal.h | 206 * Only a digit or radix point can 349 * we need to see at least one digit. 360 * Admissible characters after the first digit are a valid digit, 364 * already found a digit.) 368 * Found another nonzero digit. If there's enough room 370 * and then store this digit. Otherwise, stop storing 406 /* advance good to the last accepted digit */ 483 * Admissible characters after the radix point are a valid digit 488 /* found a digit after the point; revise form */ 537 /* advance good to the last accepted digit */ [all …]
|
/titanic_44/usr/src/cmd/sgs/error/common/ |
H A D | errorpi.c | 73 * define digit = [0-9] 75 * define date_format letter*3 letter*3 (digit | (digit digit)) 76 * (digit | (digit digit)):digit*2 digit*4 79 * E {digit}* - (msg) Have an error message that refers to a new line
|
/titanic_44/usr/src/lib/efcode/engine/ |
H A D | print.c | 34 #define DIGIT(x) (((x) > 9) ? ((x) + 'a' - 10) : ((x) + '0')) macro 39 CHECK_DEPTH(env, 1, ">digit"); in to_digit() 40 TOS = DIGIT(TOS); in to_digit() 74 *(--env->picturebufpos) = DIGIT(b); in pic_unsigned() 213 *(--env->picturebufpos) = DIGIT(b); in pic_dunsigned() 261 FORTH(0, ">digit", to_digit); in _init()
|
/titanic_44/usr/src/lib/libbc/libc/gen/common/ |
H A D | strtol.c | 29 #define DIGIT(x) (isdigit(x) ? (x) - '0' : \ macro 68 if (!isalnum(c) || (xx = DIGIT(c)) >= base) 73 for (val = -DIGIT(c); isalnum(c = *++str) && (xx = DIGIT(c)) < base; )
|
/titanic_44/usr/src/cmd/time/ |
H A D | time.c | 146 char digit[9]; in printt() local 157 digit[i] = a % quant[i]; in printt() 163 c = (digit[i] != 0) ? digit[i]+'0' : (nonzero ? '0': pad[i]); in printt() 166 nonzero |= digit[i]; in printt()
|
/titanic_44/usr/src/test/libc-tests/tests/wctype/ |
H A D | wctype_test.c | 63 test_ctype(digit); in main() 74 test_ctype_subset(digit, alnum); in main() 77 test_ctype_subset(digit, print); in main() 82 test_ctype_subset(digit, graph); in main()
|
/titanic_44/usr/src/lib/libmp/common/ |
H A D | util.c | 153 * Convert hex digit to binary value 176 short digit; in mp_xtom() local 183 digit = xtoi(*key); in mp_xtom() 184 if (digit < 0) { in mp_xtom() 187 d = mp_itom(digit); in mp_xtom()
|
/titanic_44/usr/src/man/man4/ |
H A D | slp.conf.4 | 46 int = 1*DIGIT 50 tagchar = DIGIT / ALPHA / tother / escape 56 stringchar = DIGIT / ALPHA / sother / escape 61 allchar = DIGIT / ALPHA / HTAB / SP 325 anum = ALPHA / DIGIT 326 hostnumber = 1*3DIGIT 3("." 1*3DIGIT)
|
/titanic_44/usr/src/lib/libbc/libc/stdio/common/ |
H A D | doscan.c | 356 int digit; in number() local 357 digit = c - '0'; in number() 360 if (digit >= 8) in number() 363 lcval = (lcval<<3) + digit; in number() 370 lcval = (((lcval<<2) + lcval)<<1) + digit; in number() 372 lcval = (lcval<<4) + digit; in number() 382 int digit; in number() local 383 digit = c - (isupper(c) ? 'A' - 10 : 'a' - 10); in number() 385 lcval = (lcval<<4) + digit; in number()
|
/titanic_44/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_upgrade/ |
H A D | zfs_upgrade_007_neg.ksh | 34 # non-digit input are invalid. 46 log_assert "Set invalid value or non-digit version should fail as expected." 55 log_pass "Set invalid value or non-digit version fail as expected."
|
/titanic_44/usr/src/lib/libsldap/common/ |
H A D | ns_common.c | 1718 int i, seg, digit, port; in __s_api_isipv4() local 1723 digit = seg = port = 0; in __s_api_isipv4() 1727 digit++; in __s_api_isipv4() 1731 if (digit > 3 || digit == 0) in __s_api_isipv4() 1733 digit = 0; in __s_api_isipv4() 1738 if (digit > 3) in __s_api_isipv4() 1741 digit = 0; in __s_api_isipv4() 1748 if ((seg == 3 && port == 0 && digit > 0 && digit < 4) || in __s_api_isipv4() 1749 (seg == 4 && port == 1 && digit > 0)) in __s_api_isipv4() 1763 int i, col, digit, port, dc, tc; in __s_api_isipv6() local [all …]
|
/titanic_44/usr/src/man/man3c/ |
H A D | a64l.3c | 28 characters. Each character represents a "digit" in a radix-64 notation. 39 Character Digit 57 the least significant digit on the left, decoding each character as a 6-bit
|
H A D | strtol.3c | 77 non-zero digit, and consists of a sequence of decimal digits. An octal constant 99 digit. 103 the sequence of characters starting with the first digit is interpreted as an 144 terminating null is produced. The low-order digit of the result always occupies 146 undefined if \fIvalue\fR is negative. A single zero digit is produced if
|
H A D | printf.3c | 128 An optional field, consisting of a decimal digit string followed by a \fB$\fR, 171 decimal digit string, where a null digit string is treated as 0. If a precision 184 followed by a decimal digit string; a null digit string is treated as zero. 291 first digit of the result to be a zero. For \fBx\fR or \fBX\fR conversion, a 296 of these conversions only if a digit follows it. For \fBg\fR and \fBG\fR 514 appears. If a radix character appears, at least 1 digit appears before it. The 538 digit before the radix character (which is non-zero if the argument is 591 if it is followed by a digit. 607 digit preceding the radix point is 0 if the value converted is zero and 1 617 one digit, and only as many more digits as necessary to represent the decimal
|
/titanic_44/usr/src/common/mpi/ |
H A D | mpi-priv.h | 114 /* {{{ Digit arithmetic macros */ 195 while (used > 1 && DIGIT(mp, used - 1) == 0) --used; \ 211 mp_err s_mp_add_d(mp_int *mp, mp_digit d); /* unsigned digit addition */ 212 mp_err s_mp_sub_d(mp_int *mp, mp_digit d); /* unsigned digit subtract */ 213 mp_err s_mp_mul_d(mp_int *mp, mp_digit d); /* unsigned digit multiply */ 215 /* unsigned digit divide */ 234 int s_mp_cmp_d(const mp_int *a, mp_digit d); /* magnitude digit compare */ 239 char s_mp_todigit(mp_digit val, int r, int low); /* convert val to digit */
|
/titanic_44/usr/src/lib/libbc/libc/gen/sys5/ |
H A D | assert.c | 50 int div, digit; in _assert() local 61 if ((digit = line_num/div) != 0 || p != &linestr[7] || div == 1) in _assert() 62 *p++ = digit + '0'; in _assert()
|
/titanic_44/usr/src/common/util/ |
H A D | strtoll.c | 94 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) { in ddi_strtoll() 112 val = -DIGIT(c); in ddi_strtoll() 113 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtoll() 133 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr)) in ddi_strtoll()
|
H A D | strtoul.c | 93 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) { in ddi_strtoul() 106 val = DIGIT(c); in ddi_strtoul() 107 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtoul() 126 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr)) in ddi_strtoul()
|
H A D | strtoull.c | 93 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) { in ddi_strtoull() 106 val = DIGIT(c); in ddi_strtoull() 107 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) { in ddi_strtoull() 126 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr)) in ddi_strtoull()
|