HomeSort by: relevance | last modified time | path
    Searched refs:digit (Results 1 - 25 of 321) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/regress/lib/libc/ieeefp/testfloat/
writeHex.c 72 int digit; local
74 digit = ( a>>4 ) & 0xF;
75 if ( 9 < digit ) digit += 'A' - ( '0' + 10 );
76 fputc( '0' + digit, stream );
77 digit = a & 0xF;
78 if ( 9 < digit ) digit += 'A' - ( '0' + 10 );
79 fputc( '0' + digit, stream );
85 int digit; local
101 int digit; local
    [all...]
  /src/lib/libc/stdlib/
l64a.c 37 int digit; local
46 digit = (int)(v & 0x3f);
48 if (digit < 2)
49 *s = digit + '.';
50 else if (digit < 12)
51 *s = digit + '0' - 2;
52 else if (digit < 38)
53 *s = digit + 'A' - 12;
55 *s = digit + 'a' - 38;
a64l.c 23 long value, digit, shift; local
32 digit = *s - '.';
34 digit = *s - '0' + 2;
36 digit = *s - 'A' + 12;
38 digit = *s - 'a' + 38;
40 value |= digit << shift;
  /src/common/lib/libc/quad/
qdivrem.c 52 #define B ((int)1 << (unsigned int)HALF_BITS) /* digit base */
54 /* Combine two `digits' to make a single two-digit number. */
59 typedef unsigned short digit; typedef
61 typedef u_int digit; typedef
64 static void shl(digit *p, int len, int sh);
78 digit *u, *v, *q;
79 digit v1, v2;
82 digit uspace[5], vspace[5], qspace[5];
120 u[1] = (digit)HHALF(tmp.ul[H]);
121 u[2] = (digit)LHALF(tmp.ul[H])
    [all...]
  /src/lib/libc/inet/
inet_network.c 68 int digit, base; local
73 val = 0; base = 10; digit = 0;
75 digit = 1, base = 8, cp++;
77 digit = 0, base = 16, cp++;
85 digit = 1;
91 digit = 1;
96 if (!digit)
  /src/external/bsd/ntp/dist/libntp/
dolfptoa.c 44 /* can add another digit */
45 u_int32 digit; local
47 digit = fpi;
49 digit -= (fpi << 3) + (fpi << 1); /* i*10 */
50 *--cp = (u_char)digit;
71 u_int32 digit, tmph, tmpl; local
79 digit = 0;
80 M_LSHIFT(digit, fpv);
81 tmph = digit;
83 M_LSHIFT(digit, fpv)
    [all...]
  /src/external/bsd/libbind/dist/inet/
inet_addr.c 117 int digit; local
128 val = 0; base = 10; digit = 0;
135 digit = 1 ;
144 digit = 1;
150 digit = 1;
174 * Did we get a valid digit?
176 if (!digit)
inet_network.c 61 int digit; local
64 val = 0; base = 10; digit = 0;
66 digit = 1, base = 8, cp++;
75 digit = 1;
82 digit = 1;
87 if (!digit)
  /src/crypto/dist/ipsec-tools/src/racoon/
prsa_tok.l 49 digit [0-9]
50 octet (([01]?{digit}?{digit})|((2([0-4]{digit}))|(25[0-5])))
82 {digit}+ { prsalval.num = atol(prsatext); return NUMBER; }
  /src/external/bsd/nsd/dist/simdzone/src/generic/
number.h 22 const uint8_t digit = (uint8_t)data[count] - '0'; local
23 sum = sum * 10 + digit;
24 if (digit > 9)
42 const uint8_t digit = (uint8_t)data[count] - '0'; local
43 sum = sum * 10 + digit;
44 if (digit > 9)
62 const uint8_t digit = (uint8_t)data[count] - '0'; local
63 sum = sum * 10 + digit;
64 if (digit > 9)
82 const uint8_t digit = (uint8_t)data[count] - '0' local
    [all...]
