OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DIGIT_BIT
(Results
1 - 5
of
5
) sorted by null
/external/dropbear/libtommath/mtest/
mpi.h
52
#define
DIGIT_BIT
MP_DIGIT_BIT
/external/dropbear/libtommath/
tommath.h
57
* A "mp_digit" must be able to hold
DIGIT_BIT
+ 1 bits
58
* A "mp_word" must be able to hold 2*
DIGIT_BIT
+ 1 bits
79
#define
DIGIT_BIT
60
99
#define
DIGIT_BIT
31
102
#define
DIGIT_BIT
28
126
#ifndef
DIGIT_BIT
127
#define
DIGIT_BIT
((int)((CHAR_BIT * sizeof(mp_digit) - 1))) /* bits per digit */
130
#define MP_DIGIT_BIT
DIGIT_BIT
131
#define MP_MASK ((((mp_digit)1)<<((mp_digit)
DIGIT_BIT
))-((mp_digit)1))
176
#define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 *
DIGIT_BIT
+ 1)
[
all
...]
/external/wpa_supplicant/
libtommath.c
49
#define
DIGIT_BIT
28
58
#define MP_MASK ((((mp_digit)1)<<((mp_digit)
DIGIT_BIT
))-((mp_digit)1))
89
#define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 *
DIGIT_BIT
+ 1))
218
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
233
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
469
(1 << ((CHAR_BIT * sizeof (mp_word)) - (2 *
DIGIT_BIT
)))) {
996
if (b >= (int)
DIGIT_BIT
) {
997
mp_rshd (c, b /
DIGIT_BIT
);
1000
/* shift any bit count <
DIGIT_BIT
*/
1001
D = (mp_digit) (b %
DIGIT_BIT
);
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c
72
#define
DIGIT_BIT
28
81
#define MP_MASK ((((mp_digit)1)<<((mp_digit)
DIGIT_BIT
))-((mp_digit)1))
112
#define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 *
DIGIT_BIT
+ 1))
258
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
273
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
509
(1 << ((CHAR_BIT * sizeof (mp_word)) - (2 *
DIGIT_BIT
)))) {
1044
if (b >= (int)
DIGIT_BIT
) {
1045
mp_rshd (c, b /
DIGIT_BIT
);
1048
/* shift any bit count <
DIGIT_BIT
*/
1049
D = (mp_digit) (b %
DIGIT_BIT
);
[
all
...]
/external/wpa_supplicant_8/src/tls/
libtommath.c
72
#define
DIGIT_BIT
28
81
#define MP_MASK ((((mp_digit)1)<<((mp_digit)
DIGIT_BIT
))-((mp_digit)1))
112
#define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 *
DIGIT_BIT
+ 1))
258
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
273
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
509
(1 << ((CHAR_BIT * sizeof (mp_word)) - (2 *
DIGIT_BIT
)))) {
1044
if (b >= (int)
DIGIT_BIT
) {
1045
mp_rshd (c, b /
DIGIT_BIT
);
1048
/* shift any bit count <
DIGIT_BIT
*/
1049
D = (mp_digit) (b %
DIGIT_BIT
);
[
all
...]
Completed in 192 milliseconds