Home
last modified time | relevance | path

Searched refs:zh (Results 1 – 25 of 28) 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()
354 (void)_addcarry_u64(k, 0, zh, &zh); in f256_montymul()
356 cc = (zl >> 52) | (zh << 12); in f256_montymul()
358 zl = _umul128(b[1], x, &zh); in f256_montymul()
360 (void)_addcarry_u64(k, 0, zh, &zh); in f256_montymul()
362 (void)_addcarry_u64(k, 0, zh, &zh); in f256_montymul()
364 (void)_addcarry_u64(k, f >> 20, zh, &zh); in f256_montymul()
366 cc = (zl >> 52) | (zh << 12); in f256_montymul()
368 zl = _umul128(b[2], x, &zh); 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()
387 t0 = zh; in f256_montymul()
389 zl = _umul128(b[1], x, &zh); in f256_montymul()
391 (void)_addcarry_u64(k, zh, 0, &zh); in f256_montymul()
393 (void)_addcarry_u64(k, zh, 0, &zh); in f256_montymul()
395 t1 = zh; in f256_montymul()
397 zl = _umul128(b[2], x, &zh); in f256_montymul()
399 (void)_addcarry_u64(k, zh, 0, &zh); in f256_montymul()
401 (void)_addcarry_u64(k, zh, 0, &zh); in f256_montymul()
[all …]
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_znode_os.c157 znode_hold_t *zh = buf; in zfs_znode_hold_cache_constructor() local
159 mutex_init(&zh->zh_lock, NULL, MUTEX_DEFAULT, NULL); in zfs_znode_hold_cache_constructor()
160 zh->zh_refcount = 0; in zfs_znode_hold_cache_constructor()
169 znode_hold_t *zh = buf; in zfs_znode_hold_cache_destructor() local
171 mutex_destroy(&zh->zh_lock); in zfs_znode_hold_cache_destructor()
249 znode_hold_t *zh, search; in zfs_znode_held() local
256 zh = avl_find(&zfsvfs->z_hold_trees[i], &search, NULL); in zfs_znode_held()
257 held = (zh && MUTEX_HELD(&zh->zh_lock)) ? B_TRUE : B_FALSE; in zfs_znode_held()
266 znode_hold_t *zh, *zh_new, search; in zfs_znode_hold_enter() local
274 zh = avl_find(&zfsvfs->z_hold_trees[i], &search, NULL); in zfs_znode_hold_enter()
[all …]
H A Dzfs_dir.c659 znode_hold_t *zh; in zfs_rmnode() local
678 zh = zfs_znode_hold_enter(zfsvfs, z_id); in zfs_rmnode()
680 zfs_znode_hold_exit(zfsvfs, zh); in zfs_rmnode()
699 zh = zfs_znode_hold_enter(zfsvfs, z_id); in zfs_rmnode()
701 zfs_znode_hold_exit(zfsvfs, zh); in zfs_rmnode()
741 zh = zfs_znode_hold_enter(zfsvfs, z_id); in zfs_rmnode()
743 zfs_znode_hold_exit(zfsvfs, zh); in zfs_rmnode()
/freebsd/lib/msun/src/
H A Ds_rsqrtf.c75 float h, ph, pl, rh, rl, y, zh, zl; in rsqrtf() local
141 _MUL(x, y, zh, zl); in rsqrtf()
142 _XMUL(zh, zl, h, 0, ph, pl); in rsqrtf()
145 _MUL(x, y, zh, zl); in rsqrtf()
146 _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()
187 long double h, ph, pl, rh, rl, zh, zl; in rsqrtl() local
193 _MUL(x, y, zh, zl); in rsqrtl()
194 _XMUL(zh, zl, -h, 0, ph, pl); in rsqrtl()
H A Dmath_private.h521 #define _XADD(xh, xl, yh, yl, zh, zl) \ argument
527 _FAST2SUM(__s5, __s6 + __s4, zh, zl); \
/freebsd/contrib/bearssl/src/int/
H A Di32_montmul.c40 uint64_t r1, r2, zh; in br_i32_montymul() local
59 zh = dh + r1 + r2; in br_i32_montymul()
60 d[len] = (uint32_t)zh; in br_i32_montymul()
61 dh = zh >> 32; in br_i32_montymul()
H A Di15_montmul.c40 uint32_t f, xu, r, zh; in br_i15_montymul() local
169 zh = dh + r; in br_i15_montymul()
170 d[len] = zh & 0x7FFF; in br_i15_montymul()
171 dh = zh >> 15; in br_i15_montymul()
H A Di62_modpow2.c162 uint64_t r, zh; in montymul() local
195 zh = dh + r; in montymul()
196 d[num - 1] = zh & MASK62; in montymul()
197 dh = zh >> 62; in montymul()
/freebsd/sys/contrib/openzfs/cmd/zdb/
H A Dzdb_il.c513 const zil_header_t *zh = zilog->zl_header; in dump_intent_log() local
517 if (BP_IS_HOLE(&zh->zh_log) || verbose < 1) in dump_intent_log()
522 (u_longlong_t)zh->zh_claim_txg, in dump_intent_log()
523 (u_longlong_t)zh->zh_claim_blk_seq, in dump_intent_log()
524 (u_longlong_t)zh->zh_claim_lr_seq); in dump_intent_log()
526 (u_longlong_t)zh->zh_replay_seq, (u_longlong_t)zh->zh_flags); in dump_intent_log()
533 zh->zh_claim_txg == 0) in dump_intent_log()
539 zh->zh_claim_txg, B_FALSE); in dump_intent_log()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzil.c471 const zil_header_t *zh = zilog->zl_header; in zil_parse() local
472 boolean_t claimed = !!zh->zh_claim_txg; in zil_parse()
473 uint64_t claim_blk_seq = claimed ? zh->zh_claim_blk_seq : UINT64_MAX; in zil_parse()
474 uint64_t claim_lr_seq = claimed ? zh->zh_claim_lr_seq : UINT64_MAX; in zil_parse()
485 if (!(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID)) in zil_parse()
499 for (blk = zh->zh_log; !BP_IS_HOLE(&blk); blk = next_blk) { in zil_parse()
986 const zil_header_t *zh = zilog->zl_header; in zil_create() local
1001 ASSERT0(zh->zh_claim_txg); in zil_create()
1002 ASSERT0(zh->zh_replay_seq); in zil_create()
1004 blk = zh->zh_log; in zil_create()
[all …]
H A Ddmu_traverse.c136 traverse_zil(traverse_data_t *td, zil_header_t *zh) in traverse_zil() argument
138 uint64_t claim_txg = zh->zh_claim_txg; in traverse_zil()
147 zilog_t *zilog = zil_alloc(spa_get_dsl(td->td_spa)->dp_meta_objset, zh); in traverse_zil()
H A Ddsl_scan.c1765 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_block() local
1783 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_block()
1799 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_record() local
1818 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_record()
1828 dsl_scan_zil(dsl_pool_t *dp, zil_header_t *zh) in dsl_scan_zil() argument
1830 uint64_t claim_txg = zh->zh_claim_txg; in dsl_scan_zil()
1831 zil_scan_arg_t zsa = { dp, zh }; in dsl_scan_zil()
1843 zilog = zil_alloc(dp->dp_meta_objset, zh); in dsl_scan_zil()
/freebsd/contrib/dialog/po/
H A Dzh_CN.po14 "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
H A Dzh_TW.po13 "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
/freebsd/stand/libsa/zfs/
H A Dzfsimpl.c2821 fzap_lookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_lookup() argument
2831 if (zh->zap_magic != ZAP_MAGIC) in fzap_lookup()
2839 z.zap_phys = zh; in fzap_lookup()
2843 hash = zap_hash(zh->zap_salt, name); in fzap_lookup()
2923 fzap_list(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_list() argument
2931 if (zh->zap_magic != ZAP_MAGIC) in fzap_list()
2935 z.zap_phys = zh; in fzap_list()
2947 for (i = 0; i < zh->zap_num_leafs; i++) { in fzap_list()
3099 fzap_rlookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_rlookup() argument
3107 if (zh->zap_magic != ZAP_MAGIC) in fzap_rlookup()
[all …]
/freebsd/share/vt/fonts/
H A DINDEX.fonts7 # pt ro ru sh sk sl sv tr uk zh
/freebsd/stand/fonts/
H A DINDEX.fonts7 # pt ro ru sh sk sl sv tr uk zh
/freebsd/lib/libc/nls/
H A Dhu_HU.ISO8859-2.msg56 25 Nem megfelel� ioctl az eszk�zh�z
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVSchedXiangShanNanHu.td17 // Overview: https://xiangshan-doc.readthedocs.io/zh-cn/latest/integration/overview/
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRRegisterInfo.td67 def R31 : AVRReg<31, "r31", [], ["zh"]>, DwarfRegNum<[31]>;
/freebsd/share/misc/
H A Diso639118 zh chi zho Chinese
/freebsd/share/syscons/fonts/
H A DINDEX.fonts7 # pt ro ru sh sk sl sv tr uk zh

12