HomeSort by relevance Sort by last modified time
    Searched defs:z1 (Results 1 - 8 of 8) sorted by null

  /netvirt/usr/src/common/crypto/ecc/
ec2_mont.c 84 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in
89 gf2m_Madd(const mp_int *x, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2,
102 MP_CHECKOK(group->meth->field_mul(z1, x2, z1, group->meth));
103 MP_CHECKOK(group->meth->field_mul(x1, z1, &t2, group->meth));
104 MP_CHECKOK(group->meth->field_add(z1, x1, z1, group->meth));
105 MP_CHECKOK(group->meth->field_sqr(z1, z1, group->meth))
199 mp_int x1, x2, z1, z2; local
    [all...]
ecp_jac.c 94 mp_int z1, z2, z3; local
96 MP_DIGITS(&z1) = 0;
99 MP_CHECKOK(mp_init(&z1, FLAG(px)));
114 MP_CHECKOK(group->meth->field_div(NULL, pz, &z1, group->meth));
115 MP_CHECKOK(group->meth->field_sqr(&z1, &z2, group->meth));
116 MP_CHECKOK(group->meth->field_mul(&z1, &z2, &z3, group->meth));
122 mp_clear(&z1);
  /netvirt/usr/src/common/openssl/crypto/des/
qud_cksm.c 79 DES_LONG z0,z1,t0,t1; local
97 z1=Q_B0((*seed)[4])|Q_B1((*seed)[5])|Q_B2((*seed)[6])|Q_B3((*seed)[7]);
117 t1=z1;
121 z1=((t0*((t1+NOISE)&0xffffffffL))&0xffffffffL)%0x7fffffffL;
129 (*lp).b = z1;
133 *lp++ = z1;
  /netvirt/usr/src/common/openssl/crypto/ec/
ec2_mult.c 107 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery
113 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1,
127 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err;
128 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err;
129 if (!BN_GF2m_add(z1, z1, x1)) goto err;
130 if (!group->meth->field_sqr(group, z1, z1, ctx)) goto err
218 BIGNUM *x1, *x2, *z1, *z2; local
    [all...]
  /netvirt/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
LogDistribution.java 161 long z1 = getZeroBucketValue(); local
163 cmp = (z1 < z2 ? -1 : (z1 > z2 ? 1 : 0));
LinearDistribution.java 239 long z1 = getZeroBucketValue(); local
241 cmp = (z1 < z2 ? -1 : (z1 > z2 ? 1 : 0));
  /netvirt/usr/src/lib/libsqlite/test/
threadtest1.c 232 char z1[30], z2[30]; local
234 sprintf(z1, "%d", i*2);
236 db_check(zFilename, "readback", az, z1, z2, 0);
  /netvirt/usr/src/uts/common/fs/zfs/
vdev_queue.c 64 const zio_t *z1 = x1; local
67 if (z1->io_deadline < z2->io_deadline)
69 if (z1->io_deadline > z2->io_deadline)
72 if (z1->io_offset < z2->io_offset)
74 if (z1->io_offset > z2->io_offset)
77 if (z1 < z2)
79 if (z1 > z2)
88 const zio_t *z1 = x1; local
91 if (z1->io_offset < z2->io_offset)
93 if (z1->io_offset > z2->io_offset
    [all...]

Completed in 4619 milliseconds