HomeSort by: relevance | last modified time | path
    Searched defs:recp (Results 1 - 9 of 9) sorted by relevancy

  /src/tests/crypto/libcrypto/bn/div/
divtest.c 27 BN_RECP_CTX *recp = BN_RECP_CTX_new(); local
37 BN_RECP_CTX_set(recp, b, ctx);
40 if (BN_div_recp(c, d, a, recp, ctx) != 1)
  /src/external/bsd/nvi/dist/common/
recover.c 638 char *name, *p, *t, *recp, *pathp; local
653 recp = pathp = NULL;
745 if (recp == NULL || rec_mtime < sb.st_mtime) {
746 p = recp;
748 if ((recp = strdup(recpath)) == NULL) {
750 recp = p;
755 free(recp);
756 recp = p;
773 if (recp == NULL) {
794 free(recp);
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_exp.c 181 BN_RECP_CTX recp; local
203 BN_RECP_CTX_init(&recp);
216 if (BN_RECP_CTX_set(&recp, aa, ctx) <= 0)
219 if (BN_RECP_CTX_set(&recp, m, ctx) <= 0)
233 if (!BN_mod_mul_reciprocal(aa, val[0], val[0], &recp, ctx))
237 if (((val[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul_reciprocal(val[i], val[i - 1], aa, &recp, ctx))
264 if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
293 if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
298 if (!BN_mod_mul_reciprocal(r, r, val[wvalue >> 1], &recp, ctx))
310 BN_RECP_CTX_free(&recp);
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_exp.c 181 BN_RECP_CTX recp; local
203 BN_RECP_CTX_init(&recp);
216 if (BN_RECP_CTX_set(&recp, aa, ctx) <= 0)
219 if (BN_RECP_CTX_set(&recp, m, ctx) <= 0)
233 if (!BN_mod_mul_reciprocal(aa, val[0], val[0], &recp, ctx))
238 !BN_mod_mul_reciprocal(val[i], val[i - 1], aa, &recp, ctx))
264 if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
293 if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
298 if (!BN_mod_mul_reciprocal(r, r, val[wvalue >> 1], &recp, ctx))
311 BN_RECP_CTX_free(&recp);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_exp.c 182 BN_RECP_CTX recp; local
204 BN_RECP_CTX_init(&recp);
217 if (BN_RECP_CTX_set(&recp, aa, ctx) <= 0)
220 if (BN_RECP_CTX_set(&recp, m, ctx) <= 0)
234 if (!BN_mod_mul_reciprocal(aa, val[0], val[0], &recp, ctx))
239 !BN_mod_mul_reciprocal(val[i], val[i - 1], aa, &recp, ctx))
257 if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
287 if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
292 if (!BN_mod_mul_reciprocal(r, r, val[wvalue >> 1], &recp, ctx))
305 BN_RECP_CTX_free(&recp);
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
bntest.c 279 BN_RECP_CTX *recp = NULL; local
287 || !TEST_ptr(recp = BN_RECP_CTX_new()))
303 if (!(TEST_true(BN_RECP_CTX_set(recp, b, ctx))
304 && TEST_true(BN_div_recp(d, c, a, recp, ctx))
318 BN_RECP_CTX_free(recp);
  /src/crypto/external/bsd/openssl/dist/test/
bntest.c 260 BN_RECP_CTX *recp = NULL; local
268 || !TEST_ptr(recp = BN_RECP_CTX_new()))
284 if (!(TEST_true(BN_RECP_CTX_set(recp, b, ctx))
285 && TEST_true(BN_div_recp(d, c, a, recp, ctx))
299 BN_RECP_CTX_free(recp);
  /src/crypto/external/bsd/openssl.old/dist/test/
bntest.c 264 BN_RECP_CTX *recp = NULL; local
272 || !TEST_ptr(recp = BN_RECP_CTX_new()))
288 if (!(TEST_true(BN_RECP_CTX_set(recp, b, ctx))
289 && TEST_true(BN_div_recp(d, c, a, recp, ctx))
303 BN_RECP_CTX_free(recp);
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_printf.c 1276 dt_printf_getint(dtrace_hdl_t *dtp, const dtrace_recdesc_t *recp,
1284 addr = (uintptr_t)buf + recp->dtrd_offset;
1289 if (addr & (recp->dtrd_alignment - 1))
1292 switch (recp->dtrd_size) {
1370 const dtrace_recdesc_t *recp = recs; local
1459 if (dt_printf_getint(dtp, recp++, nrecs--, buf,
1468 dtp, recp++, nrecs--, buf, len, &prec) == -1)
1517 rec = recp++;
1624 return ((int)(recp - recs));
1629 const dtrace_recdesc_t *recp, uint_t nrecs, const void *buf, size_t len
2007 const dtrace_recdesc_t *recp = &agg->dtagd_rec[0]; local
    [all...]

Completed in 42 milliseconds