Searched refs:z1 (Results 1 - 24 of 24) sorted by relevance

/freebsd-11-stable/lib/msun/src/
H A Ds_cimag.c35 const double_complex z1 = { .f = z }; local
37 return (IMAGPART(z1));
H A Ds_cimagf.c35 const float_complex z1 = { .f = z }; local
37 return (IMAGPART(z1));
H A Ds_cimagl.c35 const long_double_complex z1 = { .f = z }; local
37 return (IMAGPART(z1));
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Dqud_cksm.c80 DES_LONG z0, z1, t0, t1; local
103 z1 = Q_B0((*seed)[4]) | Q_B1((*seed)[5]) | Q_B2((*seed)[6]) |
120 t1 = z1;
124 z1 = ((t0 * ((t1 + NOISE) & 0xffffffffL)) & 0xffffffffL) %
134 (*lp).b = z1;
138 *lp++ = z1;
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec2_mult.c119 * Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery
126 BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2,
143 if (!group->meth->field_mul(group, z1, z1, x2, ctx))
145 if (!group->meth->field_mul(group, t2, x1, z1, ctx))
147 if (!BN_GF2m_add(z1, z1, x1))
149 if (!group->meth->field_sqr(group, z1, z1, ct
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.c918 const felem x1, const felem y1, const felem z1,
954 /* ftmp = z1^2 */
955 felem_square(tmp, z1);
958 /* ftmp3 = z1^3 */
959 felem_mul(tmp, ftmp, z1);
962 /* tmp = z1^3*y2 */
966 /* ftmp3 = z1^3*y2 - z2^3*y1 */
971 /* tmp = z1^2*x2 */
975 /* ftmp = z1^2*x2 - z2^2*x1 */
986 z1_is_zero = felem_is_zero(z1);
917 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
1329 felem z1, z2, x_in, y_in, x_out, y_out; local
[all...]
H A Decp_nistp256.c1223 * point_add calcuates (x1, y1, z1) + (x2, y2, z2)
1235 const felem x1, const felem y1, const felem z1,
1244 felem_shrink(small3, z1);
1249 /* ftmp = z1z1 = z1**2 */
1269 /* ftmp5 = z1 + z2 */
1270 felem_assign(ftmp5, z1);
1274 /* ftmp5 = (z1 + z2)**2 - (z1z1 + z2z2) = 2z1z2 */
1301 felem_assign(ftmp5, z1);
1326 /* ftmp = z1 * z1z1 */
1330 /* s2 = tmp = y2 * z1**
1234 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
1399 point_add_small(smallfelem x3, smallfelem y3, smallfelem z3, smallfelem x1, smallfelem y1, smallfelem z1, smallfelem x2, smallfelem y2, smallfelem z2) argument
1917 felem z1, z2, x_in, y_in; local
[all...]
H A Decp_nistp521.c1129 * point_add calcuates (x1, y1, z1) + (x2, y2, z2)
1140 const felem x1, const felem y1, const felem z1,
1148 z1_is_zero = felem_is_zero(z1);
1151 /* ftmp = z1z1 = z1**2 */
1152 felem_square(tmp, z1);
1164 /* ftmp5 = z1 + z2 */
1165 felem_assign(ftmp5, z1);
1169 /* ftmp5 = (z1 + z2)**2 - z1z1 - z2z2 = 2*z1z2 */
1194 felem_scalar(ftmp5, z1, 2);
1215 /* ftmp = z1 * z1z
1139 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
1729 felem z1, z2, x_in, y_in, x_out, y_out; local
[all...]
/freebsd-11-stable/lib/libc/iconv/
H A Dcitrus_csmapper.c189 struct zone z1, z2; local
194 z1.begin = _bcs_skip_ws_len(_region_head(r), &len);
197 z1.end = _bcs_skip_nonws_len(z1.begin, &len);
200 z2.begin = _bcs_skip_ws_len(z1.end, &len);
205 /* z1 : dst name, z2 : norm */
207 "%.*s", (int)(z1.end-z1.begin), z1.begin);
/freebsd-11-stable/lib/libmp/
H A Dmpasbn.c365 MINT *z1, *z2, *z3; local
374 z1 = _itom("msqrt", 0);
379 _mdiv("msqrt", nmp, x, z1, z2, c);
380 _madd("msqrt", x, z1, z2);
385 _mult("msqrt", x, x, z1, c);
386 _msub("msqrt", nmp, z1, z2);
391 _mfree("msqrt", z1);
/freebsd-11-stable/crypto/openssl/engines/ccgost/
H A Dgost_sign.c167 BIGNUM *u = NULL, *v = NULL, *z1 = NULL, *z2 = NULL; local
186 z1 = BN_CTX_get(ctx);
191 if(!tmp || !v || !q2 || !z1 || !z2 || !tmp2 || !tmp3 || !u) {
203 BN_mod_mul(z1, sig->s, v, dsa->q, ctx);
206 BN_mod_exp(tmp, dsa->g, z1, dsa->p, ctx);
H A Dgost2001.c266 BIGNUM *md = NULL, *e = NULL, *R = NULL, *v = NULL, *z1 = NULL, *z2 = local
281 z1 = BN_CTX_get(ctx);
287 if(!order || !e || !z1 || !z2 || !tmp || !X || !R || !v) {
323 || !BN_mod_mul(z1, sig->s, v, order, ctx)
333 BN_print_fp(stderr, z1);
342 if (!EC_POINT_mul(group, C, z1, pub_key, z2, ctx)) {
/freebsd-11-stable/contrib/unbound/services/
H A Dauthzone.h629 int auth_zone_cmp(const void* z1, const void* z2);
632 int auth_data_cmp(const void* z1, const void* z2);
635 int auth_xfer_cmp(const void* z1, const void* z2);
H A Dlocalzone.h228 * @param z1: zone 1
232 int local_zone_cmp(const void* z1, const void* z2);
H A Dauthzone.c307 int auth_zone_cmp(const void* z1, const void* z2) argument
311 struct auth_zone* a = (struct auth_zone*)z1;
324 int auth_data_cmp(const void* z1, const void* z2) argument
326 struct auth_data* a = (struct auth_data*)z1;
334 int auth_xfer_cmp(const void* z1, const void* z2) argument
338 struct auth_xfer* a = (struct auth_xfer*)z1;
H A Dlocalzone.c105 local_zone_cmp(const void* z1, const void* z2) argument
109 struct local_zone* a = (struct local_zone*)z1;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dvdev_queue.c325 const zio_t *z1 = (const zio_t *)x1; local
328 int cmp = AVL_CMP(z1->io_offset, z2->io_offset);
333 return (AVL_PCMP(z1, z2));
356 const zio_t *z1 = x1; local
359 if (z1->io_timestamp < z2->io_timestamp)
361 if (z1->io_timestamp > z2->io_timestamp)
364 if (z1->io_offset < z2->io_offset)
366 if (z1->io_offset > z2->io_offset)
369 if (z1 < z2)
371 if (z1 > z
[all...]
H A Dtrim_map.c124 const zio_t *z1 = x1; local
127 if (z1->io_offset < z2->io_offset) {
128 if (z1->io_offset + z1->io_size > z2->io_offset)
132 if (z1->io_offset > z2->io_offset) {
133 if (z1->io_offset < z2->io_offset + z2->io_size)
H A Dzio.c601 const zio_t *z1 = x1; local
604 if (z1->io_bookmark.zb_objset < z2->io_bookmark.zb_objset)
606 if (z1->io_bookmark.zb_objset > z2->io_bookmark.zb_objset)
609 if (z1->io_bookmark.zb_object < z2->io_bookmark.zb_object)
611 if (z1->io_bookmark.zb_object > z2->io_bookmark.zb_object)
614 if (z1->io_bookmark.zb_level < z2->io_bookmark.zb_level)
616 if (z1->io_bookmark.zb_level > z2->io_bookmark.zb_level)
619 if (z1->io_bookmark.zb_blkid < z2->io_bookmark.zb_blkid)
621 if (z1->io_bookmark.zb_blkid > z2->io_bookmark.zb_blkid)
624 if (z1 < z
[all...]
/freebsd-11-stable/contrib/groff/src/preproc/pic/
H A Dcommon.cpp84 const position &z0, const position &z1,
90 position zml = (z0 + z1) / 2;
109 double phi1 = atan2(z1.y - M.y, z1.x - M.x);
113 double dist1 = hypot(z1 - M1) / sqrt(z1 * z1);
118 ellipse_arc(cent, zm, z1, dim, lt);
83 ellipse_arc(const position &cent, const position &z0, const position &z1, const distance &dim, const line_type &lt) argument
/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c81896 const char *z1; local
84375 char *z1; local
84395 u8 *z1; local
88409 xferCompatibleCollation(const char *z1, const char *z2) argument
121644 const char *z1; local
123670 char *z1 = fts3HashKey(*(Fts3HashElem **)lhs); local
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dshell.c467 char *z1 = sqlite3_vmprintf(zFormat, ap); local
468 char *z2 = sqlite3_win32_utf8_to_mbcs_v2(z1, 0);
469 sqlite3_free(z1);
H A Dsqlite3.c78797 sqlite3ExplainBreakpoint(const char *z1, const char *z2) argument
115579 const char *z1; local
118880 char *z1; local
118899 char *z1; local
179135 const char *z1; local
181888 char *z1 = fts3HashKey(*(Fts3HashElem **)lhs); local
202746 rbuStrCompare(const char *z1, const char *z2) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/netpgpverify/
H A Dt_netpgpverify.sh1311 /Oz5ZSBGO1VbWrGXw/z1/PXrYJeaJYtaNMgDwwC4NIPmra2aFCw1W/BceIRQvr5F

Completed in 1117 milliseconds