Searched refs:digit (Results 1 - 25 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/bash-92/bash-3.2/examples/functions/
H A Disnum.bash8 # The first pattern requires a digit before the decimal
28 ?([-+])+([[:digit:]])?(.)*([[:digit:]])?([Ee]?([-+])+([[:digit:]])) )
30 ?([-+])*([[:digit:]])?(.)+([[:digit:]])?([Ee]?([-+])+([[:digit:]])) )
48 ?([-+])+([[:digit:]]) )
/macosx-10.9.5/Libc-997.90.3/stdlib/
H A Dl64a.c27 int digit; local
38 digit = value & 0x3f;
40 if (digit < 2)
41 *s = digit + '.';
42 else if (digit < 12)
43 *s = digit + '0' - 2;
44 else if (digit < 38)
45 *s = digit + 'A' - 12;
47 *s = digit + 'a' - 38;
H A Da64l.c17 int value, digit, shift; local
29 digit = *s - '.';
31 digit = *s - '0' + 2;
33 digit = *s - 'A' + 12;
35 digit = *s - 'a' + 38;
41 value |= digit << shift;
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dstrtoull.c22 * (100 for non-digit characters).
80 register unsigned digit;
148 digit = *p - '0';
149 if (digit > 7) {
156 result = shifted + digit;
164 digit = *p - '0';
165 if (digit > 9) {
172 result = shifted + digit;
180 digit = *p - '0';
181 if (digit > ('
79 register unsigned digit; local
[all...]
H A Dstrtoul.c21 * (100 for non-digit characters).
74 register unsigned digit;
139 digit = *p - '0';
140 if (digit > 7) {
145 if (digit > (ULONG_MAX - result)) { overflow = 1; }
146 result += digit;
152 digit = *p - '0';
153 if (digit > 9) {
158 if (digit > (ULONG_MAX - result)) { overflow = 1; }
159 result += digit;
73 register unsigned digit; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/compat/
H A Dstrtoul.c19 * equivalent. It maps from '0' through 'z' to integers (100 for non-digit
70 register unsigned digit;
134 digit = *p - '0';
135 if (digit > 7) {
140 if (digit > (ULONG_MAX - result)) { overflow = 1; }
141 result += digit;
148 digit = *p - '0';
149 if (digit > 9) {
154 if (digit > (ULONG_MAX - result)) { overflow = 1; }
155 result += digit;
69 register unsigned digit; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dustrfmt.c32 int digit; local
37 digit = (int)(i % radix);
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
H A Dpunycode.cpp93 digitToBasic(int32_t digit, UBool uppercase) { argument
96 if(digit<26) {
98 return (char)(_CAPITAL_A+digit);
100 return (char)(_SMALL_A+digit);
103 return (char)((_ZERO_-26)+digit);
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
456 digit=basicToDigit[(uint8_t)src[in++]];
457 if(digit<0) {
461 if(digit>(0x7fffffff-i)/w) {
467 i+=digit*
[all...]
/macosx-10.9.5/Libc-997.90.3/net/FreeBSD/
H A Dinet_network.c61 int i, digit; local
64 val = 0; base = 10; digit = 0;
66 digit = 1, base = 8, cp++;
75 digit = 1;
82 digit = 1;
87 if (!digit)
H A Dinet_addr.c119 int digit; local
130 val = 0; base = 10; digit = 0;
137 digit = 1 ;
146 digit = 1;
152 digit = 1;
178 * Did we get a valid digit?
180 if (!digit)
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dinet_aton.c99 int digit; local
110 val = 0; base = 10; digit = 0;
117 digit = 1;
132 digit = 1;
137 digit = 1;
161 * Did we get a valid digit?
163 if (!digit)
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/
H A Dlwinetaton.c103 int digit; local
118 digit = 0;
126 digit = 1;
141 digit = 1;
146 digit = 1;
170 * Did we get a valid digit?
172 if (!digit)
/macosx-10.9.5/ntp-88/lib/isc/
H A Dinet_aton.c99 int digit; local
110 val = 0; base = 10; digit = 0;
117 digit = 1;
132 digit = 1;
137 digit = 1;
161 * Did we get a valid digit?
163 if (!digit)
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dautoarg.el1 ;;; autoarg.el --- make digit keys supply prefix args
30 ;; a facility reported from Twenex Emacs whereby digit keys supplied
31 ;; prefix args rather than self inserting, with a digit sequence
42 ;; digit keys alone and redefines the `keypad' keys, `kp-1' &c as
43 ;; digit arguments. (Use `NumLock' if necessary to generate kp-N.)
50 ;; Loop over digit characters to set up keymap.
52 (define-key map `[,(+ ?0 i)] 'digit-argument)
69 (defun autoarg-kp-digit-argument (arg)
70 "Part of the numeric argument for the next command, like `digit-argument'."
72 (let ((digit (cd
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Dmpuz.el30 ;; multiplication example in which each digit has been consistently replaced
128 then the digit. Thus, to guess that A=3, type `A 3'.
166 (defmacro mpuz-digit-solved-p (digit)
167 `(or (aref mpuz-found-digits ,digit)
168 (aref mpuz-trivial-digits ,digit)))
174 (defvar mpuz-digit-to-letter (make-vector 10 0)
177 (defvar mpuz-letter-to-digit (make-vector 10 0)
178 "The inverse of mpuz-digit-to-letter.")
180 (defmacro mpuz-to-digit (lette
[all...]
/macosx-10.9.5/pdisk-9/
H A Dio.c245 int digit; local
251 digit = BAD_DIGIT;
255 digit = BAD_DIGIT;
260 digit = 0;
265 digit = c - '0';
267 digit = 10 + (c - 'A');
269 digit = 10 + (c - 'a');
271 digit = BAD_DIGIT;
273 if (digit >= base) {
276 ret_value = ret_value * base + digit;
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/bits/
H A Dctype_base.h52 static const mask digit = _CTYPE_D; member in struct:ctype_base
65 static const mask digit = _D; member in struct:ctype_base
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/libipsec/
H A Dpolicy_token.l68 digit [0-9]
83 usec {dot}{digit}{1,6}
88 decstring {digit}+
/macosx-10.9.5/ICU-511.35/icuSources/tools/genrb/
H A Drbutil.c72 int digit; local
82 digit = (int)(i % radix);
83 buffer[length++]= digits[digit];
/macosx-10.9.5/ICU-511.35/icuSources/samples/numfmt/
H A Dutil.cpp35 uint32_t digit; local
37 digit = (number >> ((--digits) * 4)) & 0xF;
38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dsort.c49 /* The type of a single digit. This can be any unsigned integral
54 /* The maximum value a single digit can have. */
58 in the digit on which we are currently sorting. */
85 digit_t *digit; local
98 /* Now, perform a stable sort on this digit. We use counting
102 /* Compute the address of the appropriate digit in the first and
104 machine, the least-significant digit is closest to the front. */
110 digit is K. */
111 for (digit = bias;
112 digit < to
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dinet_pton.c90 unsigned int digit, base; local
118 digit = c - '0';
119 if (digit >= base)
121 val = (val * base) + digit;
124 digit = c + 10 - (islower(c) ? 'a' : 'A');
125 if (digit >= 16)
127 val = (val << 4) | digit;
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dslpreg.vim25 syn match slpregServiceType contained display '\a[[:alpha:][:digit:]+-]*\%(\.\a[[:alpha:][:digit:]+-]*\)\=\%(:\a[[:alpha:][:digit:]+-]*\)\='
33 "syn match slpregSAP contained display '\%(//\%(\%([[:alpha:][:digit:]$-_.~!*\'(),+;&=]*@\)\=\%([[:alnum:]][[:alnum:]-]*[[:alnum:]]\|[[:alnum:]]\.\)*\%(\a[[:alnum:]-]*[[:alnum:]]\|\a\)\%(:\d\+\)\=\)\=\|/at/\%([[:alpha:][:digit:]$-_.~]\|\\\x\x\)\{1,31}:\%([[:alpha:][:digit:]$-_.~]\|\\\x\x\)\{1,31}\%([[:alpha:][:digit:]$-_.~]\|\\\x\x\)\{1,31}\|/ipx/\x\{8}:\x\{12}:\x\{4}\)\%(/\%([[:alpha:][:digit:]$-_.~!*\'()+;?:@&=+]\|\\\x\x\)*\)*\%(;[^()\\!<=>~[:cntrl:]* \t_]\+\%(=[^()\\!<=>~[:cntrl:] ]\+\)\=\)*'
47 syn match slpregType contained display '\a[[:alpha:][:digit:]+-]*'
/macosx-10.9.5/bc-21/bc/dc/
H A Dnumeric.c286 int digit;
308 digit = c - '0';
310 digit = 10 + c - 'A';
314 bc_int2num(&tmp, digit);
327 digit = c - '0';
329 digit = 10 + c - 'A';
332 bc_int2num(&tmp, digit);
422 struct digit_stack { int digit; struct digit_stack *link;};
428 bc_num digit; variable
432 bc_init_num(&digit);
285 int digit; variable
418 struct digit_stack { int digit; struct digit_stack *link;}; member in struct:digit_stack
424 bc_num digit; variable
453 bc_free_num(&digit); variable
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A Dckutilities.c320 giantDigit digit; local
335 * zero M.S. digit(s)....
347 * data stream is *last*. L.s. digit of giant's digits is *first*.
352 /* one loop per giant digit */
353 digit = g->n[digitDex++];
355 /* one loop per byte in the digit */
356 *ptr-- = (unsigned char)digit;
360 digit >>= 8;
375 giantDigit digit; local
397 /* one loop per digit */
[all...]

Completed in 165 milliseconds

1234567891011