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

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-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...]
  /external/mksh/src/
expr.c 65 /* precisions; used to be enum prec but we do arithmetics on it */
88 uint8_t prec; member in struct:opinfo
338 evalexpr(Expr_state *es, unsigned int prec)
344 if (prec == P_PRIMARY) {
400 /* prec == P_PRIMARY */
403 vl = evalexpr(es, prec - 1);
405 opinfo[(int)op].prec == prec) {
434 vr = intvar(es, evalexpr(es, prec - 1));
582 vr = intvar(es, evalexpr(es, prec - 1))
    [all...]
  /external/libnfc-nci/src/include/
trace_api.h 57 BT_API extern void DispNDEFRecord (UINT8 *pRec, INT8 *pDescr);
91 BT_API extern void RPC_DispNDEFRecord (UINT8 *pRec, INT8 *pDescr);
  /external/pdfium/third_party/libopenjpeg20/
dwt.h 114 @param prec Precint analyzed
116 void opj_dwt_calc_explicit_stepsizes(opj_tccp_t * tccp, OPJ_UINT32 prec);
  /external/jemalloc/src/
util.c 408 int prec = -1; local
467 prec = va_arg(ap, int);
477 prec = (int)uprec;
561 slen = (prec < 0) ? strlen(s) : (size_t)prec;
  /toolchain/binutils/binutils-2.25/gas/config/
tc-moxie.c 562 int prec; local
570 prec = 2;
574 prec = 4;
586 *sizeP = prec * 2;
588 for (i = prec - 1; i >= 0; i--)
  /external/clang/lib/Format/
TokenAnnotator.cpp 272 getBinOpPrecedence(Parent->Tok.getKind(), true, true) > prec::Unknown);
833 if (Current.getPrecedence() == prec::Assignment &&
    [all...]
ContinuationIndenter.cpp 197 bool IsComparison = (Previous.getPrecedence() == prec::Relational ||
198 Previous.getPrecedence() == prec::Equality) &&
204 Previous.getPrecedence() != prec::Assignment &&
378 ((Previous.getPrecedence() != prec::Assignment &&
    [all...]
  /prebuilts/go/darwin-x86/src/go/constant/
value.go 149 // If prec > 0, prec specifies an upper limit for the precision of
152 // BUG(gri) Only prec == 0 is supported at the moment.
153 func MakeFromLiteral(lit string, tok token.Token, prec uint) Value {
154 if prec != 0 {
498 // If prec > 0 it specifies the ^ (xor) result size in bits.
501 func UnaryOp(op token.Token, y Value, prec uint) Value {
541 if prec > 0 {
542 z.AndNot(&z, new(big.Int).Lsh(big.NewInt(-1), prec)) // z &^= (-1)<<prec
    [all...]
  /prebuilts/go/linux-x86/src/go/constant/
value.go 149 // If prec > 0, prec specifies an upper limit for the precision of
152 // BUG(gri) Only prec == 0 is supported at the moment.
153 func MakeFromLiteral(lit string, tok token.Token, prec uint) Value {
154 if prec != 0 {
498 // If prec > 0 it specifies the ^ (xor) result size in bits.
501 func UnaryOp(op token.Token, y Value, prec uint) Value {
541 if prec > 0 {
542 z.AndNot(&z, new(big.Int).Lsh(big.NewInt(-1), prec)) // z &^= (-1)<<prec
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Formatter.java     [all...]
  /external/eigen/Eigen/src/Core/
DenseBase.h 340 const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
342 const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
345 const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
347 bool isApproxToConstant(const Scalar& value, const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
348 bool isConstant(const Scalar& value, const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
349 bool isZero(const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
350 bool isOnes(const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
floatconv_test.go 154 prec int
294 got := f.Text(test.format, test.prec)
307 want := strconv.FormatFloat(test.x, test.format, test.prec, 64)
317 prec uint
409 f, _, err := ParseFloat(test.x, 0, test.prec, ToNearestEven)
424 if test.prec == 53 && test.format != 'p' && f.Sign() != 0 {
445 // below once (*Float).Text supports prec < 0
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
floatconv_test.go 151 prec int
291 got := f.Text(test.format, test.prec)
304 want := strconv.FormatFloat(test.x, test.format, test.prec, 64)
314 prec uint
406 f, _, err := ParseFloat(test.x, 0, test.prec, ToNearestEven)
421 if test.prec == 53 && test.format != 'p' && f.Sign() != 0 {
442 // below once (*Float).Text supports prec < 0
  /prebuilts/go/darwin-x86/src/math/big/
floatconv_test.go 151 prec int
291 got := f.Text(test.format, test.prec)
304 want := strconv.FormatFloat(test.x, test.format, test.prec, 64)
314 prec uint
406 f, _, err := ParseFloat(test.x, 0, test.prec, ToNearestEven)
421 if test.prec == 53 && test.format != 'p' && f.Sign() != 0 {
442 // below once (*Float).Text supports prec < 0
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
floatconv_test.go 154 prec int
294 got := f.Text(test.format, test.prec)
307 want := strconv.FormatFloat(test.x, test.format, test.prec, 64)
317 prec uint
409 f, _, err := ParseFloat(test.x, 0, test.prec, ToNearestEven)
424 if test.prec == 53 && test.format != 'p' && f.Sign() != 0 {
445 // below once (*Float).Text supports prec < 0
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
floatconv_test.go 151 prec int
291 got := f.Text(test.format, test.prec)
304 want := strconv.FormatFloat(test.x, test.format, test.prec, 64)
314 prec uint
406 f, _, err := ParseFloat(test.x, 0, test.prec, ToNearestEven)
421 if test.prec == 53 && test.format != 'p' && f.Sign() != 0 {
442 // below once (*Float).Text supports prec < 0
  /prebuilts/go/linux-x86/src/math/big/
floatconv_test.go 151 prec int
291 got := f.Text(test.format, test.prec)
304 want := strconv.FormatFloat(test.x, test.format, test.prec, 64)
314 prec uint
406 f, _, err := ParseFloat(test.x, 0, test.prec, ToNearestEven)
421 if test.prec == 53 && test.format != 'p' && f.Sign() != 0 {
442 // below once (*Float).Text supports prec < 0
  /external/bison/src/
reader.c 343 && !r->ruleprec->declared && !r->ruleprec->prec)
344 warn_at (r->location, _("token for %%prec is not defined: %s"),
426 allows to follow a %prec is a token and because assuming it's a
430 appears after %prec but that is not defined separately as a
434 complain_at (loc, _("only one %s allowed per rule"), "%prec");
526 rules[ruleno].prec = NULL;
567 rules[ruleno].prec = p->content.sym;
570 /* If this rule has a %prec,
575 rules[ruleno].prec = ruleprec;
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Hyperplane.h 243 * determined by \a prec.
246 bool isApprox(const Hyperplane& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
247 { return m_coeffs.isApprox(other.m_coeffs, prec); }
  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 266 * determined by \a prec.
270 bool isApprox(const Hyperplane<Scalar,AmbientDimAtCompileTime,OtherOptions>& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const
271 { return m_coeffs.isApprox(other.m_coeffs, prec); }
  /external/opencv3/3rdparty/libjasper/
jp2_enc.c 113 int prec; local
121 prec = jas_image_cmptprec(image, 0);
124 jas_image_cmptprec(image, i) != prec) {
  /bionic/libc/kernel/uapi/linux/
joystick.h 54 __s16 prec; member in struct:js_corr
  /development/ndk/platforms/android-21/include/linux/
joystick.h 54 __s16 prec; member in struct:js_corr
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderPackingFunctionTests.cpp     [all...]

Completed in 1687 milliseconds

1 2 3 4 56 7 8 91011>>