ttl.h 50 const uint64_t digit = (uint8_t)data[count] - '0'; local
53 if (digit < 10) {
54 number = number * 10 + digit;
78 if (digit > 9)
84 number = digit;
  /src/common/lib/libc/inet/
inet_addr.c 133 int digit; local
144 val = 0; base = 10; digit = 0;
151 digit = 1 ;
160 digit = 1;
166 digit = 1;
190 * Did we get a valid digit?
192 if (!digit)
  /src/games/morse/
morse.c 44 static const char digit[][6] = { variable
196 for (size_t i = 0; i < __arraycount(digit); i++)
197 if (strcmp(digit[i], s) == 0) {
226 show(digit[c - '0']);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/generic/
ctype_base.h 47 static const mask digit = 1 << 3; member in struct:ctype_base
54 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/generic/
ctype_base.h 47 static const mask digit = 1 << 3; member in struct:ctype_base
54 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
  /src/external/bsd/pdisk/dist/
io.c 244 int digit; local
250 digit = BAD_DIGIT;
254 digit = BAD_DIGIT;
259 digit = 0;
264 digit = c - '0';
266 digit = 10 + (c - 'A');
268 digit = 10 + (c - 'a');
270 digit = BAD_DIGIT;
272 if (digit >= base) {
275 ret_value = ret_value * base + digit;
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_intern.c 19 * with the exception that the most significant digit may be only
20 * w-1 zeros away from that next non-zero digit.
59 * Modified wNAF may be one digit longer than binary representation
70 int digit = 0; local
78 digit = window_val - next_bit; /* -2^w < digit < 0 */
85 * so using a positive digit here will decrease
89 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
93 digit = window_val; /* 0 < digit < 2^w *
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_intern.c 19 * with the exception that the most significant digit may be only
20 * w-1 zeros away from that next non-zero digit.
61 * Modified wNAF may be one digit longer than binary representation
74 int digit = 0; local
82 digit = window_val - next_bit; /* -2^w < digit < 0 */
89 * so using a positive digit here will decrease
93 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
97 digit = window_val; /* 0 < digit < 2^w *
    [all...]
rsaz_exp_x2.c 46 static ossl_inline void put_digit52(uint8_t *out, int out_len, uint64_t digit);
443 uint64_t digit = 0;
448 digit <<= 8;
449 digit += (uint64_t)(in[in_len - 1]);
451 return digit;
471 uint64_t digit;
473 memcpy(&digit, in_str, sizeof(digit));
474 out[0] = digit & DIGIT_MASK;
476 memcpy(&digit, in_str, sizeof(digit))
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_intern.c 19 * with the exception that the most significant digit may be only
20 * w-1 zeros away from that next non-zero digit.
61 * Modified wNAF may be one digit longer than binary representation
74 int digit = 0; local
82 digit = window_val - next_bit; /* -2^w < digit < 0 */
89 * so using a positive digit here will decrease
93 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
97 digit = window_val; /* 0 < digit < 2^w *
    [all...]
  /src/external/bsd/elftosb/dist/common/
StSRecordFile.cpp 92 int StSRecordFile::hexDigitToInt(char digit)
94 if (isdigit(digit))
95 return digit - '0';
96 else if (digit >= 'a' && digit <= 'f')
97 return 10 + digit - 'a';
98 else if (digit >= 'A' && digit <= 'F')
99 return 10 + digit - 'A';
106 //! is not a valid hex digit
    [all...]
  /src/sbin/nvmectl/
humanize_bignum.c 48 static mp_digit digit = 5UL; local
49 static const BIGNUM bn = { &digit, 1, 1, 0 };
56 static mp_digit digit = 10UL; local
57 static const BIGNUM bn = { &digit, 1, 1, 0 };
64 static mp_digit digit = 50UL; local
65 static const BIGNUM bn = { &digit, 1, 1, 0 };
72 static mp_digit digit = 100UL; local
73 static const BIGNUM bn = { &digit, 1, 1, 0 };
80 static mp_digit digit = 995UL; local
81 static const BIGNUM bn = { &digit, 1, 1, 0 }
88 static mp_digit digit = 1000UL; local
96 static mp_digit digit = 1024UL; local
    [all...]
  /src/external/bsd/flex/dist/examples/manual/
pascal.lex 19 digit [0-9]
21 alpha_num ({alpha}|{digit})
24 unsigned_integer {digit}+
26 exponent e[+-]?{digit}+
  /src/crypto/dist/ipsec-tools/src/libipsec/
policy_token.l 72 digit [0-9]
87 usec {dot}{digit}{1,6}
92 decstring {digit}+
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32/
ctype_base.h 53 static const mask digit = 1 << 3; member in struct:ctype_base
60 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>