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

12345678910

/macosx-10.10.1/bash-94.1.2/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.10.1/Libc-1044.1.2/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.10.1/tcl-105/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.10.1/tcl-105/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.10.1/ICU-531.30/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));
/macosx-10.10.1/Libc-1044.1.2/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.10.1/bind9-45.101/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.10.1/bind9-45.101/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.10.1/ntp-92/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.10.1/emacs-93/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.10.1/emacs-93/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.10.1/CPANInternal-159.1/File-ExtAttr-1.09/
H A Dppport.h773 /* next must be digit or the radix separator or beginning of infinity */
780 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
784 int digit = *s - '0'; local
785 if (digit >= 0 && digit <= 9) {
786 value = value * 10 + digit;
788 digit = *s - '0';
789 if (digit >= 0 && digit <= 9) {
790 value = value * 10 + digit;
[all...]
/macosx-10.10.1/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.10.1/libstdcxx-104.1/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.10.1/ipsec-286.1.1/ipsec-tools/libipsec/
H A Dpolicy_token.l68 digit [0-9]
83 usec {dot}{digit}{1,6}
88 decstring {digit}+
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Drbutil.c72 int digit; local
82 digit = (int)(i % radix);
83 buffer[length++]= digits[digit];
/macosx-10.10.1/ICU-531.30/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.10.1/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.10.1/lukemftp-14/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.10.1/vim-55/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.10.1/WTF-7600.1.24/wtf/dtoa/
H A Dbignum-dtoa.cc169 // If 1 <= (numerator+delta_plus) / denominator < 10 then no leading 0 digit
182 uint16_t digit; local
183 digit = numerator->DivideModuloIntBignum(*denominator);
184 ASSERT(digit <= 9); // digit is a uint16_t and therefore always positive.
185 // digit = numerator / denominator (integer division).
187 buffer[(*length)++] = digit + '0';
220 // If yes, then the next digit would be < 5 and we can round down.
226 // Note that the last digit could not be a '9' as otherwise the whole
251 // Note again that the last digit coul
274 uint16_t digit; local
284 uint16_t digit; local
[all...]
/macosx-10.10.1/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...]

Completed in 216 milliseconds

12345678910