HomeSort by relevance Sort by last modified time
    Searched refs:precision (Results 101 - 125 of 780) sorted by null

1 2 3 45 6 7 8 91011>>

  /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);
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 100 InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective);
106 glu::Precision m_precision;
112 InterpolationCase::InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective)
114 , m_precision (precision)
125 static bool isValidFloat (glu::Precision precision, float val)
127 if (precision == glu::PRECISION_MEDIUMP)
140 static bool isValidFloatVec (glu::Precision precision, const tcu::Vector<float, Size>& vec
    [all...]
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 103 InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective);
109 glu::Precision m_precision;
115 InterpolationCase::InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective)
117 , m_precision (precision)
128 static bool isValidFloat (glu::Precision precision, float val)
130 if (precision == glu::PRECISION_MEDIUMP)
143 static bool isValidFloatVec (glu::Precision precision, const tcu::Vector<float, Size>& vec
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
TimelineGrid.js 53 * @return {!{offsets: !Array.<number>, precision: number}}
97 return {offsets: offsets, precision: Math.max(0, -Math.floor(Math.log(gridSliceTime * 1.01) / Math.LN10))};
114 var precision = 0;
118 precision = dividersData.precision;
143 var text = printDeltas ? calculator.formatTime(calculator.zeroTime() + time - lastTime) : calculator.formatTime(time, precision);
183 var precision = 0;
187 precision = dividersData.precision;
218 dividerLabelBar._labelElement.textContent = printDeltas ? calculator.formatTime(time - lastTime) : calculator.formatTime(time, precision);
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
Types.h 222 : type(t), precision(EbpUndefined), qualifier(EvqGlobal),
230 : type(t), precision(p), qualifier(q),
238 : type(EbtStruct), precision(p), qualifier(EvqTemporary),
246 : type(EbtInterfaceBlock), precision(EbpUndefined), qualifier(qualifierIn),
264 return precision;
268 precision = p;
389 // precision here.
436 return ::getPrecisionString(precision);
472 TPrecision precision; member in class:TType
503 TPrecision precision; member in struct:TPublicType
    [all...]
  /external/chromium_org/cc/output/
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;
214 precision mediump float;
703 TexCoordPrecision precision, SamplerType sampler) const {
705 precision mediump float;
717 TexCoordPrecision precision, SamplerType sampler) const
    [all...]
gl_renderer_unittest.cc 75 void TestShadersWithTexCoordPrecision(TexCoordPrecision precision) {
76 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassProgram(precision));
77 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassProgramAA(precision));
78 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassMaskProgram(precision));
79 EXPECT_PROGRAM_VALID(renderer()->GetRenderPassMaskProgramAA(precision));
81 renderer()->GetRenderPassColorMatrixProgram(precision));
83 renderer()->GetRenderPassMaskColorMatrixProgramAA(precision));
85 renderer()->GetRenderPassColorMatrixProgramAA(precision));
87 renderer()->GetRenderPassMaskColorMatrixProgram(precision));
88 EXPECT_PROGRAM_VALID(renderer()->GetTextureProgram(precision));
    [all...]
gl_renderer.cc     [all...]
  /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/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 rowSpacer(""), coeffSeparator(_coeffSeparator), precision(_precision), flags(_flags)
70 int precision; member in struct:Eigen::IOFormat
168 if(fmt.precision == StreamPrecision)
172 else if(fmt.precision == FullPrecision)
185 explicit_precision = fmt.precision;
189 if(explicit_precision) old_precision = s.precision(explicit_precision)
    [all...]
  /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)
  /external/chromium_org/third_party/libxslt/libexslt/
math.c 348 * @precision: number
353 * Returns a number value of the given constant with the given precision or
358 exsltMathConstant (xmlChar *name, double precision) {
362 if ((name == NULL) || (xmlXPathIsNaN(precision)) || (precision < 1.0)) {
369 if (precision <= len)
370 len = (int)precision;
377 if (precision <= len)
378 len = (int)precision;
385 if (precision <= len
    [all...]
  /external/chromium_org/third_party/angle/samples/angle/hello_triangle/
HelloTriangle.cpp 40 precision mediump float;
  /external/deqp/framework/delibs/decpp/
deStringUtil.hpp 49 std::string floatToString (float val, int precision);
  /external/flac/libFLAC/
float.c 275 FLAC__uint32 FLAC__fixedpoint_log2(FLAC__uint32 x, unsigned fracbits, unsigned precision)
286 if(precision > LOG2_LOOKUP_PRECISION)
287 precision = LOG2_LOOKUP_PRECISION;
293 while (x > ONE && k < precision) {
  /external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
acos_valarray.pass.cpp 25 o.precision(p);
asin_valarray.pass.cpp 25 o.precision(p);
atan2_valarray_valarray.pass.cpp 25 o.precision(p);
atan2_valarray_value.pass.cpp 25 o.precision(p);
atan2_value_valarray.pass.cpp 25 o.precision(p);
atan_valarray.pass.cpp 25 o.precision(p);
cos_valarray.pass.cpp 25 o.precision(p);

Completed in 483 milliseconds

1 2 3 45 6 7 8 91011>>