Home
last modified time | relevance | path

Searched refs:double_limit (Results 1 – 7 of 7) sorted by relevance

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/search/abuse_validators/
H A Dno_abusive_term_length_validator_spec.rb39 'http://' + 'x' * (double_limit - 12) + '.com',
40 'https://' + 'x' * (double_limit - 13) + '.com',
41 'sftp://' + 'x' * (double_limit - 12) + '.com',
42 'ftp://' + 'x' * (double_limit - 11) + '.com',
43 'http://' + 'x' * (double_limit - 8) # no tld is OK
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/STLport-5.2.1/src/
H A Dcomplex_trig.cpp39 static const double double_limit = double_ulimit.d; variable
50 static const double double_limit = M_LN2 * DBL_MAX_EXP;
53 static const double double_limit = ::log(DBL_MAX);
122 { return tanT(z, double_limit); } in tan()
185 { return tanhT(z, double_limit); } in tanh()
/dports/games/warmux/warmux-11.04/build/symbian/lib/stlport/src/
H A Dcomplex_trig.cpp39 static const double double_limit = double_ulimit.d; variable
50 static const double double_limit = M_LN2 * DBL_MAX_EXP;
53 static const double double_limit = ::log(DBL_MAX);
122 { return tanT(z, double_limit); } in tan()
185 { return tanhT(z, double_limit); } in tanh()
/dports/net/py-geopy/geopy-2.2.0/geopy/
H A Dpoint.py47 double_limit = limit * 2.0
48 modulo = fmod(x, double_limit) or 0.0 # `or 0` is to turn -0 to +0.
50 return modulo + double_limit
52 return modulo - double_limit
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/archipack/
H A Darchipack_stair.py191 def curved_stair(self, da, radius, left_shape, right_shape, double_limit=pi): argument
201 left_shape, right_shape, double_limit=double_limit)
213 left_shape, right_shape, double_limit=double_limit, last_type=last_type)
464 z_mode, nose_z, bottom_z, left_shape, right_shape, double_limit=pi): argument
470 self.edges_multiples = round(abs(da), 6) > double_limit
756 def curved_landing(self, da, radius, left_shape, right_shape, double_limit=pi): argument
758 right_shape, double_limit=double_limit, last_type='LANDING')
772 nose_type, z_mode, nose_z, bottom_z, left_shape, right_shape, double_limit=double_limit)
846 def curved_landing(self, da, radius, left_shape, right_shape, double_limit=pi): argument
848 right_shape, double_limit=double_limit, last_type='LANDING')
[all …]
/dports/math/ntl/ntl-11.5.1/src/
H A Dmat_ZZ.cpp1148 long double_limit = 0; in solve1() local
1155 double_limit = (1L << (NTL_DOUBLE_PRECISION-1-max_A_len-NTL_SP_NBITS)); in solve1()
1179 if (long_limit > double_limit) in solve1()
1260 double_MixedMul2(t, double_h, double_A, n, double_limit); in solve1()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/datafusion/src/optimizer/
H A Dfilter_push_down.rs703 fn double_limit() -> Result<()> { in double_limit() function