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

1 2 3 45 6 7 8 91011>>

  /external/clang/test/CodeGen/
2008-03-24-BitField-And-Alloca.c 47 unsigned int prec : 1; member in struct:_Key::__anon8627
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 295 /** \returns true if all coefficients in this matrix are approximately equal to \a val, to within precision \a prec */
298 (const Scalar& val, const RealScalar& prec) const
302 if(!internal::isApprox(this->coeff(i, j), val, prec))
309 * \returns true if all coefficients in this matrix are approximately equal to \a value, to within precision \a prec */
312 (const Scalar& val, const RealScalar& prec) const
314 return isApproxToConstant(val, prec);
474 * within the precision given by \a prec.
482 bool DenseBase<Derived>::isZero(const RealScalar& prec) const
486 if(!internal::isMuchSmallerThan(this->coeff(i, j), static_cast<Scalar>(1), prec))
603 * are equal to 1, within the precision given by \a prec
    [all...]
MathFunctions.h 653 static inline bool isMuchSmallerThan(const Scalar& x, const OtherScalar& y, const RealScalar& prec)
656 return abs(x) <= abs(y) * prec;
658 static inline bool isApprox(const Scalar& x, const Scalar& y, const RealScalar& prec)
662 return abs(x - y) <= (min)(abs(x), abs(y)) * prec;
664 static inline bool isApproxOrLessThan(const Scalar& x, const Scalar& y, const RealScalar& prec)
666 return x <= y || isApprox(x, y, prec);
694 static inline bool isMuchSmallerThan(const Scalar& x, const OtherScalar& y, const RealScalar& prec)
696 return numext::abs2(x) <= numext::abs2(y) * prec * prec;
698 static inline bool isApprox(const Scalar& x, const Scalar& y, const RealScalar& prec)
    [all...]
