Searched refs:digit (Results 51 - 75 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/CPANInternal-140/Sub-Identify/
H A Dppport.h5854 /* next must be digit or the radix separator or beginning of infinity */
5861 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
5865 int digit = *s - '0'; local
5866 if (digit >= 0 && digit <= 9) {
5867 value = value * 10 + digit;
5869 digit = *s - '0';
5870 if (digit >= 0 && digit <= 9) {
5871 value = value * 10 + digit;
6262 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/CPANInternal-140/Sub-Identify-0.04/
H A Dppport.h5854 /* next must be digit or the radix separator or beginning of infinity */
5861 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
5865 int digit = *s - '0'; local
5866 if (digit >= 0 && digit <= 9) {
5867 value = value * 10 + digit;
5869 digit = *s - '0';
5870 if (digit >= 0 && digit <= 9) {
5871 value = value * 10 + digit;
6262 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dppport.h5793 /* next must be digit or the radix separator or beginning of infinity */
5800 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
5804 int digit = *s - '0'; local
5805 if (digit >= 0 && digit <= 9) {
5806 value = value * 10 + digit;
5808 digit = *s - '0';
5809 if (digit >= 0 && digit <= 9) {
5810 value = value * 10 + digit;
6201 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_wwv.c122 * sync pulse has been acquired. DSYNC is set when the units digit has
158 #define CMPERR 0x1 /* digit or misc bit compare error */
159 #define LOWERR 0x2 /* low bit or digit amplitude or SNR */
195 #define BTHR 1000. /* digit threshold */
196 #define BSNR 3. /* digit likelihood threshold (dB) */
197 #define BCMP 3 /* digit compare threshold */
215 #define TCONST 16 /* data bit/digit time constant */
294 #define DECIM9 4 /* BCD digit 0-9 */
295 #define DECIM6 5 /* BCD digit 0-6 */
296 #define DECIM3 6 /* BCD digit
467 int digit; /* current clock digit */ member in struct:decvec
[all...]
/macosx-10.9.5/Heimdal-323.92.1/cf/
H A Dw32-def-from-dll.pl53 /^ +([[:digit:]]+)\s+[[:xdigit:]]+\s[[:xdigit:]]{8,}\s+(\S+)(?:| = (\S*))$/ && do {
79 /^ +([[:digit:]]+)\s+[[:xdigit:]]+\s[[:xdigit:]]{8,}\s+(\S+)(?:| = (\S*))$/ && do {
/macosx-10.9.5/gnutar-452/gnutar/rmt/
H A Drmt.c395 int digit = *p - '0';
396 if (9 < (unsigned) digit)
404 off_t nc = negative ? c10 - digit : c10 + digit;
538 int digit = *p++ - '0';
539 if (9 < (unsigned) digit)
544 off_t nc = negative ? c10 - digit : c10 + digit;
394 int digit = *p - '0'; local
537 int digit = *p++ - '0'; local
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/
H A Dscalar_scanner.rb132 tz = md[3].match(/^([+\-]?\d{1,2})\:?(\d{1,2})?$/)[1..-1].compact.map { |digit| Integer(digit, 10) }
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dbfd.c1100 unsigned int digit;
1102 digit = *string;
1103 if (ISDIGIT (digit))
1104 digit = digit - '0';
1105 else if (ISALPHA (digit))
1106 digit = TOUPPER (digit) - 'A' + 10;
1109 if (digit >= (unsigned int) base)
1111 if (value > cutoff || (value == cutoff && digit > cutli
1097 unsigned int digit; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cms/lib/
H A DCMSEncoder.cpp189 CFIndex digit; local
222 for(digit=0; digit<numsToProcess; digit++) {
223 num = cfStringToNumber((CFStringRef)CFArrayGetValueAtIndex(argvRef, digit+2));
225 numDigits[digit] = encodeNumber(num, &digits[digit]);
226 numDigitBytes += numDigits[digit];
234 for(digit=0; digit<numsToProces
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/io/
H A Dufmt_cmn.c71 uint32_t digit; local
75 digit = (uint32_t)(value % radix);
77 buffer[length++] = (UChar)(uselower ? TO_LC_DIGIT(digit)
78 : TO_UC_DIGIT(digit));
149 /* read the next digit */
/macosx-10.9.5/dcerpc-58/dcerpc/idl_compiler/
H A Dacf_l.l187 digit [0-9]
190 id {letter}({letter}|{digit})*
/macosx-10.9.5/tcl-102/tcl/tcl/tools/
H A DuniClass.tcl90 digit "decimal digit characters"
/macosx-10.9.5/tcl-102/tcl84/tcl/tools/
H A DuniClass.tcl90 digit "decimal digit characters"
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_pexpression.tcl21 epsilon dot alnum alpha ascii digit graph lower printable \
133 epsilon - alpha - alnum - ascii - digit - graph - lower - print - \
223 proc ::pt::pe::digit {} { return digit }
272 digit {0 0}
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/tepam/
H A Dproc_interactive.test56 {-digit -type digit -default 9876}
87 append res "digit:'$digit' "
140 digit 9876
182 {-digit -type digit -optional}
212 catch {append res " digit:'$digit'"}
263 digit 987
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dasteriskvm.vim31 syn match asteriskvmMailbox "^[[:digit:]]\+\s*=>\?\s*[[:digit:]]\+\(,[^,]*\(,[^,]*\(,[^,]*\(,[^,]*\)\?\)\?\)\?\)\?" contains=mailboxEmail,asteriskvmSetting,asteriskvmSettingBool,comma
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Ddemo_panels.c406 make_fullwidth_digit(cchar_t *target, int digit) argument
410 source[0] = digit + 0xff10;
418 int digit; local
421 for (digit = 0; digit < 10; ++digit)
422 make_fullwidth_digit(&temp[digit], digit);
427 digit = (y + x / 2) % 10;
428 } while (add_wch(&temp[digit]) !
[all...]
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dxprintf_int.c106 if (val < 10) { /* many numbers are 1 digit */
274 const char *nalt, *digit; local
287 digit = __lowercase_hex;
310 digit = __uppercase_hex;
368 p = __ultoa(uu, pe, rdx, digit, ngrp, thousands_sep, thousands_sep_len, grouping);
370 p = __ujtoa(uu, pe, rdx, digit, ngrp, thousands_sep, thousands_sep_len, grouping);
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dchartype.test37 ctype digit 01234567
41 ctype digit abc123cd
198 } {1 {unrecognized class specification: "ascbb", expected one of: alnum, alpha, ascii, char, cntrl, digit, graph, lower, ord, print, punct, space, upper or xdigit}}
/macosx-10.9.5/CPANInternal-140/DateTime/c/
H A Dppport.h6203 /* next must be digit or the radix separator or beginning of infinity */
6210 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
6214 int digit = *s - '0'; local
6215 if (digit >= 0 && digit <= 9) {
6216 value = value * 10 + digit;
6218 digit = *s - '0';
6219 if (digit >= 0 && digit <= 9) {
6220 value = value * 10 + digit;
6611 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/xs/
H A Dppport.h6398 /* next must be digit or the radix separator or beginning of infinity */
6405 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
6409 int digit = *s - '0'; local
6410 if (digit >= 0 && digit <= 9) {
6411 value = value * 10 + digit;
6413 digit = *s - '0';
6414 if (digit >= 0 && digit <= 9) {
6415 value = value * 10 + digit;
6806 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/xs/
H A Dppport.h6398 /* next must be digit or the radix separator or beginning of infinity */
6405 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
6409 int digit = *s - '0'; local
6410 if (digit >= 0 && digit <= 9) {
6411 value = value * 10 + digit;
6413 digit = *s - '0';
6414 if (digit >= 0 && digit <= 9) {
6415 value = value * 10 + digit;
6806 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_support_format_cpio.c689 int digit; local
694 digit = *p - '0';
699 l |= digit;
708 int digit; local
713 digit = *p - 'a' + 10;
715 digit = *p - 'A' + 10;
717 digit = *p - '0';
722 l |= digit;
H A Darchive_read_support_format_tar.c337 /* Type flag must be null, digit or A-Z, a-z. */
767 "Malformed Solaris ACL attribute (invalid digit)");
1621 char digit; local
1637 digit = *p - '0';
1639 (s == limit && digit > last_digit_limit)) {
1643 s = (s * 10) + digit;
1926 int base, digit; local
1949 digit = *p - '0';
1950 if (l > limit || (l == limit && digit > last_digit_limit))
1953 l = (l * base) + digit;
2040 int digit, sign, base; local
2076 int base, digit, sign; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/tests/
H A Dpty.sh48 do offset=${text/*: line +([[:digit:]]):*/\1}
70 u [[:digit:]]\r?\n$
93 u [[:digit:]]\r?\n$
116 u [[:digit:]]\r?\n$

Completed in 502 milliseconds

1234567891011