/titanic_50/usr/src/lib/libm/common/complex/ |
H A D | k_clog_rl.c | 363 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 D | k_clog_r.c | 225 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 …]
|
/titanic_50/usr/src/lib/libm/common/m9x/ |
H A D | tgamma.c | 1408 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 D | tgammal.c | 883 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 …]
|
/titanic_50/usr/src/uts/common/fs/zfs/ |
H A D | zil.c | 297 const zil_header_t *zh = zilog->zl_header; in zil_parse() local 298 boolean_t claimed = !!zh->zh_claim_txg; in zil_parse() 299 uint64_t claim_blk_seq = claimed ? zh->zh_claim_blk_seq : UINT64_MAX; in zil_parse() 300 uint64_t claim_lr_seq = claimed ? zh->zh_claim_lr_seq : UINT64_MAX; in zil_parse() 312 if (!(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID)) in zil_parse() 327 for (blk = zh->zh_log; !BP_IS_HOLE(&blk); blk = next_blk) { in zil_parse() 367 ASSERT(!claimed || !(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID) || in zil_parse() 505 const zil_header_t *zh = zilog->zl_header; in zil_create() local 517 ASSERT(zh->zh_claim_txg == 0); in zil_create() 518 ASSERT(zh->zh_replay_seq == 0); in zil_create() [all …]
|
H A D | dsl_scan.c | 471 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_block() local 486 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_block() 501 zil_header_t *zh = zsa->zsa_zh; in dsl_scan_zil_record() local 518 SET_BOOKMARK(&zb, zh->zh_log.blk_cksum.zc_word[ZIL_ZC_OBJSET], in dsl_scan_zil_record() 528 dsl_scan_zil(dsl_pool_t *dp, zil_header_t *zh) in dsl_scan_zil() argument 530 uint64_t claim_txg = zh->zh_claim_txg; in dsl_scan_zil() 531 zil_scan_arg_t zsa = { dp, zh }; in dsl_scan_zil() 541 zilog = zil_alloc(dp->dp_meta_objset, zh); in dsl_scan_zil()
|
H A D | dmu_traverse.c | 119 traverse_zil(traverse_data_t *td, zil_header_t *zh) in traverse_zil() argument 121 uint64_t claim_txg = zh->zh_claim_txg; in traverse_zil() 131 zilog = zil_alloc(spa_get_dsl(td->td_spa)->dp_meta_objset, zh); in traverse_zil()
|
/titanic_50/usr/src/cmd/zdb/ |
H A D | zdb_il.c | 364 const zil_header_t *zh = zilog->zl_header; in dump_intent_log() local 368 if (BP_IS_HOLE(&zh->zh_log) || verbose < 1) in dump_intent_log() 373 (u_longlong_t)zh->zh_claim_txg, in dump_intent_log() 374 (u_longlong_t)zh->zh_claim_blk_seq, in dump_intent_log() 375 (u_longlong_t)zh->zh_claim_lr_seq); in dump_intent_log() 377 (u_longlong_t)zh->zh_replay_seq, (u_longlong_t)zh->zh_flags); in dump_intent_log() 385 zh->zh_claim_txg); in dump_intent_log()
|
/titanic_50/usr/src/lib/libast/common/port/ |
H A D | lc.tab | 165 zh chinese-simplified zho|chi|chs 187 cn china zh:primary 206 hk hong-kong zh 230 mo macau zh 248 sg singapore zh
|
/titanic_50/usr/src/lib/iconv_modules/ |
H A D | Makefile | 28 SUBDIRS = common euro hi_IN ja ko th_TH zh utf-8 vi
|
/titanic_50/usr/src/cmd/eqn/eqnchar.d/ |
H A D | eqnchar | 39 tdefine hbar % "\zh\v'-.6m'\h'.05m'\(ru\v'.6m'" %
|