DiagonalMatrix.h 284 * within the precision given by \a prec.
292 bool MatrixBase<Derived>::isDiagonal(const RealScalar& prec) const
305 if(!internal::isMuchSmallerThan(coeff(i, j), maxAbsOnDiagonal, prec)) return false;
306 if(!internal::isMuchSmallerThan(coeff(j, i), maxAbsOnDiagonal, prec)) return false;
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
AngleAxis.h 140 * determined by \a prec.
143 bool isApprox(const AngleAxis& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
144 { return m_axis.isApprox(other.m_axis, prec) && ei_isApprox(m_angle,other.m_angle, prec); }
Rotation2D.h 107 * determined by \a prec.
110 bool isApprox(const Rotation2D& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
111 { return ei_isApprox(m_angle,other.m_angle, prec); }
Scaling.h 130 * determined by \a prec.
133 bool isApprox(const Scaling& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
134 { return m_coeffs.isApprox(other.m_coeffs, prec); }
Translation.h 133 * determined by \a prec.
136 bool isApprox(const Translation& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
137 { return m_coeffs.isApprox(other.m_coeffs, prec); }
  /external/eigen/Eigen/src/Geometry/
AngleAxis.h 137 * determined by \a prec.
140 bool isApprox(const AngleAxis& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const
141 { return m_axis.isApprox(other.m_axis, prec) && internal::isApprox(m_angle,other.m_angle, prec); }
Rotation2D.h 117 * determined by \a prec.
120 bool isApprox(const Rotation2D& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const
121 { return internal::isApprox(m_angle,other.m_angle, prec); }
Scaling.h 99 * determined by \a prec.
102 bool isApprox(const UniformScaling& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const
103 { return internal::isApprox(m_factor, other.factor(), prec); }
Translation.h 162 * determined by \a prec.
165 bool isApprox(const Translation& other, typename NumTraits<Scalar>::Real prec = NumTraits<Scalar>::dummy_precision()) const
166 { return m_coeffs.isApprox(other.m_coeffs, prec); }
  /external/pdfium/third_party/libopenjpeg20/
image.c 64 comp->prec = cmptparms[compno].prec;
235 comp->prec = cmptparms[compno].prec;
tcd.c 78 opj_tcd_precinct_t *prec = &band->precincts[precno]; local
79 fprintf(fd, " prec {\n");
82 prec->x0, prec->y0, prec->x1, prec->y1, prec->cw, prec->ch);
84 for (cblkno = 0; cblkno < prec->cw * prec->ch; cblkno++)
    [all...]
  /external/bison/src/
conflicts.c 108 r->prec->tag,
116 r->prec->tag);
180 xml_escape_n (0, r->prec->tag),
188 xml_escape_n (1, r->prec->tag));
267 int redprec = redrule->prec->prec;
273 && symbols[i]->prec)
278 if (symbols[i]->prec < redprec)
283 else if (symbols[i]->prec > redprec)
348 if (reds->rules[i]->prec && reds->rules[i]->prec->pre
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jcmarker.c 151 int prec; local
157 prec = 0;
160 prec = 1;
167 prec ? cinfo->lim_Se * 2 + 2 + 1 + 2 : cinfo->lim_Se + 1 + 1 + 2);
169 emit_byte(cinfo, index + (prec<<4));
174 if (prec)
182 return prec;
547 int ci, prec; local
554 prec = 0;
557 prec += emit_dqt(cinfo, compptr->quant_tbl_no)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 61 >>> getcontext().prec = 18
351 return _dec_from_triple(sign, '9'*context.prec,
352 context.Emax-context.prec+1)
356 return _dec_from_triple(sign, '9'*context.prec,
357 context.Emax-context.prec+1)
472 ctx.prec += 2
485 >>> print getcontext().prec
489 ... ctx.prec += 2
490 ... print ctx.prec
494 ... print getcontext().prec
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
decimal.py 61 >>> getcontext().prec = 18
351 return _dec_from_triple(sign, '9'*context.prec,
352 context.Emax-context.prec+1)
356 return _dec_from_triple(sign, '9'*context.prec,
357 context.Emax-context.prec+1)
472 ctx.prec += 2
485 >>> print getcontext().prec
489 ... ctx.prec += 2
490 ... print ctx.prec
494 ... print getcontext().prec
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 61 >>> getcontext().prec = 18
351 return _dec_from_triple(sign, '9'*context.prec,
352 context.Emax-context.prec+1)
356 return _dec_from_triple(sign, '9'*context.prec,
357 context.Emax-context.prec+1)
472 ctx.prec += 2
485 >>> print getcontext().prec
489 ... ctx.prec += 2
490 ... print ctx.prec
494 ... print getcontext().prec
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 61 >>> getcontext().prec = 18
351 return _dec_from_triple(sign, '9'*context.prec,
352 context.Emax-context.prec+1)
356 return _dec_from_triple(sign, '9'*context.prec,
357 context.Emax-context.prec+1)
472 ctx.prec += 2
485 >>> print getcontext().prec
489 ... ctx.prec += 2
490 ... print ctx.prec
494 ... print getcontext().prec
    [all...]
  /device/google/contexthub/lib/libm/
kf_rem_pio2.c 56 int __kernel_rem_pio2f(float *x, float *y, int e0, int nx, int prec, const __int32_t *ipio2)
58 int __kernel_rem_pio2f(x,y,e0,nx,prec,ipio2)
59 float x[], y[]; int e0,nx,prec; __int32_t ipio2[];
66 jk = init_jk[prec];
174 switch(prec) {
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 200 | ppattern '?' ppattern ':' ppattern %prec '?'
202 | ppattern bor ppattern %prec BOR
204 | ppattern and ppattern %prec AND
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
221 | pattern '?' pattern ':' pattern %prec '?'
223 | pattern bor pattern %prec BOR
225 | pattern and pattern %prec AND
247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
359 | '-' term %prec UMINUS { $$ = op1(UMINUS, $2); }
360 | '+' term %prec UMINUS { $$ = $2;
    [all...]
  /external/opencv3/3rdparty/libjasper/
jas_cm.c 90 static int jas_cmputint(long **bufptr, int sgnd, int prec, long val);
91 static int jas_cmgetint(long **bufptr, int sgnd, int prec, long *val);
530 scale = (double)((1 << fmt->prec) - 1);
531 bias = fmt->sgnd ? (1 << (fmt->prec - 1)) : 0;
535 if (jas_cmgetint(&dataptr, fmt->sgnd, fmt->prec, &v))
558 scale = (double)((1 << fmt->prec) - 1);
559 bias = fmt->sgnd ? (1 << (fmt->prec - 1)) : 0;
565 if (jas_cmputint(&dataptr, fmt->sgnd, fmt->prec, v))
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderPackingFunctionTests.cpp     [all...]
  /prebuilts/go/darwin-x86/src/fmt/
print.go 45 Precision() (prec int, ok bool)
154 func (p *pp) Precision() (prec int, ok bool) { return p.fmt.prec, p.fmt.precPresent }
403 prec := p.fmt.prec
405 // If prec is already set, leave it alone; otherwise 4 is minimum.
406 p.fmt.prec = 4
414 p.fmt.prec = prec
1159 p.fmt.prec, p.fmt.precPresent, argNum = intFromArg(a, argNum
    [all...]

Completed in 784 milliseconds

1 2 3 45 6 7 8 91011>>