HomeSort by relevance Sort by last modified time
    Searched full:prec (Results 76 - 100 of 727) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
bits_test.go 109 // to prec bits according to mode.
110 func (x Bits) round(prec uint, mode RoundingMode) *Float {
124 if prec >= prec0 {
127 // prec < prec0
132 r := max - int(prec)
155 f.SetMode(ToZero).SetPrec(prec)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
bits_test.go 106 // to prec bits according to mode.
107 func (x Bits) round(prec uint, mode RoundingMode) *Float {
121 if prec >= prec0 {
124 // prec < prec0
129 r := max - int(prec)
152 f.SetMode(ToZero).SetPrec(prec)
  /prebuilts/go/darwin-x86/src/math/big/
bits_test.go 106 // to prec bits according to mode.
107 func (x Bits) round(prec uint, mode RoundingMode) *Float {
121 if prec >= prec0 {
124 // prec < prec0
129 r := max - int(prec)
152 f.SetMode(ToZero).SetPrec(prec)
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
bits_test.go 109 // to prec bits according to mode.
110 func (x Bits) round(prec uint, mode RoundingMode) *Float {
124 if prec >= prec0 {
127 // prec < prec0
132 r := max - int(prec)
155 f.SetMode(ToZero).SetPrec(prec)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
bits_test.go 106 // to prec bits according to mode.
107 func (x Bits) round(prec uint, mode RoundingMode) *Float {
121 if prec >= prec0 {
124 // prec < prec0
129 r := max - int(prec)
152 f.SetMode(ToZero).SetPrec(prec)
  /prebuilts/go/linux-x86/src/math/big/
bits_test.go 106 // to prec bits according to mode.
107 func (x Bits) round(prec uint, mode RoundingMode) *Float {
121 if prec >= prec0 {
124 // prec < prec0
129 r := max - int(prec)
152 f.SetMode(ToZero).SetPrec(prec)
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 26 namespace prec { namespace in namespace:clang
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
  /external/eigen/Eigen/src/Core/
Dot.h 220 * within the precision given by \a prec.
228 (const MatrixBase<OtherDerived>& other, const RealScalar& prec) const
232 return numext::abs2(nested.dot(otherNested)) <= prec * prec * nested.squaredNorm() * otherNested.squaredNorm();
236 * within the precision given by \a prec. In the case where the \a Scalar
247 bool MatrixBase<Derived>::isUnitary(const RealScalar& prec) const
252 if(!internal::isApprox(nested.col(i).squaredNorm(), static_cast<RealScalar>(1), prec))
255 if(!internal::isMuchSmallerThan(nested.col(i).dot(nested.col(j)), static_cast<Scalar>(1), prec))
  /external/bison/tests/
conflicts.at 388 | /*empty*/ %prec 'a'
496 reduce-nonassoc: %prec 'a';
968 ## %prec with user strings. ##
971 AT_SETUP([%prec with user string])
976 "foo" %prec "foo"
985 ## %no-default-prec without %prec. ##
988 AT_SETUP([%no-default-prec without %prec])
996 %no-default-prec;
    [all...]
  /external/opencv3/3rdparty/libjasper/
jas_image.c 103 static uint_fast32_t inttobits(jas_seqent_t v, int prec, bool sgnd);
104 static jas_seqent_t bitstoint(uint_fast32_t v, int prec, bool sgnd);
105 static int putint(jas_stream_t *out, int sgnd, int prec, long val);
106 static int getint(jas_stream_t *in, int sgnd, int prec, long *val);
160 (cmptparm->prec + 7) / 8;
171 cmptparm->width, cmptparm->height, cmptparm->prec,
671 cmptparm->width, cmptparm->height, cmptparm->prec,
717 static uint_fast32_t inttobits(jas_seqent_t v, int prec, bool sgnd)
720 ret = ((sgnd && v < 0) ? ((1 << prec) + v) : v) & JAS_ONES(prec);
1285 int prec; local
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
AlignedBox.h 133 * determined by \a prec.
136 bool isApprox(const AlignedBox& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
137 { return m_min.isApprox(other.m_min, prec) && m_max.isApprox(other.m_max, prec); }
ParametrizedLine.h 109 * determined by \a prec.
112 bool isApprox(const ParametrizedLine& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
113 { return m_origin.isApprox(other.m_origin, prec) && m_direction.isApprox(other.m_direction, prec); }
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 129 * determined by \a prec.
132 bool isApprox(const ParametrizedLine& other, typename NumTraits<Scalar>::Real prec = NumTraits<Scalar>::dummy_precision()) const
133 { return m_origin.isApprox(other.m_origin, prec) && m_direction.isApprox(other.m_direction, prec); }
  /external/eigen/unsupported/test/mpreal/
mpreal.h 178 mpreal(const mpz_t u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
179 mpreal(const mpq_t u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
180 mpreal(const double u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
181 mpreal(const long double u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
182 mpreal(const unsigned long int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
183 mpreal(const unsigned int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
184 mpreal(const long int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
185 mpreal(const int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
192 mpreal(const uint64_t u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
193 mpreal(const int64_t u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
671 mpfr_init2(mpfr_ptr(), prec); local
679 mpfr_init2(mpfr_ptr(), prec); local
687 mpfr_init2(mpfr_ptr(), prec); local
704 mpfr_init2 (mpfr_ptr(), prec); local
712 mpfr_init2 (mpfr_ptr(), prec); local
720 mpfr_init2 (mpfr_ptr(), prec); local
728 mpfr_init2 (mpfr_ptr(), prec); local
736 mpfr_init2 (mpfr_ptr(), prec); local
745 mpfr_init2 (mpfr_ptr(), prec); local
753 mpfr_init2 (mpfr_ptr(), prec); local
762 mpfr_init2 (mpfr_ptr(), prec); local
770 mpfr_init2 (mpfr_ptr(), prec); local
    [all...]
  /external/libcxx/test/std/input.output/iostreams.base/ios.base/fmtflags.state/
precision_streamsize.pass.cpp 14 // streamsize precision(streamsize prec);
  /external/llvm/test/CodeGen/Thumb2/
2009-11-13-STRDBug.ll 4 define void @lshift_double(i64 %l1, i64 %h1, i64 %count, i32 %prec, i64* nocapture %lv, i64* nocapture %hv, i32 %arith) nounwind {
  /external/ppp/pppd/
utils.c 163 int width, prec, fillch; local
192 prec = -1;
210 prec = va_arg(args, int);
213 prec = 0;
215 prec = prec * 10 + c - '0';
311 if (fillch == '0' && prec >= 0) {
312 n = prec;
315 if (prec >= 0 && n > prec)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
precision_streamsize.pass.cpp 14 // streamsize precision(streamsize prec);
  /packages/inputmethods/LatinIME/java/res/values-it/
strings-action-keys.xml 25 <string name="label_previous_key" msgid="1421141755779895275">"Prec."</string>
  /external/bison/src/
gram.h 61 RULES[R].prec -- the symbol providing the precedence level of R.
63 RULES[R].precsym -- the symbol attached (via %prec) to give its
64 precedence to R. Of course, if set, it is equal to `prec', but we
66 in a %prec is not useless.
96 SYMBOLS[I]->prec records the precedence level of each symbol.
187 symbol *prec; member in struct:__anon7215
192 /* This symbol was attached to the rule via %prec. */
parse-gram.y 143 %token PERCENT_PREC "%prec"
155 PERCENT_DEFAULT_PREC "%default-prec"
168 PERCENT_NO_DEFAULT_PREC "%no-default-prec"
219 %type <symbol> id id_colon string_as_id symbol symbol.prec
224 %type <list> symbols.1 symbols.prec generic_symlist generic_symlist_item
373 | "%default-prec"
377 | "%no-default-prec"
441 precedence_declarator type.opt symbols.prec
467 symbols.prec:
468 symbol.prec
    [all...]
  /external/curl/lib/
mprintf.c 598 long prec; local
655 prec = (long)vto[p->precision].data.num.as_signed;
660 prec = p->precision;
662 prec = -1;
723 if(prec == -1)
724 prec = 1;
733 prec -= (long)(workend - w);
735 if(is_alt && base == 8 && prec <= 0) {
740 if(prec > 0) {
741 width -= prec;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
atof-ieee.c 724 int prec = 0;
734 prec = F_PRECISION;
741 prec = D_PRECISION;
746 prec = X_PRECISION;
758 prec = P_PRECISION + 1;
760 prec = P_PRECISION;
778 prec = F_PRECISION;
780 prec = D_PRECISION;
782 if (prec == 0)
788 gas_assert (prec <= MAX_LITTLENUMS)
722 int prec = 0; local
    [all...]
tc-lm32.c 221 int prec; local
229 prec = 2;
232 prec = 4;
243 *sizeP = prec * sizeof (LITTLENUM_TYPE);
247 for (i = 0; i < prec; i++)
256 for (i = prec - 1; i >= 0; i--)
  /external/fdlibm/
k_rem_pio2.c 15 * __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
16 * double x[],y[]; int e0,nx,prec; int ipio2[];
64 * prec an integer indicating the precision:
164 int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int *ipio2)
166 int __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
167 double x[], y[]; int e0,nx,prec; int ipio2[];
174 jk = init_jk[prec];
282 switch(prec) {

Completed in 1614 milliseconds

1 2 34 5 6 7 8 91011>>