OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MP_OKAY
(Results
1 - 2
of
2
) sorted by null
/external/wpa_supplicant_8/src/tls/
libtommath.c
101
#define
MP_OKAY
0 /* ok result */
240
if ((res = mp_grow (c, max + 1)) !=
MP_OKAY
) {
303
return
MP_OKAY
;
318
if ((res = mp_grow (c, max)) !=
MP_OKAY
) {
370
return
MP_OKAY
;
396
return
MP_OKAY
;
545
if ((res = mp_init (&t)) !=
MP_OKAY
) {
549
if ((res = mp_mul (a, b, &t)) !=
MP_OKAY
) {
565
if ((res = mp_init (&t)) !=
MP_OKAY
) {
569
if ((res = mp_div (a, b, NULL, &t)) !=
MP_OKAY
) {
[
all
...]
bignum.c
35
if (mp_init((mp_int *) n) !=
MP_OKAY
) {
82
if (mp_to_unsigned_bin((mp_int *) n, buf) !=
MP_OKAY
) {
101
if (mp_read_unsigned_bin((mp_int *) n, (u8 *) buf, len) !=
MP_OKAY
) {
143
if (mp_add((mp_int *) a, (mp_int *) b, (mp_int *) c) !=
MP_OKAY
) {
161
if (mp_sub((mp_int *) a, (mp_int *) b, (mp_int *) c) !=
MP_OKAY
) {
179
if (mp_mul((mp_int *) a, (mp_int *) b, (mp_int *) c) !=
MP_OKAY
) {
199
!=
MP_OKAY
) {
219
!=
MP_OKAY
) {
Completed in 2609 milliseconds