Home
last modified time | relevance | path

Searched refs:z_down (Results 1 – 8 of 8) sorted by relevance

/dports/math/p5-Math-GMPz/Math-GMPz-0.52/t/
H A Dimp_exp.t11 my $z_down = Math::GMPz->new();
32 Rmpz_import($z_down, 2, $order, 9, 1, $nails, $s);
33 cmp_ok($z_down, '==', $z, "reading in multiple bytes works");
91 $z_down = Math::GMPz->new((ord('a') * (256 ** 2)) + (ord('B') * 256) + ord('c'));
94 cmp_ok($z, '==', $z_down, "Rmpz_import basic sanity check");
102 $z_down = Math::GMPz->new((1 * (256 ** 2)) + (ord('B') * 256) + ord('c'));
105 cmp_ok($z, '==', $z_down, "nails test");
/dports/math/kalker/gmp-mpfr-sys-21966f4bfb56c87d407eb14c72e92ef4e55856aa/mpfr-4.1.0-p13-c/src/
H A Dzeta.c604 mpfr_t z_down; in mpfr_zeta() local
612 mpfr_init2 (z_down, precz); in mpfr_zeta()
613 mpfr_set (z_down, z_pre, rnd_mode); in mpfr_zeta()
617 ok = mpfr_cmp (z_down, z_up) == 0; in mpfr_zeta()
619 mpfr_clear (z_down); in mpfr_zeta()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/object_print3d_utils/
H A Doperators.py297 z_down = Vector((0, 0, -1.0))
298 z_down_angle = z_down.angle
/dports/graphics/gmt/gmt-6.3.0/src/
H A Dgmt_project.h436 enum GMT_enum_zdown z_down; member
H A Dgmt_plot.c711 if (GMT->current.proj.z_down) { in gmtplot_lineary_grid()
712 if (GMT->current.proj.z_down == GMT_ZDOWN_Z) /* z = n - r */ in gmtplot_lineary_grid()
714 else if (GMT->current.proj.z_down == GMT_ZDOWN_ZP) /* z = n - r */ in gmtplot_lineary_grid()
717 if (GMT->current.proj.z_down == GMT_ZDOWN_ZP) in gmtplot_lineary_grid()
2332 if (GMT->current.proj.z_down) { in gmtplot_map_tickitem()
2340 if (GMT->current.proj.z_down == GMT_ZDOWN_ZP) in gmtplot_map_tickitem()
2479 if (GMT->current.proj.z_down == GMT_ZDOWN_ZP) in gmtplot_consider_internal_annotations()
2496 else if (GMT->current.proj.z_down == GMT_ZDOWN_ZP && ny) { in gmtplot_consider_internal_annotations()
2556 if (GMT->current.proj.z_down) gmt_M_free (GMT, tval); in gmtplot_consider_internal_annotations()
2870 if (GMT->current.proj.z_down == GMT_ZDOWN_ZP) in gmtplot_map_annotate()
[all …]
H A Dgmt_proj.c614 if (GMT->current.proj.z_down) { /* Annotate a flavor of z = radius - r */ in gmtproj_vpolar()
615 if (GMT->current.proj.z_down == GMT_ZDOWN_ZP) { /* Given z; annotate r = planet_radius - z */ in gmtproj_vpolar()
622 else if (GMT->current.proj.z_down == GMT_ZDOWN_Z) /* z = north - r */ in gmtproj_vpolar()
H A Dgmt_init.c5325 GMT->current.proj.z_down = GMT_ZDOWN_R; in gmtinit_parse_J_option()
5369 GMT->current.proj.z_down = GMT_ZDOWN_ZP; in gmtinit_parse_J_option()
5372 GMT->current.proj.z_down = GMT_ZDOWN_Z; in gmtinit_parse_J_option()
5375 GMT->current.proj.z_down = GMT_ZDOWN_ZR; in gmtinit_parse_J_option()
5405 GMT->current.proj.z_down = GMT_ZDOWN_Z; in gmtinit_parse_J_option()
/dports/games/openttd/openttd-12.1/src/
H A Dtrain_cmd.cpp2880 byte z_down; ///< Fraction to add when moving down. member
2905 uint16 spd = v->cur_speed + asp->z_down; in AffectSpeedByZChange()