Home
last modified time | relevance | path

Searched refs:zh (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/complex/
H A Dk_clog_rl.c363 static long double k_log_NKzl(int N, int K, long double zh, long double *zt) in k_log_NKzl() argument
375 t = zh + (*zt); in k_log_NKzl()
397 s2t = r * ((((zh - s2h * zk) - v * zh) + (*zt)) - v * (*zt)); in k_log_NKzl()
411 long double t1, t2, t3, t4, tk, z, wh, w, zh, zk; local
507 zh = (long double)dk;
510 *er = z - zh;
513 zh *= 0.5L; *er *= 0.5L;
515 w = k_log_NKzl(n, k, zh, er);
592 zh = ((tk + t2) + t3) + t4;
596 ((unsigned *)&zh)[0] = 0;
[all …]
H A Dk_clog_r.c225 static double k_log_NKz(int N, int K, double zh, double *zt) in k_log_NKz() argument
231 t = zh + (*zt); in k_log_NKz()
237 s2t = r * ((((zh - s2h * zk) - v * zh) + (*zt)) - v * (*zt)); in k_log_NKz()
250 double t1, t2, t3, t4, tk, z, wh, w, zh, zk; in __k_clog_r() local
325 zh = (double)((float)z); in __k_clog_r()
329 *er = z - zh; in __k_clog_r()
332 zh *= 0.5; *er *= 0.5; in __k_clog_r()
334 w = k_log_NKz(n, k, zh, er); in __k_clog_r()
381 zh = ((tk + t2) + t3) + t4; in __k_clog_r()
382 ((int *)&zh)[LOWORD] &= 0xe0000000; in __k_clog_r()
[all …]
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dtgamma.c1408 double r1, r2, t2, z, xh, xl, yh, yl, zh, z1, z2, zl, x5, wh, wl; in gam_n() local
1445 zh = (double) ((float) z); in gam_n()
1446 rr.h = zh * yy.h; in gam_n()
1447 rr.l = z * yy.l + (x - (zh - one)) * yy.h; in gam_n()
1454 zh = (double) ((float) z1); in gam_n()
1455 xl = (x - (zh - one)) * (z2 + zh) - (xh - zh * (zh + one)); in gam_n()
1463 zh = z1; in gam_n()
1464 __LO(zh) = 0; in gam_n()
1465 __HI(zh) &= 0xfffffff8; /* zh 18 bits mantissa */ in gam_n()
1466 zl = x - (zh - 2.0); in gam_n()
[all …]
H A Dtgammal.c883 long double r1, r2, t2, z, xh, xl, yh, yl, zh, z1, z2, zl, x5, wh, wl; in gam_n() local
919 zh = CHOPPED((z)); in gam_n()
920 rr.h = zh * yy.h; in gam_n()
921 rr.l = z * yy.l + (x - (zh - one)) * yy.h; in gam_n()
928 zh = CHOPPED((z1)); in gam_n()
929 xl = (x - (zh - one)) * (z2 + zh) - (xh - zh * (zh + one)); in gam_n()
938 zh = CHOPPED(z1); in gam_n()
939 zl = x - (zh - 2.0L); in gam_n()
941 xl = zl * (zh + z1) - (xh - (zh * zh - one)); in gam_n()
945 wl = (zl * yy.h + z1 * yy.l) - (wh - zh * yy.h); in gam_n()
[all …]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzil.c325 const zil_header_t *zh = zilog->zl_header; in zil_parse() local
326 boolean_t claimed = !!zh->zh_claim_txg; in zil_parse()
327 uint64_t claim_blk_seq = claimed ? zh->zh_claim_blk_seq : UINT64_MAX; in zil_parse()
328 uint64_t claim_lr_seq = claimed ? zh->zh_claim_lr_seq : UINT64_MAX; in zil_parse()
340 if (!(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID)) in zil_parse()
355 for (blk = zh->zh_log; !BP_IS_HOLE(&blk); blk = next_blk) { in zil_parse()
400 ASSERT(!claimed || !(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID) || in zil_parse()
636 const zil_header_t *zh = zilog->zl_header; in zil_create() local
649 ASSERT(zh->zh_claim_txg == 0); in zil_create()
650 ASSERT(zh->zh_replay_seq == 0); in zil_create()
[all …]
H A Ddmu_traverse.c121 traverse_zil(traverse_data_t *td, zil_header_t *zh) in traverse_zil() argument
123 uint64_t claim_txg = zh->zh_claim_txg; in traverse_zil()
132 zilog_t *zilog = zil_alloc(spa_get_dsl(td->td_spa)->dp_meta_objset, zh); in traverse_zil()
H A Ddsl_scan.c1352 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_block() local
1367 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_block()
1382 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_record() local
1399 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_record()
1409 dsl_scan_zil(dsl_pool_t *dp, zil_header_t *zh) in dsl_scan_zil() argument
1411 uint64_t claim_txg = zh->zh_claim_txg; in dsl_scan_zil()
1412 zil_scan_arg_t zsa = { dp, zh }; in dsl_scan_zil()
1424 zilog = zil_alloc(dp->dp_meta_objset, zh); in dsl_scan_zil()
/illumos-gate/usr/src/cmd/zdb/
H A Dzdb_il.c400 const zil_header_t *zh = zilog->zl_header; in dump_intent_log() local
404 if (BP_IS_HOLE(&zh->zh_log) || verbose < 1) in dump_intent_log()
409 (u_longlong_t)zh->zh_claim_txg, in dump_intent_log()
410 (u_longlong_t)zh->zh_claim_blk_seq, in dump_intent_log()
411 (u_longlong_t)zh->zh_claim_lr_seq); in dump_intent_log()
413 (u_longlong_t)zh->zh_replay_seq, (u_longlong_t)zh->zh_flags); in dump_intent_log()
420 zh->zh_claim_txg == 0) in dump_intent_log()
426 zh->zh_claim_txg, B_FALSE); in dump_intent_log()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/
H A Dlc.tab165 zh chinese-simplified zho|chi|chs
187 cn china zh:primary
206 hk hong-kong zh
230 mo macau zh
248 sg singapore zh
/illumos-gate/usr/src/lib/iconv_modules/
H A DMakefile28 SUBDIRS = common euro hi_IN ja ko th_TH zh utf-8 vi
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dzfsimpl.c2713 fzap_lookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_lookup() argument
2723 if (zh->zap_magic != ZAP_MAGIC) in fzap_lookup()
2730 z.zap_phys = zh; in fzap_lookup()
2734 hash = zap_hash(zh->zap_salt, name); in fzap_lookup()
2814 fzap_list(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_list() argument
2821 if (zh->zap_magic != ZAP_MAGIC) in fzap_list()
2825 z.zap_phys = zh; in fzap_list()
2837 for (i = 0; i < zh->zap_num_leafs; i++) { in fzap_list()
2989 fzap_rlookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh, in fzap_rlookup() argument
2997 if (zh->zap_magic != ZAP_MAGIC) in fzap_rlookup()
[all …]
/illumos-gate/usr/src/cmd/eqn/eqnchar.d/
H A Deqnchar39 tdefine hbar % "\zh\v'-.6m'\h'.05m'\(ru\v'.6m'" %
/illumos-gate/usr/src/data/zoneinfo/
H A Dafrica394 # https://books.google.com/books?hl=zh-TW&id=c_E-AQAAIAAJ&pg=PA331