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

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/ia64/
H A Dreloc-bad.l2 .*:[[:digit:]]+: (Error|Warning): .* GPREL14 .*
3 .*:[[:digit:]]+: (Error|Warning): .* LTOFF14 .*
4 .*:[[:digit:]]+: (Error|Warning): .* LTOFF32[LM]SB .*
5 .*:[[:digit:]]+: (Error|Warning): .* LTOFF64[LM]SB .*
6 .*:[[:digit:]]+: (Error|Warning): .* PLTOFF14 .*
7 .*:[[:digit:]]+: (Error|Warning): .* PLTOFF32[LM]SB .*
8 .*:[[:digit:]]+: (Error|Warning): .* FPTR14 .*
9 .*:[[:digit:]]+: (Error|Warning): .* FPTR22 .*
10 .*:[[:digit:]]+: (Error|Warning): .* PCREL14 .*
11 .*:[[:digit
[all...]
H A Dpound.l8 [[:space:]]*[[:digit:]]+[[:space:]]+\.explicit
9 [[:space:]]*[[:digit:]]+[[:space:]]+
10 [[:space:]]*[[:digit:]]+[[:space:]]+\.global esym#
11 [[:space:]]*[[:digit:]]+[[:space:]]+
12 [[:space:]]*[[:digit:]]+[[:space:]]+\.section \.extra#, "a", @progbits
13 [[:space:]]*[[:digit:]]+[[:space:]]+
14 [[:space:]]*[[:digit:]]+[[:space:]]+\.text
15 [[:space:]]*[[:digit:]]+[[:space:]]+
16 [[:space:]]*[[:digit:]]+[[:space:]]+ break 0
17 [[:space:]]*[[:digit
[all...]
H A DrotX.l2 .*.s:[[:digit:]]+: Error: [Nn]umber of elements must be positive
3 .*.s:[[:digit:]]+: Error: [Nn]umber of elements must be positive
4 .*.s:[[:digit:]]+: Error: [Bb]ad or irreducible absolute expression
/netbsd-current/regress/lib/libc/ieeefp/testfloat/
H A DwriteHex.c72 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...]
/netbsd-current/lib/libc/stdlib/
H A Dl64a.c37 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;
H A Da64l.c23 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;
/netbsd-current/common/lib/libc/quad/
H A Dqdivrem.c52 #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)LHAL
[all...]
/netbsd-current/lib/libc/inet/
H A Dinet_network.c68 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)
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Ddolfptoa.c46 /* can add another digit */
47 u_int32 digit; local
49 digit = fpi;
51 digit -= (fpi << 3) + (fpi << 1); /* i*10 */
52 *--cp = (u_char)digit;
73 u_int32 digit, tmph, tmpl; local
81 digit = 0;
82 M_LSHIFT(digit, fpv);
83 tmph = digit;
85 M_LSHIFT(digit, fp
[all...]
/netbsd-current/external/bsd/libbind/dist/inet/
H A Dinet_addr.c117 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)
H A Dinet_network.c61 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)
/netbsd-current/external/bsd/ntp/dist/lib/isc/
H A Dinet_aton.c101 int digit; local
112 val = 0; base = 10; digit = 0;
119 digit = 1;
134 digit = 1;
139 digit = 1;
163 * Did we get a valid digit?
165 if (!digit)
/netbsd-current/crypto/dist/ipsec-tools/src/racoon/
H A Dprsa_tok.l49 digit [0-9]
50 octet (([01]?{digit}?{digit})|((2([0-4]{digit}))|(25[0-5])))
82 {digit}+ { prsalval.num = atol(prsatext); return NUMBER; }
/netbsd-current/common/lib/libc/inet/
H A Dinet_addr.c133 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)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/generic/
H A Dctype_base.h47 static const mask digit = 1 << 3; member in struct:ctype_base
54 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/os/generic/
H A Dctype_base.h47 static const mask digit = 1 << 3; member in struct:ctype_base
54 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
/netbsd-current/external/bsd/pdisk/dist/
H A Dio.c244 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...]
/netbsd-current/external/bsd/elftosb/dist/common/
H A DStSRecordFile.cpp92 int StSRecordFile::hexDigitToInt(char digit) argument
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...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_intern.c19 * 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
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_intern.c19 * 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
[all...]
H A Drsaz_exp_x2.c46 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_st
[all...]
/netbsd-current/sbin/nvmectl/
H A Dhumanize_bignum.c48 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,
88 static mp_digit digit = 1000UL; local
96 static mp_digit digit = 1024UL; local
[all...]
/netbsd-current/external/bsd/flex/dist/examples/manual/
H A Dpascal.lex19 digit [0-9]
21 alpha_num ({alpha}|{digit})
24 unsigned_integer {digit}+
26 exponent e[+-]?{digit}+
/netbsd-current/crypto/dist/ipsec-tools/src/libipsec/
H A Dpolicy_token.l72 digit [0-9]
87 usec {dot}{digit}{1,6}
92 decstring {digit}+
/netbsd-current/external/lgpl3/gmp/dist/mpn/generic/
H A Dget_str.c146 after the last digit of the result string. Complexity is O(un^2); intended
181 mp_limb_t frac, digit;
195 umul_ppmm (digit, frac, frac, 10);
196 *s++ = digit;
205 umul_ppmm (digit, frac, frac, 10);
206 *s++ = digit;
210 umul_ppmm (digit, frac, frac, 10);
211 *s++ = digit;
215 umul_ppmm (digit, frac, frac, 10);
216 *s++ = digit;
180 mp_limb_t frac, digit; local
272 mp_limb_t digit; local
[all...]

Completed in 192 milliseconds

1234567891011>>