OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tmod
(Results
1 - 2
of
2
) sorted by null
/external/openssl/crypto/conf/
conf_mod.c
294
CONF_MODULE *
tmod
= NULL;
local
299
tmod
= OPENSSL_malloc(sizeof(CONF_MODULE));
300
if (
tmod
== NULL)
303
tmod
->dso = dso;
304
tmod
->name = BUF_strdup(name);
305
tmod
->init = ifunc;
306
tmod
->finish = ffunc;
307
tmod
->links = 0;
309
if (!sk_CONF_MODULE_push(supported_modules,
tmod
))
311
OPENSSL_free(
tmod
);
325
CONF_MODULE *
tmod
;
local
[
all
...]
/external/openssl/crypto/bn/
bn_mont.c
426
BIGNUM
tmod
;
local
429
BN_init(&
tmod
);
430
tmod
.d=buf;
431
tmod
.dmax=2;
432
tmod
.neg=0;
445
tmod
.top=0;
446
if ((buf[0] = mod->d[0]))
tmod
.top=1;
447
if ((buf[1] = mod->top>1 ? mod->d[1] : 0))
tmod
.top=2;
449
if ((BN_mod_inverse(Ri,R,&
tmod
,ctx)) == NULL)
466
if (!BN_div(Ri,NULL,Ri,&
tmod
,ctx)) goto err
[
all
...]
Completed in 1429 milliseconds