Searched refs:digit (Results 26 - 50 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
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...]
/macosx-10.9.5/file_cmds-230/pax/
H A Dgen_subs.c249 * for each valid digit, shift running value (tval) over to next digit
250 * and add next digit
281 u_long digit; local
290 * least significant digit). Keep shifting until conversion value goes
295 if ((digit = (val & 0xf)) < 10)
296 *pt-- = '0' + (char)digit;
298 *pt-- = 'a' + (char)(digit - 10);
346 * for each valid digit, shift running value (tval) over to next digit
378 u_quad_t digit; local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecWrappedKeys.cpp44 char digit,
47 if((digit >= '0') && (digit <= '9')) {
48 *rtn = digit - '0';
51 if((digit >= 'a') && (digit <= 'f')) {
52 *rtn = digit - 'a' + 10;
55 if((digit >= 'A') && (digit <= 'F')) {
56 *rtn = digit
43 hexToDigit( char digit, uint8 *rtn) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecWrappedKeys.cpp44 char digit,
47 if((digit >= '0') && (digit <= '9')) {
48 *rtn = digit - '0';
51 if((digit >= 'a') && (digit <= 'f')) {
52 *rtn = digit - 'a' + 10;
55 if((digit >= 'A') && (digit <= 'F')) {
56 *rtn = digit
43 hexToDigit( char digit, uint8 *rtn) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecWrappedKeys.cpp44 char digit,
47 if((digit >= '0') && (digit <= '9')) {
48 *rtn = digit - '0';
51 if((digit >= 'a') && (digit <= 'f')) {
52 *rtn = digit - 'a' + 10;
55 if((digit >= 'A') && (digit <= 'F')) {
56 *rtn = digit
43 hexToDigit( char digit, uint8 *rtn) argument
[all...]
/macosx-10.9.5/CPANInternal-140/PathTools/
H A Dppport.h4405 /* next must be digit or the radix separator or beginning of infinity */
4412 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
4416 int digit = *s - '0'; local
4417 if (digit >= 0 && digit <= 9) {
4418 value = value * 10 + digit;
4420 digit = *s - '0';
4421 if (digit >= 0 && digit <= 9) {
4422 value = value * 10 + digit;
4813 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage/
H A Dppport.h4339 /* next must be digit or the radix separator or beginning of infinity */
4346 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
4350 int digit = *s - '0'; local
4351 if (digit >= 0 && digit <= 9) {
4352 value = value * 10 + digit;
4354 digit = *s - '0';
4355 if (digit >= 0 && digit <= 9) {
4356 value = value * 10 + digit;
4747 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage-0.03/
H A Dppport.h4339 /* next must be digit or the radix separator or beginning of infinity */
4346 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
4350 int digit = *s - '0'; local
4351 if (digit >= 0 && digit <= 9) {
4352 value = value * 10 + digit;
4354 digit = *s - '0';
4355 if (digit >= 0 && digit <= 9) {
4356 value = value * 10 + digit;
4747 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/CPANInternal-140/XML-LibXML/
H A Dppport.h4465 /* next must be digit or the radix separator or beginning of infinity */
4472 With it gcc on arm is managing 6 instructions (6 cycles) per digit.
4476 int digit = *s - '0'; local
4477 if (digit >= 0 && digit <= 9) {
4478 value = value * 10 + digit;
4480 digit = *s - '0';
4481 if (digit >= 0 && digit <= 9) {
4482 value = value * 10 + digit;
4873 int digit = *s - '0'; local
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dhttp_chunks.c78 /* Check for an ASCII hex digit.
80 static bool Curl_isxdigit(char digit) argument
82 return ( (digit >= 0x30 && digit <= 0x39) /* 0-9 */
83 || (digit >= 0x41 && digit <= 0x46) /* A-F */
84 || (digit >= 0x61 && digit <= 0x66) /* a-f */ ) ? TRUE : FALSE;
146 a hexadecimal digit. */
/macosx-10.9.5/Heimdal-323.92.1/lib/wind/
H A Dpunycode.c49 digit(unsigned n) function
150 out[o++] = digit(t + ((q - t) % (base - t)));
155 out[o++] = digit(q);
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_support_format_ar.c539 unsigned int digit, base; local
549 digit = *p - '0';
550 while (*p >= '0' && digit < base && char_cnt-- > 0) {
551 if (l>limit || (l == limit && digit > last_digit_limit)) {
555 l = (l * base) + digit;
556 digit = *++p - '0';
565 unsigned int base, digit; local
574 digit = *p - '0';
575 while (*p >= '0' && digit < base && char_cnt-- > 0) {
576 if (l > limit || (l == limit && digit > last_digit_limi
[all...]
H A Darchive_read_support_format_mtree.c1114 int digit, base; local
1121 digit = **p - '0';
1122 while (digit >= 0 && digit < base) {
1123 if (l>limit || (l == limit && digit > last_digit_limit)) {
1127 l = (l * base) + digit;
1128 digit = *++(*p) - '0';
1142 int base, digit, sign; local
1155 digit = **p - '0';
1156 while (digit >
1176 int base, digit, sign; local
[all...]
/macosx-10.9.5/ruby-104/ruby/missing/
H A Dlanginfo.c58 #define digit(x) ((x) >= '0' && (x) <= '9') macro
81 if (digit(p[n])) {
85 if (digit(*p)) buf[10] = *p++;
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/bits/
H A Dctype_inline.h68 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit
75 if (this->is(digit, *__low)) __m |= digit;
137 *__vec = __maskrune (*__lo, upper | lower | alpha | digit | xdigit
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/tests/data/ok/peg_tclparam-tcloo/
H A D3_peg_itself889 # "<digit>"
900 # "<digit>"
904 my si:next_str <digit>
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DNumberPrototype.cpp142 // exponent down to a minimum of -0x3fe adds an additional digit to the length
149 // Mapping from integers 0..35 to digit identifying this value, for radix 2..36.
170 // consider the least significant digit. For example, 124 in base 10 is even, because '4'
172 // E.g. in base 5, 124 represents (1 * 125 + 2 * 25 + 4 * 5). Since each digit in the value
176 // even or odd. For each digit of the fraction added, we should invert our idea of whether
177 // the number is odd if the new digit is odd.
179 // Also initialize digit to this value; for even radix values we only need track whether
180 // the last individual digit was odd.
184 uint32_t digit = integerPartIsOdd;
230 if (dComparePoint5 > 0 || (!dComparePoint5 && (radix & 1 ? isOddInOddRadix : digit
[all...]
H A DJSGlobalObjectFunctions.cpp176 int digit = -1; local
179 digit = c - '0';
181 digit = c - 'A' + 10;
183 digit = c - 'a' + 10;
185 if (digit >= radix)
187 return digit;
202 int digit = parseDigit(*p, radix); local
203 number += digit * radixMultiplier;
224 int digit = parseDigit(*p, radix); local
225 number += digit * radixMultiplie
292 int digit = parseDigit(data[p], radix); local
[all...]
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/setkey/
H A Dtoken.l89 digit [0-9]
100 decstring {digit}+
103 ipaddrmask {slash}{digit}{1,3}
104 name {letter}(({letter}|{digit}|{hyphen})*({letter}|{digit}))*
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmdata.c166 static char digit[] = "0123456789"; variable
282 Tm_data_t _tm_data_ = { format, lex, digit, days, sum, leap, zone };
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_so_pidigits.rb25 def safe?(digit)
26 digit == @z.extract(4)
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dcstring.c159 uint8_t digit; local
174 digit = (uint8_t)(uval % radix);
175 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
197 uint8_t digit; local
212 digit = (uint8_t)(uval % radix);
213 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dpunyref.c73 /* is undefined if flag is nonzero and digit d has no uppercase form. */
223 b, j, in, oldi, w, k, digit, t; local
260 digit = decode_digit(input[in++]);
261 if (digit >= base) return punycode_bad_input;
262 if (digit > (maxint - i) / w) return punycode_overflow;
263 i += digit * w;
266 if (digit < t) break;
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dasterisk.vim27 syn match asteriskPriority ",\zs[[:digit:]]\+\(+[[:alpha:]][[:alnum:]_]*\)\?\(([[:alpha:]][[:alnum:]_]*)\)\?\ze," contains=asteriskLabel
29 syn match asteriskPriority ",\zs[[:alpha:]][[:alnum:]_]*+[[:digit:]]\+\(([[:alpha:]][[:alnum:]_]*)\)\?\ze," contains=asteriskLabel
31 syn match asteriskPriority ",\zs[sn]\(+[[:digit:]]\+\)\?\(([[:alpha:]][[:alnum:]_]*)\)\?\ze," contains=asteriskLabel
35 syn match asteriskVar "\${_\{0,2}[[:alpha:]][[:alnum:]_]*\(:-\?[[:digit:]]\+\(:[[:digit:]]\+\)\?\)\?}"
/macosx-10.9.5/CPANInternal-140/Params-Validate/
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...]

Completed in 409 milliseconds

1234567891011