Home
last modified time | relevance | path

Searched refs:zt (Results 1 – 14 of 14) sorted by relevance

/src/sys/contrib/openzfs/lib/libspl/
H A Dtunables.c90 const zfs_tunable_t *zt = *ztp; in zfs_tunable_lookup() local
91 if (zt == NULL) in zfs_tunable_lookup()
93 if (strcmp(name, zt->zt_name) == 0) in zfs_tunable_lookup()
94 return (zt); in zfs_tunable_lookup()
108 const zfs_tunable_t *zt = *ztp; in zfs_tunable_iter() local
109 if (zt == NULL) in zfs_tunable_iter()
111 if (cb(zt, arg)) in zfs_tunable_iter()
169 zfs_tunable_set_int(const zfs_tunable_t *zt, const char *val) in zfs_tunable_set_int() argument
175 *(int *)zt->zt_varp = n; in zfs_tunable_set_int()
180 zfs_tunable_set_uint(const zfs_tunable_t *zt, const char *val) in zfs_tunable_set_uint() argument
[all …]
/src/sys/compat/linuxkpi/common/include/linux/
H A Daverage.h61 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)); \
/src/usr.sbin/makefs/zfs/
H A Dzap.c361 struct zap_table_phys *zt; in zap_fat_write() local
395 zt = &zaphdr->zap_ptrtbl; in zap_fat_write()
396 zt->zt_blk = 0; in zap_fat_write()
397 zt->zt_numblks = 0; in zap_fat_write()
398 zt->zt_shift = flsll(ptrcnt) - 1; in zap_fat_write()
399 zt->zt_nextblk = 0; in zap_fat_write()
400 zt->zt_blks_copied = 0; in zap_fat_write()
428 hi = ZAP_HASH_IDX(ent->hash, zt->zt_shift); in zap_fat_write()
519 ptrhasht[i] = (i >> (zt->zt_shift - prefixlen)) + 1; in zap_fat_write()
/src/contrib/netbsd-tests/lib/libc/time/
H A Dt_strptime.c105 } 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()
/src/contrib/bearssl/src/ec/
H A Dec_p256_m62.c1392 #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 Dec_p256_m64.c1408 #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()
/src/crypto/openssl/crypto/chacha/asm/
H A Dchacha-armv8-sve.pl1056 my $zt = $1;
1070 …return &verify_inst($opcode_scalar_pred{$mnemonic}|($size<<21)|$zt|($pg<<10)|($1<<16)|($xn<<5),$in…
1073 …return &verify_inst($opcode_gather_pred{$mnemonic}|($xs<<22)|$zt|($pg<<10)|($1<<16)|($xn<<5),$inst…
1075 return &verify_inst($opcode_pred{$mnemonic}|($size<<21)|$zt|($pg<<10)|($1<<16)|($xn<<5),$inst);
1077 return &verify_inst($opcode_pred{$mnemonic}|($size<<21)|$zt|($pg<<10)|($xn<<5),$inst);
/src/contrib/bzip2/
H A Ddecompress.c129 Int32 zt; in BZ2_decompress() local
183 zt = s->save_zt; in BZ2_decompress()
636 s->save_zt = zt; in BZ2_decompress()
/src/sys/contrib/openzfs/module/zfs/
H A Dzio.c505 zio_transform_t *zt = kmem_alloc(sizeof (zio_transform_t), KM_SLEEP); in zio_push_transform() local
507 zt->zt_orig_abd = zio->io_abd; in zio_push_transform()
508 zt->zt_orig_size = zio->io_size; in zio_push_transform()
509 zt->zt_bufsize = bufsize; in zio_push_transform()
510 zt->zt_transform = transform; in zio_push_transform()
512 zt->zt_next = zio->io_transform_stack; in zio_push_transform()
513 zio->io_transform_stack = zt; in zio_push_transform()
522 zio_transform_t *zt; in zio_pop_transforms() local
524 while ((zt = zio->io_transform_stack) != NULL) { in zio_pop_transforms()
525 if (zt->zt_transform != NULL) in zio_pop_transforms()
[all …]
/src/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSMEInstrFormats.td3207 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 …]
/src/contrib/sqlite3/
H A Dshell.c22261 const char *zt = z+1; /* Got lead byte, look at trail bytes.*/ in zSkipValidUtf8() local
22263 if( pcLimit && zt >= pcLimit ) return z; in zSkipValidUtf8()
22265 char ct = *zt++; in zSkipValidUtf8()
22266 if( ct==0 || (zt-z)>4 || (ct & 0xC0)!=0x80 ){ in zSkipValidUtf8()
22272 z = zt; in zSkipValidUtf8()
/src/share/termcap/
H A Dtermcap3325 ztx|ztx11|zt-1|htx11|ztx-1-a|ztx-10/11:\
/src/
H A DObsoleteFiles.inc8300 OLD_FILES+=usr/share/terminfo/z/zt-1
/src/contrib/ncurses/misc/
H A Dterminfo.src23233 ztx|ztx11|zt-1|htx11|ztx-1-a|Heath/Zenith ztx-10 or 11,