HomeSort by relevance Sort by last modified time
    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 585 BIGNUM tmod; local
597 buf[0]=mod->d[0]; /* tmod = N mod word size */
600 BN_init(&tmod);
601 tmod.d=buf;
602 tmod.top = buf[0] != 0 ? 1 : 0;
603 tmod.dmax=2;
604 tmod.neg=0;
608 tmod.top=0;
609 if ((buf[0] = mod->d[0])) tmod.top=1;
610 if ((buf[1] = mod->top>1 ? mod->d[1] : 0)) tmod.top=2
    [all...]

Completed in 60 milliseconds