Home
last modified time | relevance | path

Searched refs:zl (Results 1 – 25 of 32) sorted by relevance

12

/freebsd/contrib/bearssl/src/ec/
H A Dec_p256_m62.c338 uint64_t x, f, cc, w, s, zh, zl; in f256_montymul()
352 zl = _umul128(b[0], x, &zh); in f256_montymul()
353 k = _addcarry_u64(0, t[0], zl, &zl); in f256_montymul()
355 f = zl & MASK52; in f256_montymul()
356 cc = (zl >> 52) | (zh << 12); in f256_montymul()
358 zl = _umul128(b[1], x, &zh); in f256_montymul()
359 k = _addcarry_u64(0, t[1], zl, &zl); in f256_montymul()
361 k = _addcarry_u64(0, cc, zl, &zl); in f256_montymul()
363 k = _addcarry_u64(0, f << 44, zl, &zl); in f256_montymul()
365 t[0] = zl & MASK52; in f256_montymul()
[all …]
H A Dec_p256_m64.c366 uint64_t zl, zh, ffl, ffh; in f256_montymul()
385 zl = _umul128(b[0], x, &zh); in f256_montymul()
386 f = zl; in f256_montymul()
389 zl = _umul128(b[1], x, &zh); in f256_montymul()
390 k = _addcarry_u64(0, zl, t0, &zl); in f256_montymul()
392 k = _addcarry_u64(0, zl, f << 32, &zl); in f256_montymul()
394 t0 = zl; in f256_montymul()
397 zl = _umul128(b[2], x, &zh); in f256_montymul()
398 k = _addcarry_u64(0, zl, t1, &zl); in f256_montymul()
400 k = _addcarry_u64(0, zl, f >> 32, &zl); in f256_montymul()
[all …]
/freebsd/lib/msun/src/
H A Ds_rsqrtf.c75 float h, ph, pl, rh, rl, y, zh, zl; in rsqrtf() local
137 _MUL(x, y, zh, zl); in rsqrtf()
138 _XMUL(zh, zl, h, 0, ph, pl); in rsqrtf()
147 _MUL(x, y, zh, zl); in rsqrtf()
148 _XMUL(zh, zl, h, 0, ph, pl); in rsqrtf()
153 _MUL(x, y, zh, zl); in rsqrtf()
154 _XMUL(zh, zl, h, 0, ph, pl); in rsqrtf()
H A Ds_rsqrt.c75 double h, ph, pl, rh, rl, y, zh, zl; in rsqrt() local
135 _MUL(x, y, zh, zl); in rsqrt()
136 _XMUL(zh, zl, h, 0, ph, pl); in rsqrt()
139 _MUL(x, y, zh, zl); in rsqrt()
140 _XMUL(zh, zl, h, 0, ph, pl); in rsqrt()
H A Ds_rsqrtl.c78 long double h, ph, pl, rh, rl, y, zh, zl; in rsqrtl() local
123 _MUL(u.e, y, zh, zl); in rsqrtl()
124 _XMUL(zh, zl, h, 0, ph, pl); in rsqrtl()
146 long double h, ph, pl, rh, rl, y, zh, zl; in rsqrtl() local
191 _MUL(x, y, zh, zl); in rsqrtl()
192 _XMUL(zh, zl, -h, 0, ph, pl); in rsqrtl()
H A Ds_asinpif.c70 float ax, hi, lo, xh, xl, y, zh, zl; in asinpif() local
105 _SQRT(2 * y, zh, zl); in asinpif()
106 _XMUL(xh, xl, zh, zl, hi, lo); in asinpif()
122 float ax, hi, lo, xh, xl, y, zh, zl; in acospif() local
147 _SQRT(2 * y, zh, zl); in acospif()
148 _XMUL(xh, xl, zh, zl, hi, lo); in acospif()
H A Ds_asinpi.c121 double ax, hi, lo, xh, xl, y, zh, zl; in asinpi() local
155 _SQRT(2 * y, zh, zl); in asinpi()
156 _XMUL(xh, xl, zh, zl, hi, lo); in asinpi()
205 double ax, hi, lo, xh, xl, y, zh, zl; in acospi() local
229 _SQRT(2 * y, zh, zl); in acospi()
230 _XMUL(xh, xl, zh, zl, hi, lo); in acospi()
H A Dmath_private.h521 #define _XADD(xh, xl, yh, yl, zh, zl) \ argument
523 typeof(zl) __s1, __s2, __s3, __s4, __s5, __s6; \
527 _FAST2SUM(__s5, __s6 + __s4, zh, zl); \
560 #define _SQRT(x, zh, zl) \ argument
562 typeof(zl) s, ph, pl, xh, xl, yh, yl; \
568 _XADD(xh, xl, -ph, -pl, zh, zl); \
571 pl += s * zl; \
572 _XADD(yh, yl, ph, pl, zh, zl); \
H A Ds_atanpif.c77 float ax, hi, lo, xh, xl, y, zh, zl; in atanpif() local
H A Ds_atanpi.c146 double ax, hi, lo, xh, xl, y, zh, zl; in atanpi() local
/freebsd/contrib/bearssl/src/int/
H A Di15_muladd.c148 uint32_t mw, zl, xw, nxw; in br_i15_muladd_small() local
151 zl = MUL15(mw, q) + cc; in br_i15_muladd_small()
152 cc = zl >> 15; in br_i15_muladd_small()
153 zl &= 0x7FFF; in br_i15_muladd_small()
155 nxw = xw - zl; in br_i15_muladd_small()
H A Di32_muladd.c110 uint64_t zl; in br_i32_muladd_small() local
113 zl = MUL(mw, q) + cc; in br_i32_muladd_small()
114 cc = (uint32_t)(zl >> 32); in br_i32_muladd_small()
115 zw = (uint32_t)zl; in br_i32_muladd_small()
H A Di31_muladd.c130 uint64_t zl; in br_i31_muladd_small() local
133 zl = MUL31(mw, q) + cc; in br_i31_muladd_small()
134 cc = (uint32_t)(zl >> 31); in br_i31_muladd_small()
135 zw = (uint32_t)zl & (uint32_t)0x7FFFFFFF; in br_i31_muladd_small()
/freebsd/lib/msun/ld128/
H A Ds_asinpil.c89 long double ax, hi, lo, xh, xl, y, zh, zl; in asinpil() local
123 _SQRT(2 * y, zh, zl); in asinpil()
124 _XMUL(xh, xl, zh, zl, hi, lo); in asinpil()
139 long double ax, hi, lo, xh, xl, y, zh, zl; in acospil() local
163 _SQRT(2 * y, zh, zl); in acospil()
164 _XMUL(xh, xl, zh, zl, hi, lo); in acospil()
H A Ds_atanpil.c96 long double ax, hi, lo, xh, xl, y, zh, zl; in atanpil() local
/freebsd/lib/msun/ld80/
H A Ds_asinpil.c101 long double ax, hi, lo, xh, xl, y, zh, zl; in asinpil() local
138 _SQRT(2 * y, zh, zl); /* 2 * t */ in asinpil()
139 _XMUL(xh, xl, zh, zl, hi, lo); in asinpil()
154 long double ax, hi, lo, xh, xl, y, zh, zl; in acospil() local
181 _SQRT(2 * y, zh, zl); /* 2 * t */ in acospil()
182 _XMUL(xh, xl, zh, zl, hi, lo); in acospil()
H A Ds_atanpil.c106 long double ax, hi, lo, xh, xl, y, zh, zl; in atanpil() local
/freebsd/stand/libsa/zfs/
H A Dzfsimpl.c2566 fzap_name_equal(const zap_leaf_t *zl, const zap_leaf_chunk_t *zc, in fzap_name_equal() argument
2575 nc = &ZAP_LEAF_CHUNK(zl, zc->l_entry.le_name_chunk); in fzap_name_equal()
2587 nc = &ZAP_LEAF_CHUNK(zl, nc->l_array.la_next); in fzap_name_equal()
2597 fzap_leaf_value(const zap_leaf_t *zl, const zap_leaf_chunk_t *zc) in fzap_leaf_value() argument
2604 vc = &ZAP_LEAF_CHUNK(zl, zc->l_entry.le_value_chunk); in fzap_leaf_value()
2635 fzap_leaf_array(const zap_leaf_t *zl, const zap_leaf_chunk_t *zc, in fzap_leaf_array() argument
2647 *u64 = fzap_leaf_value(zl, zc); in fzap_leaf_array()
2652 struct zap_leaf_array *la = &ZAP_LEAF_CHUNK(zl, chunk).l_array; in fzap_leaf_array()
2655 ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(zl)); in fzap_leaf_array()
2779 zap_leaf_lookup(zap_leaf_t *zl, uint64_t hash, const char *name, in zap_leaf_lookup() argument
[all …]
H A Dzfs.c294 zap_leaf_t zl; in zfs_readdir() local
305 zl.l_bs = ilog2(bsize); in zfs_readdir()
306 zl.l_phys = fp->f_zap_leaf; in zfs_readdir()
315 if (chunk == ZAP_LEAF_NUMCHUNKS(&zl)) { in zfs_readdir()
333 zc = &ZAP_LEAF_CHUNK(&zl, chunk); in zfs_readdir()
345 nc = &ZAP_LEAF_CHUNK(&zl, zc->l_entry.le_name_chunk); in zfs_readdir()
355 nc = &ZAP_LEAF_CHUNK(&zl, nc->l_array.la_next); in zfs_readdir()
363 value = fzap_leaf_value(&zl, zc); in zfs_readdir()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzio.c702 zio_walk_parents(zio_t *cio, zio_link_t **zl) in zio_walk_parents() argument
706 *zl = (*zl == NULL) ? list_head(pl) : list_next(pl, *zl); in zio_walk_parents()
707 if (*zl == NULL) in zio_walk_parents()
710 ASSERT((*zl)->zl_child == cio); in zio_walk_parents()
711 return ((*zl)->zl_parent); in zio_walk_parents()
715 zio_walk_children(zio_t *pio, zio_link_t **zl) in zio_walk_children() argument
721 *zl = (*zl == NULL) ? list_head(cl) : list_next(cl, *zl); in zio_walk_children()
722 if (*zl == NULL) in zio_walk_children()
725 ASSERT((*zl)->zl_parent == pio); in zio_walk_children()
726 return ((*zl)->zl_child); in zio_walk_children()
[all …]
H A Dvdev_queue.c909 zio_link_t *zl = NULL; in vdev_queue_io() local
962 while ((dio = zio_walk_parents(nio, &zl)) != NULL) { in vdev_queue_io()
979 zio_link_t *zl = NULL; in vdev_queue_io_done() local
994 while ((dio = zio_walk_parents(nio, &zl)) != NULL) { in vdev_queue_io_done()
/freebsd/crypto/openssl/test/recipes/15-test_ml_kem_codecs_data/
H A Dprv-768-oqskeypair.pem50 JKhVjfcrvje3X07btr6CFtbGM/srIoDiURPYaV5DSBw+6zl+sZJQUim2eiAeqJPD
76 JKhVjfcrvje3X07btr6CFtbGM/srIoDiURPYaV5DSBw+6zl+sZJQUim2eiAeqJPD
H A Dpub-768.pem26 vje3X07btr6CFtbGM/srIoDiURPYaV5DSBw+6zl+sZJQUim2eiAeqJPD4ssy2ovD
H A Dprv-768-priv-only.pem50 JKhVjfcrvje3X07btr6CFtbGM/srIoDiURPYaV5DSBw+6zl+sZJQUim2eiAeqJPD
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_vnops_os.c2699 zfs_zlock_t *zl; in zfs_rename_unlock() local
2701 while ((zl = *zlpp) != NULL) { in zfs_rename_unlock()
2702 if (zl->zl_znode != NULL) in zfs_rename_unlock()
2703 zfs_zrele_async(zl->zl_znode); in zfs_rename_unlock()
2704 rw_exit(zl->zl_rwlock); in zfs_rename_unlock()
2705 *zlpp = zl->zl_next; in zfs_rename_unlock()
2706 kmem_free(zl, sizeof (*zl)); in zfs_rename_unlock()
2719 zfs_zlock_t *zl; in zfs_rename_lock() local
2741 zfs_rename_unlock(&zl); in zfs_rename_lock()
2756 zl = kmem_alloc(sizeof (*zl), KM_SLEEP); in zfs_rename_lock()
[all …]

12