Home
last modified time | relevance | path

Searched full:digit (Results 26 – 50 of 698) sorted by relevance

12345678910>>...28

/titanic_44/usr/src/cmd/localedef/data/
H A DKOI8-R.TXT95 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 DKOI8-U.TXT103 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 Dexoparg1.c291 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 Dwcstoul.c40 #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 Dwcstol.c40 #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 Dwstod.c166 * 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 Dchar_to_decimal.h206 * 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 Derrorpi.c73 * 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 Dprint.c34 #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 Dstrtol.c29 #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 Dtime.c146 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 Dwctype_test.c63 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 Dutil.c153 * 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 Dslp.conf.446 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 Ddoscan.c356 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 Dzfs_upgrade_007_neg.ksh34 # 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 Dns_common.c1718 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 Da64l.3c28 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 Dstrtol.3c77 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 Dprintf.3c128 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 Dmpi-priv.h114 /* {{{ 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 Dassert.c50 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 Dstrtoll.c94 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 Dstrtoul.c93 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 Dstrtoull.c93 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()

12345678910>>...28