/freebsd/contrib/bearssl/src/ec/ |
H A D | ec_p256_m62.c | 338 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 D | ec_p256_m64.c | 366 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 D | zfs_znode_os.c | 160 znode_hold_t *zh = buf; in zfs_znode_hold_cache_constructor() local 162 mutex_init(&zh->zh_lock, NULL, MUTEX_DEFAULT, NULL); in zfs_znode_hold_cache_constructor() 163 zh->zh_refcount = 0; in zfs_znode_hold_cache_constructor() 172 znode_hold_t *zh = buf; in zfs_znode_hold_cache_destructor() local 174 mutex_destroy(&zh->zh_lock); in zfs_znode_hold_cache_destructor() 252 znode_hold_t *zh, search; in zfs_znode_held() local 259 zh = avl_find(&zfsvfs->z_hold_trees[i], &search, NULL); in zfs_znode_held() 260 held = (zh && MUTEX_HELD(&zh->zh_lock)) ? B_TRUE : B_FALSE; in zfs_znode_held() 269 znode_hold_t *zh, *zh_new, search; in zfs_znode_hold_enter() local 277 zh = avl_find(&zfsvfs->z_hold_trees[i], &search, NULL); in zfs_znode_hold_enter() [all …]
|
H A D | zfs_dir.c | 657 znode_hold_t *zh; in zfs_rmnode() local 676 zh = zfs_znode_hold_enter(zfsvfs, z_id); in zfs_rmnode() 678 zfs_znode_hold_exit(zfsvfs, zh); in zfs_rmnode() 697 zh = zfs_znode_hold_enter(zfsvfs, z_id); in zfs_rmnode() 699 zfs_znode_hold_exit(zfsvfs, zh); in zfs_rmnode() 739 zh = zfs_znode_hold_enter(zfsvfs, z_id); in zfs_rmnode() 741 zfs_znode_hold_exit(zfsvfs, zh); in zfs_rmnode()
|
/freebsd/contrib/bearssl/src/int/ |
H A D | i32_montmul.c | 40 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 D | i15_montmul.c | 40 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 D | i62_modpow2.c | 162 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 D | zdb_il.c | 514 const zil_header_t *zh = zilog->zl_header; in dump_intent_log() local 518 if (BP_IS_HOLE(&zh->zh_log) || verbose < 1) in dump_intent_log() 523 (u_longlong_t)zh->zh_claim_txg, in dump_intent_log() 524 (u_longlong_t)zh->zh_claim_blk_seq, in dump_intent_log() 525 (u_longlong_t)zh->zh_claim_lr_seq); in dump_intent_log() 527 (u_longlong_t)zh->zh_replay_seq, (u_longlong_t)zh->zh_flags); in dump_intent_log() 534 zh->zh_claim_txg == 0) in dump_intent_log() 540 zh->zh_claim_txg, B_FALSE); in dump_intent_log()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zil.c | 464 const zil_header_t *zh = zilog->zl_header; in zil_parse() local 465 boolean_t claimed = !!zh->zh_claim_txg; in zil_parse() 466 uint64_t claim_blk_seq = claimed ? zh->zh_claim_blk_seq : UINT64_MAX; in zil_parse() 467 uint64_t claim_lr_seq = claimed ? zh->zh_claim_lr_seq : UINT64_MAX; in zil_parse() 478 if (!(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID)) in zil_parse() 492 for (blk = zh->zh_log; !BP_IS_HOLE(&blk); blk = next_blk) { in zil_parse() 978 const zil_header_t *zh = zilog->zl_header; in zil_create() local 993 ASSERT(zh->zh_claim_txg == 0); in zil_create() 994 ASSERT(zh->zh_replay_seq == 0); in zil_create() 996 blk = zh->zh_log; in zil_create() [all …]
|
H A D | dmu_traverse.c | 126 traverse_zil(traverse_data_t *td, zil_header_t *zh) in traverse_zil() argument 128 uint64_t claim_txg = zh->zh_claim_txg; in traverse_zil() 137 zilog_t *zilog = zil_alloc(spa_get_dsl(td->td_spa)->dp_meta_objset, zh); in traverse_zil()
|
H A D | dsl_scan.c | 1759 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_block() local 1777 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_block() 1793 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_record() local 1812 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_record() 1822 dsl_scan_zil(dsl_pool_t *dp, zil_header_t *zh) in dsl_scan_zil() argument 1824 uint64_t claim_txg = zh->zh_claim_txg; in dsl_scan_zil() 1825 zil_scan_arg_t zsa = { dp, zh }; in dsl_scan_zil() 1837 zilog = zil_alloc(dp->dp_meta_objset, zh); in dsl_scan_zil()
|
/freebsd/contrib/dialog/po/ |
H A D | zh_CN.po | 14 "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
|
H A D | zh_TW.po | 13 "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
|
/freebsd/stand/libsa/zfs/ |
H A D | zfsimpl.c | 2688 fzap_lookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_lookup() argument 2698 if (zh->zap_magic != ZAP_MAGIC) in fzap_lookup() 2706 z.zap_phys = zh; in fzap_lookup() 2710 hash = zap_hash(zh->zap_salt, name); in fzap_lookup() 2790 fzap_list(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_list() argument 2798 if (zh->zap_magic != ZAP_MAGIC) in fzap_list() 2802 z.zap_phys = zh; in fzap_list() 2814 for (i = 0; i < zh->zap_num_leafs; i++) { in fzap_list() 2966 fzap_rlookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_rlookup() argument 2974 if (zh->zap_magic != ZAP_MAGIC) in fzap_rlookup() [all …]
|
/freebsd/share/vt/fonts/ |
H A D | INDEX.fonts | 8 # pt ro ru sh sk sl sv tr uk zh
|
/freebsd/stand/fonts/ |
H A D | INDEX.fonts | 8 # pt ro ru sh sk sl sv tr uk zh
|
/freebsd/lib/libc/nls/ |
H A D | hu_HU.ISO8859-2.msg | 56 25 Nem megfelel� ioctl az eszk�zh�z
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVSchedXiangShanNanHu.td | 17 // Overview: https://xiangshan-doc.readthedocs.io/zh-cn/latest/integration/overview/
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
H A D | AVRRegisterInfo.td | 67 def R31 : AVRReg<31, "r31", [], ["zh"]>, DwarfRegNum<[31]>;
|
/freebsd/share/misc/ |
H A D | iso639 | 118 zh chi zho Chinese
|
/freebsd/share/syscons/fonts/ |
H A D | INDEX.fonts | 8 # pt ro ru sh sk sl sv tr uk zh
|
/freebsd/share/vt/keymaps/ |
H A D | INDEX.keymaps | 7 # pt ro ru sh sk sl sv tr uk zh
|
/freebsd/share/syscons/keymaps/ |
H A D | INDEX.keymaps | 7 # pt ro ru sh sk sl sv tr uk zh
|
/freebsd/contrib/tzdata/ |
H A D | africa | 391 # https://books.google.com/books?hl=zh-TW&id=c_E-AQAAIAAJ&pg=PA331
|