Home
last modified time | relevance | path

Searched refs:z1 (Results 1 – 25 of 37) sorted by relevance

12

/freebsd-12.1/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros77 z1 = a1;
88 *z1Ptr = z1;
113 z1 = a1;
132 *z1Ptr = z1;
173 z1 = a1;
203 *z1Ptr = z1;
276 bits32 z1;
433 add64( z0, more1, 0, z1, &z0, &z1 );
465 add64( z1, more2, 0, z2, &z1, &z2 );
467 add64( z0, more1, 0, z1, &z0, &z1 );
[all …]
/freebsd-12.1/lib/libc/softfloat/bits64/
H A Dsoftfloat-macros114 z1 = a1;
130 *z1Ptr = z1;
152 z1 = a1;
163 *z1Ptr = z1;
188 z1 = a1;
207 *z1Ptr = z1;
351 bits64 z1;
508 add128( z0, more1, 0, z1, &z0, &z1 );
540 add128( z1, more2, 0, z2, &z1, &z2 );
542 add128( z0, more1, 0, z1, &z0, &z1 );
[all …]
/freebsd-12.1/contrib/bearssl/src/hash/
H A Dghash_ctmul64.c37 uint64_t z0, z1, z2, z3; in bmul64() local
48 z1 = (x0 * y1) ^ (x1 * y0) ^ (x2 * y3) ^ (x3 * y2); in bmul64()
52 z1 &= (uint64_t)0x2222222222222222; in bmul64()
55 return z0 | z1 | z2 | z3; in bmul64()
100 uint64_t z0, z1, z2, z0h, z1h, z2h; in br_ghash_ctmul64() local
122 z1 = bmul64(y1, h1); in br_ghash_ctmul64()
127 z2 ^= z0 ^ z1; in br_ghash_ctmul64()
135 v2 = z1 ^ z2h; in br_ghash_ctmul64()
H A Dghash_pclmul.c220 __m128i z0, z1, z2, z3; \
221 z1 = pclmulqdq11(kw, kw); \
223 z0 = _mm_shuffle_epi32(z1, 0x0E); \
225 SL_256(z0, z1, z2, z3); \
226 REDUCE_F128(z0, z1, z2, z3); \
227 PBK(z0, z1, dw, dx); \
H A Dghash_ctmul32.c53 uint32_t z0, z1, z2, z3; in bmul32() local
64 z1 = (x0 * y1) ^ (x1 * y0) ^ (x2 * y3) ^ (x3 * y2); in bmul32()
68 z1 &= (uint32_t)0x22222222; in bmul32()
71 return z0 | z1 | z2 | z3; in bmul32()
H A Dghash_ctmul.c169 uint64_t z0, z1, z2, z3; in bmul() local
181 z1 = MUL(x0, y1) ^ MUL(x1, y0) ^ MUL(x2, y3) ^ MUL(x3, y2); in bmul()
185 z1 &= (uint64_t)0x2222222222222222; in bmul()
188 z = z0 | z1 | z2 | z3; in bmul()
/freebsd-12.1/crypto/openssl/crypto/des/
H A Dqud_cksm.c30 DES_LONG z0, z1, t0, t1; in DES_quad_cksum() local
42 z1 = Q_B0((*seed)[4]) | Q_B1((*seed)[5]) | Q_B2((*seed)[6]) | in DES_quad_cksum()
59 t1 = z1; in DES_quad_cksum()
63 z1 = ((t0 * ((t1 + NOISE) & 0xffffffffL)) & 0xffffffffL) % in DES_quad_cksum()
72 *lp++ = z1; in DES_quad_cksum()
/freebsd-12.1/sys/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/
H A Du4.h21 z6 = _mm_shuffle_epi32(z1, 0xaa);
22 z11 = _mm_shuffle_epi32(z1, 0xff);
24 z1 = _mm_shuffle_epi32(z1, 0x55);
36 orig1 = z1;
88 z1 = orig1;
113 y9 = z1;
149 z1 = _mm_xor_si128(z1, y1);
151 z1 = _mm_xor_si128(z1, r1);
229 z1 = _mm_xor_si128(z1, y1);
231 z1 = _mm_xor_si128(z1, r1);
[all …]
H A Du8.h11 __m256i z1 = _mm256_set1_epi32(x[5]); variable
24 __m256i orig1 = z1;
88 z1 = orig1;
113 y9 = z1;
149 z1 = _mm256_xor_si256(z1, y1);
151 z1 = _mm256_xor_si256(z1, r1);
162 y5 = _mm256_add_epi32(y5, z1);
229 z1 = _mm256_xor_si256(z1, y1);
231 z1 = _mm256_xor_si256(z1, r1);
250 y2 = _mm256_add_epi32(y2, z1);
[all …]
/freebsd-12.1/lib/libc/iconv/
H A Dcitrus_csmapper.c191 struct zone z1, z2; in parse_line() local
196 z1.begin = _bcs_skip_ws_len(_region_head(r), &len); in parse_line()
199 z1.end = _bcs_skip_nonws_len(z1.begin, &len); in parse_line()
202 z2.begin = _bcs_skip_ws_len(z1.end, &len); in parse_line()
209 "%.*s", (int)(z1.end-z1.begin), z1.begin); in parse_line()
/freebsd-12.1/lib/msun/src/
H A Ds_cimag.c37 const double_complex z1 = { .f = z }; in cimag() local
39 return (IMAGPART(z1)); in cimag()
H A Ds_cimagf.c37 const float_complex z1 = { .f = z }; in cimagf() local
39 return (IMAGPART(z1)); in cimagf()
H A Ds_cimagl.c37 const long_double_complex z1 = { .f = z }; in cimagl() local
39 return (IMAGPART(z1)); in cimagl()
/freebsd-12.1/lib/libmp/
H A Dmpasbn.c375 MINT *z1, *z2, *z3; in mp_msqrt() local
384 z1 = _itom("msqrt", 0); in mp_msqrt()
389 _mdiv("msqrt", nmp, x, z1, z2, c); in mp_msqrt()
390 _madd("msqrt", x, z1, z2); in mp_msqrt()
395 _mult("msqrt", x, x, z1, c); in mp_msqrt()
396 _msub("msqrt", nmp, z1, z2); in mp_msqrt()
401 _mfree("msqrt", z1); in mp_msqrt()
/freebsd-12.1/crypto/openssl/crypto/ec/
H A Decp_nistp224.c940 felem_square(tmp, z1);
944 felem_mul(tmp, ftmp, z1);
971 z1_is_zero = felem_is_zero(z1);
981 felem_mul(tmp, z1, z2);
985 felem_assign(ftmp5, z1);
1316 felem_inv(z2, z1);
1318 felem_reduce(z1, tmp);
1319 felem_mul(tmp, x_in, z1);
1329 felem_mul(tmp, z1, z2);
1330 felem_reduce(z1, tmp);
[all …]
H A Decp_nistp521.c1162 z1_is_zero = felem_is_zero(z1);
1166 felem_square(tmp, z1);
1179 felem_assign(ftmp5, z1);
1208 felem_scalar(ftmp5, z1, 2);
1230 felem_mul(tmp, ftmp, z1);
1780 felem_inv(z2, z1);
1782 felem_reduce(z1, tmp);
1783 felem_mul(tmp, x_in, z1);
1793 felem_mul(tmp, z1, z2);
1794 felem_reduce(z1, tmp);
[all …]
H A Decp_nistp256.c1245 felem_shrink(small3, z1);
1271 felem_assign(ftmp5, z1);
1302 felem_assign(ftmp5, z1);
1408 smallfelem_expand(felem_z1, z1);
1927 felem z1, z2, x_in, y_in;
1939 felem_inv(z2, z1);
1941 felem_reduce(z1, tmp);
1942 felem_mul(tmp, x_in, z1);
1952 felem_mul(tmp, z1, z2);
1953 felem_reduce(z1, tmp);
[all …]
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dvdev_queue.c325 const zio_t *z1 = (const zio_t *)x1; in vdev_queue_offset_compare() local
328 int cmp = AVL_CMP(z1->io_offset, z2->io_offset); in vdev_queue_offset_compare()
333 return (AVL_PCMP(z1, z2)); in vdev_queue_offset_compare()
356 const zio_t *z1 = x1; in vdev_queue_timestamp_compare() local
359 if (z1->io_timestamp < z2->io_timestamp) in vdev_queue_timestamp_compare()
361 if (z1->io_timestamp > z2->io_timestamp) in vdev_queue_timestamp_compare()
364 if (z1->io_offset < z2->io_offset) in vdev_queue_timestamp_compare()
366 if (z1->io_offset > z2->io_offset) in vdev_queue_timestamp_compare()
369 if (z1 < z2) in vdev_queue_timestamp_compare()
371 if (z1 > z2) in vdev_queue_timestamp_compare()
H A Dtrim_map.c124 const zio_t *z1 = x1; in trim_map_zio_compare() local
127 if (z1->io_offset < z2->io_offset) { in trim_map_zio_compare()
128 if (z1->io_offset + z1->io_size > z2->io_offset) in trim_map_zio_compare()
132 if (z1->io_offset > z2->io_offset) { in trim_map_zio_compare()
133 if (z1->io_offset < z2->io_offset + z2->io_size) in trim_map_zio_compare()
H A Dzio.c601 const zio_t *z1 = x1; in zio_bookmark_compare() local
604 if (z1->io_bookmark.zb_objset < z2->io_bookmark.zb_objset) in zio_bookmark_compare()
606 if (z1->io_bookmark.zb_objset > z2->io_bookmark.zb_objset) in zio_bookmark_compare()
609 if (z1->io_bookmark.zb_object < z2->io_bookmark.zb_object) in zio_bookmark_compare()
611 if (z1->io_bookmark.zb_object > z2->io_bookmark.zb_object) in zio_bookmark_compare()
614 if (z1->io_bookmark.zb_level < z2->io_bookmark.zb_level) in zio_bookmark_compare()
616 if (z1->io_bookmark.zb_level > z2->io_bookmark.zb_level) in zio_bookmark_compare()
619 if (z1->io_bookmark.zb_blkid < z2->io_bookmark.zb_blkid) in zio_bookmark_compare()
621 if (z1->io_bookmark.zb_blkid > z2->io_bookmark.zb_blkid) in zio_bookmark_compare()
624 if (z1 < z2) in zio_bookmark_compare()
[all …]
/freebsd-12.1/contrib/unbound/services/
H A Dauthzone.h624 int auth_zone_cmp(const void* z1, const void* z2);
627 int auth_data_cmp(const void* z1, const void* z2);
630 int auth_xfer_cmp(const void* z1, const void* z2);
H A Dlocalzone.h225 int local_zone_cmp(const void* z1, const void* z2);
/freebsd-12.1/contrib/bearssl/src/symcipher/
H A Daes_ct.c45 uint32_t z0, z1, z2, z3, z4, z5, z6, z7, z8, z9; in br_aes_ct_bitslice_Sbox() local
142 z1 = t37 & y6; in br_aes_ct_bitslice_Sbox()
183 t66 = z1 ^ t63; in br_aes_ct_bitslice_Sbox()
H A Daes_ct64.c45 uint64_t z0, z1, z2, z3, z4, z5, z6, z7, z8, z9; in br_aes_ct64_bitslice_Sbox() local
142 z1 = t37 & y6; in br_aes_ct64_bitslice_Sbox()
183 t66 = z1 ^ t63; in br_aes_ct64_bitslice_Sbox()
/freebsd-12.1/contrib/gcc/config/rs6000/
H A Ddarwin.md396 return \"b %z1\";
433 case 0: return \"b %z1\";

12