Searched refs:digit (Results 101 - 125 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/ksh-20/ksh/src/lib/libast/vmalloc/
H A Dvmtrace.c71 { reg char* digit = "0123456789abcdef"; local
73 { *s-- = digit[v&0xf];
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_peg_to_peg.tcl210 alpha - alnum - ascii - digit - graph - lower - print -
400 x 1 n 4 digit 4 wordchar 4
H A Dpt_peg_interp.tcl119 alnum alpha ascii ddigit digit graph
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/tepam/
H A Dproc_call_arg_type.test66 {-digit -type digit -optional}
116 -body "AllTypeProcedure -digit \"%1\"" \
120 -body "AllTypeProcedure -digit \"%1\"" \
121 -returnCodes error -result "*requires type 'digit'*" -output "" -match glob
176 {-digit -type digit -optional -multiple}
226 -body "AllTypeProcedure_Multiple -digit \"%1\" -digit \"%1\"" \
230 -body "AllTypeProcedure_Multiple -digit \"
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/tablelist/
H A DmiscWidgets.tcl225 if {![string is digit $text]} {
254 if {![string is digit $text]} {
H A DmiscWidgets_tile.tcl231 if {![string is digit $text]} {
260 if {![string is digit $text]} {
/macosx-10.9.5/vim-53/runtime/macros/hanoi/
H A Dhanoi.vim4 " to set the height of the tower, change the digit in the following
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Duchar.c119 /* Checks if ch is a decimal digit. */
156 /* Checks if c is a letter or a decimal digit */
165 * Checks if c is alphabetic, or a decimal digit; implements UCHAR_POSIX_ALNUM.
398 /* decimal digit */
401 /* other digit */
412 /* large, single-significant-digit integer */
475 /* ch is not a decimal digit, try latin letters */
493 u_forDigit(int32_t digit, int8_t radix) { argument
494 if((uint8_t)(radix-2)>(36-2) || (uint32_t)digit>=(uint32_t)radix) {
496 } else if(digit<1
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ddigitlst.cpp20 * to do digit conversion.
50 * This is the zero digit. The base for the digits returned by getDigit()
51 * Note that it is the platform invariant digit, and is not Unicode.
143 decNumber n; // Has space for only a none digit value.
194 // Resets the digit list; sets all the digits to zero.
320 // decNumber keeps one digit (with that digit being a zero)
365 // Appends the digit to the digit list if it's not out of scope.
366 // Ignores the digit, otherwis
[all...]
H A Ddigitlst.h113 * decNumber, decimal point is after the least signficant digit.
118 * digitList exponent = decNumber exponent + digit count
176 * parsed by appending them to a digit list as they were encountered.
182 * @param digit The digit to be appended.
184 void append(char digit);
187 * Utility routine to get the value of the digit list
189 * @return the value of the digit list.
194 * Utility routine to get the value of the digit list
197 * @return the value of the digit lis
[all...]
H A Dnfsubs.cpp1068 * If in "by digits" mode, fills in the substitution one decimal digit
1087 // pulling digits off the right one at a time, formatting each digit
1095 // // to true the first time we encounter a non-zero digit
1098 // int64_t digit = numberToFormat % 10;
1099 // if (digit != 0 || doZeros) {
1104 // getRuleSet()->format(digit, toInsertInto, _pos + getPos());
1124 int64_t digit = didx>=0 ? dl.getDigit(didx) - '0' : 0; local
1125 getRuleSet()->format(digit, toInsertInto, _pos + getPos());
1170 // if we ARE in byDigits mode, parse the text one digit at a time
1178 int32_t digit; local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DLiteralParser.cpp467 // digit digits?
503 const CharType* digit = token.start; local
505 if (*digit == '-') {
507 digit++;
510 while (digit < m_ptr)
511 result = result * 10 + (*digit++) - '0';
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DcurveParams.c54 * l.s. digit; size of each array is abs(sign) + 1. These arrays are
681 giantDigit digit; local
685 unsigned digitByte; // byte selector in digit
702 digit = 0;
709 /* odd byte - snag it and advance to next array digit */
717 /* add byte to current digit */
718 digit |= (byte << (8 * digitByte));
720 /* end of array, perhaps in the midst of a digit */
724 result->n[digitDex++] = digit;
725 digit
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DcurveParams.c54 * l.s. digit; size of each array is abs(sign) + 1. These arrays are
681 giantDigit digit; local
685 unsigned digitByte; // byte selector in digit
702 digit = 0;
709 /* odd byte - snag it and advance to next array digit */
717 /* add byte to current digit */
718 digit |= (byte << (8 * digitByte));
720 /* end of array, perhaps in the midst of a digit */
724 result->n[digitDex++] = digit;
725 digit
[all...]
/macosx-10.9.5/CPANInternal-140/JSON-XS/
H A DXS.xs708 char digit, nz = 0;
718 // now output digit by digit, each time masking out the integer part
721 // we always write the digit to memory but conditionally increment
723 digit = u >> 28; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0xfffffffUL) * 5;
724 digit = u >> 27; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit);
[all...]
/macosx-10.9.5/CPANInternal-140/JSON-XS-2.33/
H A DXS.xs805 char digit, nz = 0;
815 // now output digit by digit, each time masking out the integer part
818 // we always write the digit to memory but conditionally increment
820 digit = u >> 28; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0xfffffffUL) * 5;
821 digit = u >> 27; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit);
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclParse.c513 unsigned char digit = UCHAR(*p);
515 if (!isxdigit(digit))
521 if (digit >= 'a') {
522 result |= (10 + digit - 'a');
523 } else if (digit >= 'A') {
524 result |= (10 + digit - 'A');
526 result |= (digit - '0');
654 if (isdigit(UCHAR(*p)) && (UCHAR(*p) < '8')) { /* INTL: digit */
657 if ((numBytes == 2) || !isdigit(UCHAR(*p)) /* INTL: digit */
664 if ((numBytes == 3) || !isdigit(UCHAR(*p)) /* INTL: digit */
512 unsigned char digit = UCHAR(*p); local
[all...]
/macosx-10.9.5/bc-21/bc/lib/
H A Dnumber.c140 /* We can move n_value to point to the first non zero digit! */
303 Specifically, all but the last digit is 0 and the last digit is 1.
304 Last digit is defined by scale. */
886 /* Some utility routines for the divide: First a one digit multiply.
892 _one_mult (num, size, digit, result)
894 int size, digit;
900 if (digit == 0)
904 if (digit == 1)
915 value = *nptr-- * digit
1414 long digit; member in struct:stk_rec
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFBigNumber.c561 uint32_t digit = atol(working+length-9); local
562 r->digits[curDigit] = digit;
567 uint32_t digit = atol(working); local
568 r->digits[curDigit] = digit;
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dbocu1tst.c754 hexDigit(uint8_t digit) { argument
755 return digit<=9 ? (char)('0'+digit) : (char)('a'-10+digit);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/tests/data/ok/peg_tclparam-snit/
H A D3_peg_itself903 # "<digit>"
914 # "<digit>"
918 $myparser si:next_str <digit>
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dsed.vim19 syn match sedAddress "[[:digit:]$]"
41 syn match sedFlag "[[:digit:]gpI]*w\=" contains=sedFlagwrite contained
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dentry3.rb32 their digit equivalent and sounding the bell on encountering an \
34 a digit. The fourth is a password field that accepts up to eight \
162 # Checks that the replacement (mapped to a digit) of the given
/macosx-10.9.5/zsh-60/zsh/Functions/Calendar/
H A Dcalendar_add14 local d='[[:digit:]]'
186 if [[ $REPLY = [[:digit:]](#c8)T[[:digit:]](#c6) && $line = (#b)(|*[[:space:]\#])(OCCURRENCE[[:space:]]##)${REPLY}[[:space:]]##[^[:space:]]##(|[[:space:]]*) ]]; then
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dutil.c1565 register char digit; local
1568 digit = ((what[0] >= 'A') ? ((what[0] & 0xdf) - 'A') + 10
1570 digit *= 16;
1571 digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A') + 10
1580 digit = apr_xlate_conv_byte(ap_hdrs_from_ascii,
1583 return (digit);

Completed in 170 milliseconds

1234567891011