Symbol: digit
bin/mined/mined1.c
1819
long digit; /* Next digit of number */
bin/mined/mined1.c
1825
digit = number / pow; /* Get next digit */
bin/mined/mined1.c
1826
if (digit == 0L && digit_seen == FALSE && i != 9)
bin/mined/mined1.c
1829
num_buf[i] = '0' + (char) digit;
bin/mined/mined1.c
1830
number -= digit * pow; /* Erase digit */
bin/pax/gen_subs.c
253
u_long digit;
bin/pax/gen_subs.c
267
if ((digit = (val & 0xf)) < 10)
bin/pax/gen_subs.c
268
*pt-- = '0' + (char)digit;
bin/pax/gen_subs.c
270
*pt-- = 'a' + (char)(digit - 10);
bin/pax/gen_subs.c
349
u_quad_t digit;
bin/pax/gen_subs.c
363
if ((digit = (val & 0xf)) < 10)
bin/pax/gen_subs.c
364
*pt-- = '0' + (char)digit;
bin/pax/gen_subs.c
366
*pt-- = 'a' + (char)(digit - 10);
crypto/libressl/crypto/bn/bn_bpsw.c
126
int digit, i;
crypto/libressl/crypto/bn/bn_bpsw.c
140
digit = BN_is_bit_set(k, i);
crypto/libressl/crypto/bn/bn_bpsw.c
142
if (!bn_lucas_step(U, V, digit, D, n, ctx))
crypto/libressl/crypto/bn/bn_bpsw.c
63
bn_lucas_step(BIGNUM *U, BIGNUM *V, int digit, const BIGNUM *D,
crypto/libressl/crypto/bn/bn_bpsw.c
92
if (digit == 1) {
crypto/libressl/crypto/ec/ec_lcl.h
507
void ec_GFp_nistp_recode_scalar_bits(unsigned char *sign, unsigned char *digit, unsigned char in);
crypto/libressl/crypto/ec/ec_mult.c
244
int digit = 0;
crypto/libressl/crypto/ec/ec_mult.c
250
digit = window_val - next_bit; /* -2^w < digit < 0 */
crypto/libressl/crypto/ec/ec_mult.c
263
digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
crypto/libressl/crypto/ec/ec_mult.c
267
digit = window_val; /* 0 < digit < 2^w */
crypto/libressl/crypto/ec/ec_mult.c
270
if (digit <= -bit || digit >= bit || !(digit & 1)) {
crypto/libressl/crypto/ec/ec_mult.c
274
window_val -= digit;
crypto/libressl/crypto/ec/ec_mult.c
286
r[j++] = sign * digit;
crypto/libressl/crypto/ec/ec_mult.c
639
int digit = wNAF[i][k];
crypto/libressl/crypto/ec/ec_mult.c
642
if (digit) {
crypto/libressl/crypto/ec/ec_mult.c
643
is_neg = digit < 0;
crypto/libressl/crypto/ec/ec_mult.c
646
digit = -digit;
crypto/libressl/crypto/ec/ec_mult.c
658
if (!EC_POINT_copy(r, val_sub[i][digit >> 1]))
crypto/libressl/crypto/ec/ec_mult.c
662
if (!EC_POINT_add(group, r, r, val_sub[i][digit >> 1], ctx))
games/hack/extern.h
192
int digit(int);
games/hack/hack.end.c
753
(digit(players[i][0]) && rank <= atoi(players[i])))
games/hack/hack.end.c
790
(digit(players[i][0]) && rank <= atoi(players[i]))) {
games/hack/hack.invent.c
465
while (digit(ilet) && allowcnt) {
games/hack/hack.invent.c
473
if (digit(ilet)) {
games/hack/hack.objnam.c
468
if (!cnt && digit(*bp)) {
games/hack/hack.objnam.c
470
while (digit(*bp))
games/hack/hack.objnam.c
481
while (digit(*bp))
games/hack/hack.objnam.c
494
while (digit(*p))
games/hack/hack.options.c
176
if (digit(*op)) {
games/hack/hack.options.c
178
while (digit(*op))
games/hack/hack.trap.c
481
} while (!digit(buf[0]) && (buf[0] != '-' || !digit(buf[1])));
games/hack/makedefs.c
219
} while (letter(ch) || digit(ch));
games/hack/makedefs.c
83
static int digit(char);
games/morse/morse.c
56
static const char *digit[] = {
games/morse/morse.c
642
if (strcmp(digit[i], s) == 0) {
include/xlocale/_ctype.h
126
XLOCALE_ISCTYPE(digit, _CTYPE_D)
lib/libc/gen/getcap.c
1015
digit = *bp - '0';
lib/libc/gen/getcap.c
1017
digit = 10 + *bp - 'a';
lib/libc/gen/getcap.c
1019
digit = 10 + *bp - 'A';
lib/libc/gen/getcap.c
1023
if (digit >= base)
lib/libc/gen/getcap.c
1026
n = n * base + digit;
lib/libc/gen/getcap.c
983
int base, digit;
lib/libc/inet/inet_addr.c
109
int digit;
lib/libc/inet/inet_addr.c
120
val = 0; base = 10; digit = 0;
lib/libc/inet/inet_addr.c
127
digit = 1 ;
lib/libc/inet/inet_addr.c
136
digit = 1;
lib/libc/inet/inet_addr.c
142
digit = 1;
lib/libc/inet/inet_addr.c
168
if (!digit)
lib/libc/inet/inet_network.c
54
int i, digit;
lib/libc/inet/inet_network.c
56
val = 0; base = 10; digit = 0;
lib/libc/inet/inet_network.c
58
digit = 1, base = 8, cp++;
lib/libc/inet/inet_network.c
67
digit = 1;
lib/libc/inet/inet_network.c
74
digit = 1;
lib/libc/inet/inet_network.c
79
if (!digit)
lib/libc/stdio/xprintf_int.c
265
const char *nalt, *digit;
lib/libc/stdio/xprintf_int.c
273
digit = __lowercase_hex;
lib/libc/stdio/xprintf_int.c
294
digit = __uppercase_hex;
lib/libc/stdio/xprintf_int.c
357
p = __ultoa(uu, pe, rdx, digit, ngrp, thousands_sep, grouping);
lib/libc/stdio/xprintf_int.c
359
p = __ujtoa(uu, pe, rdx, digit, ngrp, thousands_sep, grouping);
lib/libc/stdlib/a64l.c
16
int digit, i, value;
lib/libc/stdlib/a64l.c
22
digit = *s - '/' + 1;
lib/libc/stdlib/a64l.c
24
digit = *s - '0' + 2;
lib/libc/stdlib/a64l.c
26
digit = *s - 'A' + 12;
lib/libc/stdlib/a64l.c
28
digit = *s - 'a' + 38;
lib/libc/stdlib/a64l.c
30
value |= digit << shift;
lib/libc/stdlib/l64a.c
24
int digit;
lib/libc/stdlib/l64a.c
28
digit = v & 0x3f;
lib/libc/stdlib/l64a.c
29
if (digit < 2)
lib/libc/stdlib/l64a.c
30
*buffer = digit + '.';
lib/libc/stdlib/l64a.c
31
else if (digit < 12)
lib/libc/stdlib/l64a.c
32
*buffer = digit + '0' - 2;
lib/libc/stdlib/l64a.c
33
else if (digit < 38)
lib/libc/stdlib/l64a.c
34
*buffer = digit + 'A' - 12;
lib/libc/stdlib/l64a.c
36
*buffer = digit + 'a' - 38;
libexec/ftpd/ftpcmd.y
1011
int ret, dec, multby, digit;
libexec/ftpd/ftpcmd.y
1021
digit = dec%10;
libexec/ftpd/ftpcmd.y
1022
if (digit > 7) {
libexec/ftpd/ftpcmd.y
1026
ret += digit * multby;
libexec/getty/main.c
344
digit = 1;
libexec/getty/main.c
370
if (!(upper || lower || digit)) {
libexec/getty/main.c
526
crmod = digit = lower = upper = 0;
libexec/getty/main.c
589
digit = lower = upper = 0;
libexec/getty/main.c
593
digit = 1;
libexec/getty/main.c
85
static int crmod, digit, lower, upper;
stand/lib/qdivrem.c
143
digit q1, q2, q3, q4;
stand/lib/qdivrem.c
200
digit uj0, uj1, uj2;
stand/lib/qdivrem.c
68
shl(digit *p, int len, int sh)
stand/lib/qdivrem.c
89
digit *u, *v, *q;
stand/lib/qdivrem.c
90
digit v1, v2;
stand/lib/qdivrem.c
93
digit uspace[5], vspace[5], qspace[5];
sys/ddb/db_lex.c
172
int r, digit = 0;
sys/ddb/db_lex.c
193
digit = c - '0';
sys/ddb/db_lex.c
197
digit = c - 'a' + 10;
sys/ddb/db_lex.c
199
digit = c - 'A' + 10;
sys/ddb/db_lex.c
203
db_tok_number = db_tok_number * r + digit;
usr.sbin/makefs/cd9660.c
1029
int numbts, digit, digits, temp, powers, count;
usr.sbin/makefs/cd9660.c
1105
digit = (int)(temp / powers);
usr.sbin/makefs/cd9660.c
1106
temp = temp - digit * powers;
usr.sbin/makefs/cd9660.c
1108
"%d", digit);