Searched refs:tmod (Results 1 - 5 of 5) sorted by relevance

/external/openssl/crypto/conf/
H A Dconf_mod.c294 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/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dmontgomery.c173 BIGNUM tmod; local
187 BN_init(&tmod);
188 tmod.d = buf;
189 tmod.dmax = 2;
190 tmod.neg = 0;
205 tmod.top = 0;
207 tmod.top = 1;
210 tmod.top = 2;
213 if (BN_mod_inverse(Ri, R, &tmod, ctx) == NULL) {
235 if (!BN_div(Ri, NULL, Ri, &tmod, ct
[all...]
/external/openssl/crypto/bn/
H A Dbn_mont.c368 BIGNUM tmod; local
371 BN_init(&tmod);
372 tmod.d=buf;
373 tmod.dmax=2;
374 tmod.neg=0;
387 tmod.top=0;
388 if ((buf[0] = mod->d[0])) tmod.top=1;
389 if ((buf[1] = mod->top>1 ? mod->d[1] : 0)) tmod.top=2;
391 if ((BN_mod_inverse(Ri,R,&tmod,ctx)) == NULL)
408 if (!BN_div(Ri,NULL,Ri,&tmod,ct
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dgen_x86_insn.py116 self.tmod = kwargs.pop("tmod", None)
128 "OPTM_%s" % self.tmod,
138 self.tmod == other.tmod and
146 self.tmod != other.tmod or
2272 operands=[Operand(type="Imm", size=16, tmod="Near", dest="JmpRel")])
2277 operands=[Operand(type="Imm", size=32, tmod="Near", dest="JmpRel")])
2283 operands=[Operand(type="Imm", size=32, tmod
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
H A Dnasm-parse.c1001 uintptr_t tmod = TARGETMOD_val; local
1005 op->targetmod = tmod;

Completed in 228 milliseconds