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

123456

/freebsd-10.2-release/contrib/libstdc++/config/os/qnx/qnx6.1/
H A Dctype_base.h50 static const mask digit = _DI; member in struct:ctype_base
/freebsd-10.2-release/contrib/libstdc++/config/os/solaris/solaris2.6/
H A Dctype_base.h51 static const mask digit = _ISDIGIT; member in struct:ctype_base
/freebsd-10.2-release/contrib/libstdc++/config/os/solaris/solaris2.7/
H A Dctype_base.h52 static const mask digit = _ISDIGIT; member in struct:ctype_base
/freebsd-10.2-release/contrib/libstdc++/config/os/tpf/
H A Dctype_base.h50 static const mask digit = _ISdigit; member in struct:ctype_base
/freebsd-10.2-release/contrib/libstdc++/config/os/uclibc/
H A Dctype_base.h58 static const mask digit = _ISdigit; member in struct:ctype_base
/freebsd-10.2-release/contrib/libstdc++/config/os/vxworks/
H A Dctype_base.h50 static const mask digit = _C_NUMBER; member in struct:ctype_base
/freebsd-10.2-release/contrib/libstdc++/config/os/windiss/
H A Dctype_base.h50 static const mask digit = _N; member in struct:ctype_base
/freebsd-10.2-release/lib/libc/quad/
H A Dqdivrem.c47 #define B (1 << HALF_BITS) /* digit base */
49 /* Combine two `digits' to make a single two-digit number. */
54 typedef unsigned short digit; typedef
56 typedef u_long digit; typedef
65 shl(digit *p, int len, int sh)
87 digit *u, *v, *q;
88 digit v1, v2;
91 digit uspace[5], vspace[5], qspace[5];
141 digit q1, q2, q3, q4;
169 * there is a complete four-digit quotien
[all...]
/freebsd-10.2-release/bin/pax/
H A Dgen_subs.c229 * for each valid digit, shift running value (tval) over to next digit
230 * and add next digit
261 u_long digit; local
270 * least significant digit). Keep shifting until conversion value goes
275 if ((digit = (val & 0xf)) < 10)
276 *pt-- = '0' + (char)digit;
278 *pt-- = 'a' + (char)(digit - 10);
326 * for each valid digit, shift running value (tval) over to next digit
358 u_quad_t digit; local
[all...]
/freebsd-10.2-release/sys/dev/sn/
H A Dif_sn_pccard.c137 uint8_t digit; local
141 for (i = 0, digit = 0; i < (ETHER_ADDR_LEN * 2); i++) {
143 digit |= str[i] - '0';
145 digit |= (str[i] - 'a') + 10;
147 digit |= (str[i] - 'A') + 10;
149 return (0); /* Bogus digit!! */
153 enet[i >> 1] = digit;
154 digit = 0;
156 digit <<= 4;
/freebsd-10.2-release/sys/libkern/
H A Dqdivrem.c44 #define B (1 << HALF_BITS) /* digit base */
46 /* Combine two `digits' to make a single two-digit number. */
51 typedef unsigned short digit; typedef
53 typedef u_long digit; typedef
62 __shl(register digit *p, register int len, register int sh)
84 digit *u, *v, *q;
85 register digit v1, v2;
88 digit uspace[5], vspace[5], qspace[5];
138 digit q1, q2, q3, q4;
166 * there is a complete four-digit quotien
[all...]
/freebsd-10.2-release/usr.bin/csup/
H A Drcstokenizer.l45 digit [0-9]
/freebsd-10.2-release/sys/ddb/
H A Ddb_lex.c172 int r, digit = 0; local
193 digit = c - '0';
197 digit = c - 'a' + 10;
199 digit = c - 'A' + 10;
203 db_tok_number = db_tok_number * r + digit;
/freebsd-10.2-release/contrib/ntp/libntp/
H A Dvint64ops.c49 u_char digit; local
86 digit = *src - '0';
88 digit = *src - 'A' + 10;
90 digit = *src - 'a' + 10;
93 if (digit >= base)
97 res.Q_s = res.Q_s * base + digit;
112 M_ADD(res.D_s.hi, res.D_s.lo, 0, digit);
/freebsd-10.2-release/lib/libstand/
H A Dqdivrem.c46 #define B (1 << HALF_BITS) /* digit base */
48 /* Combine two `digits' to make a single two-digit number. */
55 typedef unsigned short digit; typedef
63 shl(digit *p, int len, int sh)
85 digit *u, *v, *q;
86 digit v1, v2;
89 digit uspace[5], vspace[5], qspace[5];
139 digit q1, q2, q3, q4;
167 * there is a complete four-digit quotient at &qspace[1] when
196 digit uj
[all...]
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_ar.c581 unsigned int digit, base; local
591 digit = *p - '0';
592 while (*p >= '0' && digit < base && char_cnt-- > 0) {
593 if (l>limit || (l == limit && digit > last_digit_limit)) {
597 l = (l * base) + digit;
598 digit = *++p - '0';
607 unsigned int base, digit; local
616 digit = *p - '0';
617 while (*p >= '0' && digit < base && char_cnt-- > 0) {
618 if (l > limit || (l == limit && digit > last_digit_limi
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/wind/
H A Dpunycode.c49 digit(unsigned n) function
150 out[o++] = digit(t + ((q - t) % (base - t)));
155 out[o++] = digit(q);
/freebsd-10.2-release/crypto/openssl/crypto/ec/
H A Dec_mult.c182 * with the exception that the most significant digit may be only
183 * w-1 zeros away from that next non-zero digit.
224 r = OPENSSL_malloc(len + 1); /* modified wNAF may be one digit longer
237 int digit = 0; local
245 digit = window_val - next_bit; /* -2^w < digit < 0 */
252 * positive digit here will decrease the total length of
256 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
260 digit
648 int digit = wNAF[i][k]; local
[all...]
H A Decp_nistputil.c131 * significant bit), and recodes them into a signed digit for use in fast point
144 * shown to be the basis of various signed-digit representations that do have
171 * (a signed-digit encoding independently discovered by various researchers
182 * signed bits into a signed digit:
186 * The sign-alternating property implies that the resulting digit values are
191 * to the wNAF): a direct computation obtains the recoded digit from the
195 * recoded digit to *sign (0 for positive, 1 for negative) and *digit (absolute
198 * compute the least significant recoded digit, given that there's no bit b_-1,
203 unsigned char *digit, unsigne
202 ec_GFp_nistp_recode_scalar_bits(unsigned char *sign, unsigned char *digit, unsigned char in) argument
[all...]
/freebsd-10.2-release/contrib/libstdc++/config/os/bsd/darwin/
H A Dctype_inline.h65 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit
72 if (this->is(digit, *__low)) __m |= digit;
128 *__vec = __maskrune (*__lo, upper | lower | alpha | digit | xdigit
/freebsd-10.2-release/contrib/libstdc++/config/os/bsd/freebsd/
H A Dctype_inline.h65 *__vec = __maskrune (*__low, upper | lower | alpha | digit | xdigit
72 if (this->is(digit, *__low)) __m |= digit;
128 *__vec = __maskrune (*__lo, upper | lower | alpha | digit | xdigit
/freebsd-10.2-release/sbin/setkey/
H A Dtoken.l71 digit [0-9]
82 decstring {digit}+
85 ipaddrmask {slash}{digit}{1,3}
86 name {letter}(({letter}|{digit}|{hyphen})*({letter}|{digit}))*
/freebsd-10.2-release/contrib/ntp/ntpd/
H A Drefclock_wwv.c122 * sync pulse has been acquired. DSYNC is set when the units digit has
158 #define CMPERR 0x1 /* digit or misc bit compare error */
159 #define LOWERR 0x2 /* low bit or digit amplitude or SNR */
195 #define BTHR 1000. /* digit threshold */
196 #define BSNR 3. /* digit likelihood threshold (dB) */
197 #define BCMP 3 /* digit compare threshold */
215 #define TCONST 16 /* data bit/digit time constant */
294 #define DECIM9 4 /* BCD digit 0-9 */
295 #define DECIM6 5 /* BCD digit 0-6 */
296 #define DECIM3 6 /* BCD digit
467 int digit; /* current clock digit */ member in struct:decvec
[all...]
/freebsd-10.2-release/contrib/gcclibs/libcpp/
H A Dmakeucnid.c32 digit = 4, enumerator in enum:__anon1262
107 /* Read UnicodeData.txt and set the 'digit' flag, and
141 flags[codepoint] |= digit;
251 last_flag & digit ? "DIG" : " 0",
/freebsd-10.2-release/contrib/binutils/bfd/
H A Dbfd.c1101 unsigned int digit;
1103 digit = *string;
1104 if (ISDIGIT (digit))
1105 digit = digit - '0';
1106 else if (ISALPHA (digit))
1107 digit = TOUPPER (digit) - 'A' + 10;
1110 if (digit >= (unsigned int) base)
1112 if (value > cutoff || (value == cutoff && digit > cutli
1098 unsigned int digit; local
[all...]

Completed in 222 milliseconds

123456