OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DIGIT_BIT
(Results
1 - 3
of
3
) 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_8/src/tls/
libtommath.c
76
#define
DIGIT_BIT
60
82
#define
DIGIT_BIT
28
92
#define MP_MASK ((((mp_digit)1)<<((mp_digit)
DIGIT_BIT
))-((mp_digit)1))
123
#define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 *
DIGIT_BIT
+ 1))
271
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
286
u = *tmpc >> ((mp_digit)
DIGIT_BIT
);
522
(1 << ((CHAR_BIT * sizeof (mp_word)) - (2 *
DIGIT_BIT
)))) {
1060
if (b >= (int)
DIGIT_BIT
) {
1061
mp_rshd (c, b /
DIGIT_BIT
);
1064
/* shift any bit count <
DIGIT_BIT
*/
[
all
...]
Completed in 65 milliseconds