HomeSort by relevance Sort by last modified time
    Searched refs:precision (Results 51 - 75 of 558) sorted by null

1 23 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.assign/
member_swap.pass.cpp 51 assert(os1.precision() == 6);
59 assert(os2.precision() == 6);
74 assert(os1.precision() == 6);
82 assert(os2.precision() == 6);
move_assign.pass.cpp 57 assert(os1.precision() == 6);
65 assert(os2.precision() == 6);
80 assert(os1.precision() == 6);
88 assert(os2.precision() == 6);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pystrtod.h 23 int precision,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pystrtod.h 23 int precision,
  /external/stlport/src/
num_put_float.cpp 403 // If long double value can be safely converted to double without losing precision
443 // If long double value can be safely converted to double without losing precision
481 // according to the specified precision and format flags. This is
490 int precision) {
506 if (precision != 0 || flags & ios_base::showpoint) {
511 while (*bp != 0 && precision--)
515 if (precision > 0)
516 buf.append(precision, '0');
553 int precision) {
554 if ( sign && (decpt > -precision) && (*bp != 0)
761 snprintf(_STLP_ARRAY_AND_SIZE(static_buf), fmtbuf, precision, x); local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 403 // If long double value can be safely converted to double without losing precision
443 // If long double value can be safely converted to double without losing precision
481 // according to the specified precision and format flags. This is
490 int precision) {
506 if (precision != 0 || flags & ios_base::showpoint) {
511 while (*bp != 0 && precision--)
515 if (precision > 0)
516 buf.append(precision, '0');
553 int precision) {
554 if ( sign && (decpt > -precision) && (*bp != 0)
761 snprintf(_STLP_ARRAY_AND_SIZE(static_buf), fmtbuf, precision, x); local
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 10 // This file implements a class to represent arbitrary precision floating
55 unsigned int precision; member in struct:llvm::fltSemantics
634 unsigned bitsToPreserve = semantics->precision - 1;
642 unsigned QNaNBit = semantics->precision - 2;
658 // For x87 extended precision, we want to make a NaN, not a
690 semantics->precision - 1) == 0);
713 PartCount*integerPartWidth - semantics->precision + 1;
735 PartCount*integerPartWidth - semantics->precision + 1;
783 exponent = ourSemantics.precision - 1;
822 return partCountForBits(semantics->precision + 1)
    [all...]
  /cts/suite/cts/deviceTests/opengl/assets/fragment/
blur 14 precision mediump float;
  /cts/suite/cts/deviceTests/opengl/assets/vertex/
perspective 14 precision mediump float;
  /external/chromium_org/cc/output/
program_binding.h 60 TexCoordPrecision precision,
71 fragment_shader_.GetShaderString(precision, sampler))) {
shader.cc 18 precision, SetFragmentSamplerType(sampler, SHADER0(Src)))
70 // way that the effective precision might be lower than expected.
80 // Initialize range and precision with minimum spec values for when
85 GLint precision = 10; local
88 range, &precision));
89 *highp_threshold_cache = 1 << precision;
213 precision mediump float;
701 TexCoordPrecision precision, SamplerType sampler) const {
703 precision mediump float;
715 TexCoordPrecision precision, SamplerType sampler) const
    [all...]
gl_renderer_unittest.cc 85 void TestShadersWithTexCoordPrecision(TexCoordPrecision precision) {
86 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassProgram(precision));
87 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassProgramAA(precision));
88 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassMaskProgram(precision));
89 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassMaskProgramAA(precision));
91 renderer()->GetRenderPassColorMatrixProgram(precision));
93 renderer()->GetRenderPassMaskColorMatrixProgramAA(precision));
95 renderer()->GetRenderPassColorMatrixProgramAA(precision));
97 renderer()->GetRenderPassMaskColorMatrixProgram(precision));
98 EXPECT_PROGRAM_VALID(renderer()->GetTextureProgram(precision));
    [all...]
gl_renderer.cc     [all...]
  /external/chromium_org/third_party/angle/src/compiler/
