/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | average.h | 61 unsigned long zt; \ 68 ewma->zt = 0; \ 74 unsigned long ztm1 = ewma->zt; /* Z_(t-1). */ \ 77 if (ewma->zt == 0) \ 78 ewma->zt = x << (_p); \ 80 ewma->zt = ((x << (_p)) >> d) + \ 87 return (ewma->zt >> (_p)); \
|
/freebsd/usr.sbin/makefs/zfs/ |
H A D | zap.c | 353 struct zap_table_phys *zt; in zap_fat_write() local 387 zt = &zaphdr->zap_ptrtbl; in zap_fat_write() 388 zt->zt_blk = 0; in zap_fat_write() 389 zt->zt_numblks = 0; in zap_fat_write() 390 zt->zt_shift = flsll(ptrcnt) - 1; in zap_fat_write() 391 zt->zt_nextblk = 0; in zap_fat_write() 392 zt->zt_blks_copied = 0; in zap_fat_write() 420 hi = ZAP_HASH_IDX(ent->hash, zt->zt_shift); in zap_fat_write() 510 ptrhasht[i] = (i >> (zt->zt_shift - prefixlen)) + 1; in zap_fat_write()
|
/freebsd/contrib/netbsd-tests/lib/libc/time/ |
H A D | t_strptime.c | 105 } zt[] = { variable 222 for (size_t i = 0; i < __arraycount(zt); i++) in ztest() 223 ztest1(zt[i].name, fmt, zt[i].offs); in ztest()
|
/freebsd/contrib/bearssl/src/ec/ |
H A D | ec_p256_m62.c | 1392 #define zt (z[15]) in window_to_affine() macro 1402 memcpy(zt, jac[i].z, sizeof zt); in window_to_affine() 1403 memcpy(jac[i].z, jac[i + 1].z, sizeof zt); in window_to_affine() 1404 memcpy(jac[i + 1].z, zt, sizeof zt); in window_to_affine() 1408 memcpy(z[num >> 1], jac[num - 1].z, sizeof zt); in window_to_affine() 1428 memmove(z[n >> 1], z[n], sizeof zt); in window_to_affine() 1435 f256_invert(zt, z[0]); in window_to_affine() 1437 f256_montymul(zv, jac[i].z, zt); in window_to_affine()
|
H A D | ec_p256_m64.c | 1408 #define zt (z[15]) in window_to_affine() macro 1418 memcpy(zt, jac[i].z, sizeof zt); in window_to_affine() 1419 memcpy(jac[i].z, jac[i + 1].z, sizeof zt); in window_to_affine() 1420 memcpy(jac[i + 1].z, zt, sizeof zt); in window_to_affine() 1424 memcpy(z[num >> 1], jac[num - 1].z, sizeof zt); in window_to_affine() 1444 memmove(z[n >> 1], z[n], sizeof zt); in window_to_affine() 1451 f256_invert(zt, z[0]); in window_to_affine() 1453 f256_montymul(zv, jac[i].z, zt); in window_to_affine()
|
/freebsd/contrib/bzip2/ |
H A D | decompress.c | 129 Int32 zt; in BZ2_decompress() local 183 zt = s->save_zt; in BZ2_decompress() 636 s->save_zt = zt; in BZ2_decompress()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zio.c | 504 zio_transform_t *zt = kmem_alloc(sizeof (zio_transform_t), KM_SLEEP); in zio_push_transform() local 506 zt->zt_orig_abd = zio->io_abd; in zio_push_transform() 507 zt->zt_orig_size = zio->io_size; in zio_push_transform() 508 zt->zt_bufsize = bufsize; in zio_push_transform() 509 zt->zt_transform = transform; in zio_push_transform() 511 zt->zt_next = zio->io_transform_stack; in zio_push_transform() 512 zio->io_transform_stack = zt; in zio_push_transform() 521 zio_transform_t *zt; in zio_pop_transforms() local 523 while ((zt = zio->io_transform_stack) != NULL) { in zio_pop_transforms() 524 if (zt->zt_transform != NULL) in zio_pop_transforms() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | SMEInstrFormats.td | 3207 def : Pat<(int_aarch64_sme_zero_zt (imm_to_zt untyped:$zt)), 3208 (!cast<Instruction>(NAME # _PSEUDO) $zt)>; 3317 …def : Pat<(nxv16i8 (intrinsic (imm_to_zt untyped:$zt), nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm… 3318 (!cast<Instruction>(NAME # _B) $zt, nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm))>; 3319 …def : Pat<(nxv8i16 (intrinsic (imm_to_zt untyped:$zt), nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm… 3320 (!cast<Instruction>(NAME # _H) $zt, nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm))>; 3321 …def : Pat<(nxv4i32 (intrinsic (imm_to_zt untyped:$zt), nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm… 3322 (!cast<Instruction>(NAME # _S) $zt, nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm))>; 3323 …def : Pat<(nxv8f16 (intrinsic (imm_to_zt untyped:$zt), nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm… 3324 (!cast<Instruction>(NAME # _H) $zt, nxv16i8:$zn, (i32 VectorIndexB32b_timm:$imm))>; [all …]
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 1088 const char *zt = z+1; /* Got lead byte, look at trail bytes.*/ in zSkipValidUtf8() local 1090 if( pcLimit && zt >= pcLimit ) return z; in zSkipValidUtf8() 1092 char ct = *zt++; in zSkipValidUtf8() 1093 if( ct==0 || (zt-z)>4 || (ct & 0xC0)!=0x80 ){ in zSkipValidUtf8() 1099 z = zt; in zSkipValidUtf8()
|
/freebsd/share/termcap/ |
H A D | termcap | 3325 ztx|ztx11|zt-1|htx11|ztx-1-a|ztx-10/11:\
|
/freebsd/ |
H A D | ObsoleteFiles.inc | 8054 OLD_FILES+=usr/share/terminfo/z/zt-1
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 22826 ztx|ztx11|zt-1|htx11|ztx-1-a|Heath/Zenith ztx-10 or 11,
|