Searched refs:z2 (Results 1 - 22 of 22) sorted by relevance

/freebsd-10-stable/crypto/openssl/crypto/ec/
H A Dec2_mult.c126 BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2,
141 if (!group->meth->field_mul(group, x1, x1, z2, ctx))
164 * Compute the x, y affine coordinates from the point (x1, z1) (x2, z2)
174 BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2,
182 BN_zero(z2);
186 if (BN_is_zero(z2)) {
189 if (!BN_GF2m_add(z2, x, y))
205 if (!group->meth->field_mul(group, t3, z1, z2, ctx))
212 if (!group->meth->field_mul(group, z2, z2,
125 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
173 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
269 BIGNUM *x1, *x2, *z1, *z2; local
[all...]
H A Decp_nistp224.c934 const felem z2)
941 /* ftmp2 = z2^2 */
942 felem_square(tmp, z2);
945 /* ftmp4 = z2^3 */
946 felem_mul(tmp, ftmp2, z2);
949 /* ftmp4 = z2^3*y1 */
953 /* ftmp2 = z2^2*x1 */
958 * We'll assume z2 = 1 (special case z2 = 0 is handled later)
961 /* ftmp4 = z2
931 point_add(felem x3, felem y3, felem z3, const felem x1, const felem y1, const felem z1, const int mixed, const felem x2, const felem y2, const felem z2) argument
1343 felem z1, z2, x_in, y_in, x_out, y_out; local
[all...]
H A Decp_nistp256.c1235 * point_add calcuates (x1, y1, z1) + (x2, y2, z2)
1239 * adapted for mixed addition (z2 = 1, or z2 = 0 for the point at infinity).
1249 const smallfelem y2, const smallfelem z2)
1259 z2_is_zero = smallfelem_is_zero(z2);
1268 /* ftmp2 = z2z2 = z2**2 */
1269 smallfelem_square(tmp, z2);
1281 /* ftmp5 = z1 + z2 */
1283 felem_small_sum(ftmp5, z2);
1286 /* ftmp5 = (z1 + z2)**
1246 point_add(felem x3, felem y3, felem z3, const felem x1, const felem y1, const felem z1, const int mixed, const smallfelem x2, const smallfelem y2, const smallfelem z2) argument
1411 point_add_small(smallfelem x3, smallfelem y3, smallfelem z3, smallfelem x1, smallfelem y1, smallfelem z1, smallfelem x2, smallfelem y2, smallfelem z2) argument
1929 felem z1, z2, x_in, y_in; local
[all...]
H A Decp_nistp521.c1138 * point_add calcuates (x1, y1, z1) + (x2, y2, z2)
1142 * adapted for mixed addition (z2 = 1, or z2 = 0 for the point at infinity).
1151 const felem z2)
1158 z2_is_zero = felem_is_zero(z2);
1165 /* ftmp2 = z2z2 = z2**2 */
1166 felem_square(tmp, z2);
1173 /* ftmp5 = z1 + z2 */
1175 felem_sum64(ftmp5, z2);
1178 /* ftmp5 = (z1 + z2)**
1148 point_add(felem x3, felem y3, felem z3, const felem x1, const felem y1, const felem z1, const int mixed, const felem x2, const felem y2, const felem z2) argument
1738 felem z1, z2, x_in, y_in, x_out, y_out; local
[all...]
/freebsd-10-stable/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros168 bits32 z0, z1, z2;
172 z2 = a2;
178 z2 = a1<<negCount;
184 z2 = a1;
190 z2 = a0<<negCount;
194 z2 = ( count == 64 ) ? a0 : ( a0 != 0 );
200 z2 |= ( a2 != 0 );
202 *z2Ptr = z2;
247 bits32 z0, z1, z2;
250 z2
[all...]
/freebsd-10-stable/lib/libc/softfloat/bits64/
H A Dsoftfloat-macros243 bits64 z0, z1, z2;
247 z2 = a2;
253 z2 = a1<<negCount;
259 z2 = a1;
265 z2 = a0<<negCount;
269 z2 = ( count == 128 ) ? a0 : ( a0 != 0 );
275 z2 |= ( a2 != 0 );
277 *z2Ptr = z2;
322 bits64 z0, z1, z2;
325 z2
[all...]
/freebsd-10-stable/lib/libc/iconv/
H A Dcitrus_csmapper.c189 struct zone z1, z2; local
200 z2.begin = _bcs_skip_ws_len(z1.end, &len);
203 z2.end = _bcs_skip_nonws_len(z2.begin, &len);
205 /* z1 : dst name, z2 : norm */
209 "%.*s", (int)(z2.end-z2.begin), z2.begin);
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dvdev_queue.c314 const zio_t *z2 = x2; local
316 if (z1->io_offset < z2->io_offset)
318 if (z1->io_offset > z2->io_offset)
321 if (z1 < z2)
323 if (z1 > z2)
350 const zio_t *z2 = x2; local
352 if (z1->io_timestamp < z2->io_timestamp)
354 if (z1->io_timestamp > z2->io_timestamp)
357 if (z1->io_offset < z2->io_offset)
359 if (z1->io_offset > z2
[all...]
H A Dtrim_map.c132 const zio_t *z2 = x2; local
134 if (z1->io_offset < z2->io_offset) {
135 if (z1->io_offset + z1->io_size > z2->io_offset)
139 if (z1->io_offset > z2->io_offset) {
140 if (z1->io_offset < z2->io_offset + z2->io_size)
H A Dzio.c584 const zio_t *z2 = x2; local
586 if (z1->io_queued_timestamp < z2->io_queued_timestamp)
588 if (z1->io_queued_timestamp > z2->io_queued_timestamp)
591 if (z1->io_bookmark.zb_objset < z2->io_bookmark.zb_objset)
593 if (z1->io_bookmark.zb_objset > z2->io_bookmark.zb_objset)
596 if (z1->io_bookmark.zb_object < z2->io_bookmark.zb_object)
598 if (z1->io_bookmark.zb_object > z2->io_bookmark.zb_object)
601 if (z1->io_bookmark.zb_level < z2->io_bookmark.zb_level)
603 if (z1->io_bookmark.zb_level > z2->io_bookmark.zb_level)
606 if (z1->io_bookmark.zb_blkid < z2
[all...]
/freebsd-10-stable/crypto/openssh/
H A Dfe25519.c220 fe25519 z2; local
232 /* 2 */ fe25519_square(&z2,x);
233 /* 4 */ fe25519_square(&t1,&z2);
236 /* 11 */ fe25519_mul(&z11,&z9,&z2);
287 fe25519 z2; local
298 /* 2 */ fe25519_square(&z2,x);
299 /* 4 */ fe25519_square(&t,&z2);
302 /* 11 */ fe25519_mul(&z11,&z9,&z2);
H A Dsmult_curve25519_ref.c182 unsigned int z2[32]; local
194 /* 2 */ square(z2,z);
195 /* 4 */ square(t1,z2);
198 /* 11 */ mult(z11,z9,z2);
/freebsd-10-stable/lib/libmp/
H A Dmpasbn.c365 MINT *z1, *z2, *z3; local
375 z2 = _itom("msqrt", 0);
379 _mdiv("msqrt", nmp, x, z1, z2, c);
380 _madd("msqrt", x, z1, z2);
381 _sdiv("msqrt", z2, 2, x, &i, c);
386 _msub("msqrt", nmp, z1, z2);
387 _movem("msqrt", z2, rmp);
392 _mfree("msqrt", z2);
/freebsd-10-stable/crypto/openssl/engines/ccgost/
H A Dgost_sign.c167 BIGNUM *u = NULL, *v = NULL, *z1 = NULL, *z2 = NULL; local
187 z2 = BN_CTX_get(ctx);
191 if(!tmp || !v || !q2 || !z1 || !z2 || !tmp2 || !tmp3 || !u) {
205 BN_mod_mul(z2, tmp, v, dsa->p, ctx);
207 BN_mod_exp(tmp2, dsa->pub_key, z2, dsa->p, ctx);
H A Dgost2001.c266 BIGNUM *md = NULL, *e = NULL, *R = NULL, *v = NULL, *z1 = NULL, *z2 = local
282 z2 = BN_CTX_get(ctx);
287 if(!order || !e || !z1 || !z2 || !tmp || !X || !R || !v) {
325 || !BN_mod_mul(z2, tmp, v, order, ctx)) {
335 BN_print_fp(stderr, z2);
342 if (!EC_POINT_mul(group, C, z1, pub_key, z2, ctx)) {
/freebsd-10-stable/contrib/unbound/services/
H A Dlocalzone.h181 * @param z2: zone 2
184 int local_zone_cmp(const void* z1, const void* z2);
H A Dlocalzone.c101 local_zone_cmp(const void* z1, const void* z2) argument
106 struct local_zone* b = (struct local_zone*)z2;
/freebsd-10-stable/contrib/gdtoa/
H A Dmisc.c281 ULong z2; local
329 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
330 carry = z2 >> 16;
331 Storeinc(xc, z2, z);
340 z2 = *xc;
344 Storeinc(xc, z, z2);
345 z2 = (*x++ >> 16) * y + (*xc & 0xffff) + carry;
346 carry = z2 >> 16;
349 *xc = z2;
/freebsd-10-stable/contrib/sqlite3/
H A Dshell.c382 char *z2 = sqlite3_win32_utf8_to_mbcs_v2(z1, 0); local
384 fputs(z2, out);
385 sqlite3_free(z2);
484 const char *z2 = z; local
485 while( *z2 ){ z2++; }
486 return 0x3fffffff & (int)(z2 - z);
H A Dsqlite3.c19236 const char *z2 = z; local
19239 if( !sqlite3Isdigit(*z2) ) z2++;
19241 if( parseHhMmSs(z2, &tx) ) break;
100653 const char *z2; local
103476 const unsigned char *z2; local
103629 const char *z2; local
103648 const char *z2; local
130111 const char *z1, *z2; local
142529 char *z2 = sqlite3_mprintf("%s%s", *pz, z); local
150275 char *z, *z2; local
150724 const char *z2 = 0; local
153455 char *z2 = fts3HashKey(*(Fts3HashElem **)rhs); local
168210 rbuStrCompare(const char *z1, const char *z2) argument
181931 const char *z2; local
181949 const char *z2; local
[all...]
/freebsd-10-stable/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c190 const char *z2 = z; local
191 while( *z2 ){ z2++; }
192 return 0x3fffffff & (int)(z2 - z);
/freebsd-10-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c13874 const char *z2 = z; local
13877 if( !sqlite3Isdigit(*z2) ) z2++;
13879 if( parseHhMmSs(z2, &tx) ) break;
20705 const char *z2 = z; local
20707 while( *z2 ){ z2++; }
20708 return 0x3fffffff & (int)(z2 - z);
81897 const char *z2; local
84232 const unsigned char *z2; local
84376 const char *z2; local
84396 const char *z2; local
88409 xferCompatibleCollation(const char *z1, const char *z2) argument
114925 char *z2 = sqlite3_mprintf("%s%s", *pz, z); local
121231 char *z, *z2; local
121645 const char *z2 = 0; local
123671 char *z2 = fts3HashKey(*(Fts3HashElem **)rhs); local
[all...]

Completed in 1113 milliseconds