Types.h 99 type(t), precision(p), qualifier(q), size(s), matrix(m), array(a), arraySize(0), structure(0)
104 type(EbtStruct), precision(p), qualifier(EvqTemporary), size(1), matrix(false), array(false), arraySize(0), structure(userDef)
111 TPrecision getPrecision() const { return precision; }
112 void setPrecision(TPrecision p) { precision = p; }
210 const char* getPrecisionString() const { return ::getPrecisionString(precision); }
238 TPrecision precision; member in class:TType
263 TPrecision precision; member in struct:TPublicType
275 precision = EbpUndefined;
  /external/eigen/Eigen/src/Core/
IO.h 31 * - \b precision number of digits for floating point values, or one of the special constants \c StreamPrecision and \c FullPrecision.
33 * stream's own precision setting, as set for instance using \c cout.precision(3). The other special value
34 * \c FullPrecision means that the number of digits will be computed to match the full precision of each floating-point
58 coeffSeparator(_coeffSeparator), precision(_precision), flags(_flags)
71 int precision; member in struct:Eigen::IOFormat
168 if(fmt.precision == StreamPrecision)
172 else if(fmt.precision == FullPrecision)
185 explicit_precision = fmt.precision;
196 if(explicit_precision) sstr.precision(explicit_precision)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
streambuf.pass.cpp 38 assert(is.precision() == 6);
51 assert(is.precision() == 6);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
streambuf.pass.cpp 38 assert(is.precision() == 6);
51 assert(is.precision() == 6);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
streambuf.pass.cpp 38 assert(os.precision() == 6);
50 assert(os.precision() == 6);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.cons/
ctor_streambuf.pass.cpp 31 assert(ios.precision() == 6);
44 assert(ios.precision() == 6);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalConstructorsTest.java 101 int precision = 46; local
103 MathContext mc = new MathContext(precision, rm);
118 int precision = 46; local
120 MathContext mc = new MathContext(precision, rm);
175 int precision = 4; local
177 MathContext mc = new MathContext(precision, rm);
199 int precision = 4; local
201 MathContext mc = new MathContext(precision, rm);
216 int precision = 4; local
218 MathContext mc = new MathContext(precision, rm)
291 int precision = 21; local
354 int precision = 21; local
381 int precision = 5; local
675 int precision = 5; local
    [all...]
BigDecimalCompareTest.java 62 int precision = 15; local
64 MathContext mc = new MathContext(precision, rm);
78 int precision = 41; local
80 MathContext mc = new MathContext(precision, rm);
373 int precision = 37; local
375 MathContext mc = new MathContext(precision, rm);
403 int precision = 46; local
405 MathContext mc = new MathContext(precision, rm);
433 int precision = 37; local
435 MathContext mc = new MathContext(precision, rm)
463 int precision = 46; local
    [all...]
  /external/chromium_org/cc/test/
fake_web_graphics_context_3d.cc 139 blink::WGC3Dint* precision) {
140 // Return the minimum precision requirements of the GLES specificatin.
145 *precision = 0;
150 *precision = 0;
155 *precision = 0;
160 *precision = 8;
165 *precision = 10;
170 *precision = 16;
  /external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
SDL_bsdaudio.c 260 "precision : %i-bit\n"
273 info.play.precision,
339 info.play.precision = 8;
343 info.play.precision = 8;
347 info.play.precision = 16;
351 info.play.precision = 16;
355 info.play.precision = 16;
359 info.play.precision = 16;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
timeit.py 20 -v/--verbose: print raw timing results; repeat for more digits precision
267 precision = 3
283 precision += 1
305 print "%d loops -> %.*g secs" % (number, precision, x)
315 print "raw times:", " ".join(["%.*g" % (precision, x) for x in r])
319 print "best of %d: %.*g usec per loop" % (repeat, precision, usec)
323 print "best of %d: %.*g msec per loop" % (repeat, precision, msec)
326 print "best of %d: %.*g sec per loop" % (repeat, precision, sec)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
timeit.py 20 -v/--verbose: print raw timing results; repeat for more digits precision
267 precision = 3
283 precision += 1
305 print "%d loops -> %.*g secs" % (number, precision, x)
315 print "raw times:", " ".join(["%.*g" % (precision, x) for x in r])
319 print "best of %d: %.*g usec per loop" % (repeat, precision, usec)
323 print "best of %d: %.*g msec per loop" % (repeat, precision, msec)
326 print "best of %d: %.*g sec per loop" % (repeat, precision, sec)

Completed in 1504 milliseconds

1 23 4 5 6 7 8 91011>>