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

1 2 3 4 5 6 78 91011>>

  /external/valgrind/main/none/tests/ppc32/
test_dfp3.c 785 precision_type_t precision; member in struct:dfp_test
793 precision_type_t precision; member in struct:dfp_one_arg_test
823 if (test_def.precision == LONG_TEST) {
831 if (test_def.precision == QUAD_TEST) {
842 if (test_def.precision == LONG_TEST) {
884 if (test_def.precision == LONG_TEST) {
897 if (test_def.precision == QUAD_TEST) {
907 if (test_def.precision == LONG_TEST) {
950 if (test_def.precision == LONG_TEST) {
958 if (test_def.precision == QUAD_TEST)
    [all...]
test_dfp2.c 384 precision_type_t precision; member in struct:dfp_test
464 if (test_group.precision == LONG_TEST) {
473 if (test_group.precision == QUAD_TEST) {
483 if (test_group.precision == LONG_TEST) {
538 if (test_group.precision == LONG_TEST) {
547 if (test_group.precision == QUAD_TEST) {
557 if (test_group.precision) {
622 if (test_group.precision) {
  /external/chromium_org/third_party/angle/src/compiler/translator/
ShaderLang.cpp 97 // Disable highp precision in fragment shader by default.
297 ShPrecisionType* precision,
302 if (!handle || !size || !type || !precision || !staticUse || !name)
324 switch (varInfo.precision) {
326 *precision = SH_PRECISION_LOWP;
329 *precision = SH_PRECISION_MEDIUMP;
332 *precision = SH_PRECISION_HIGHP;
335 // Some types does not support precision, for example, boolean.
336 *precision = SH_PRECISION_UNDEFINED;
VariableInfo.cpp 173 varInfo.precision = type.getPrecision();
222 precision(EbpUndefined),
231 precision(EbpUndefined),
277 info.precision = EbpMedium; // Use mediump as it doesn't really matter.
290 info.precision = EbpUndefined;
303 info.precision = EbpMedium; // Use mediump as it doesn't really matter.
Types.cpp 17 : type(p.type), precision(p.precision), qualifier(p.qualifier), layoutQualifier(p.layoutQualifier),
27 if (type != other.type || precision != other.precision ||
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 98 static int AppendString(char **buff, const char *buff_end, int precision,
104 if (precision >= 0 && result >= precision)
143 int precision = -1; local
146 precision = va_arg(args, int);
155 // Only %s supports precision for now
156 CHECK(!(precision >= 0 && *cur != 's'));
182 result += AppendString(&buff, buff_end, precision, va_arg(args, char*));
  /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
704 semantics->precision - 1) == 0);
727 PartCount*integerPartWidth - semantics->precision + 1;
749 PartCount*integerPartWidth - semantics->precision + 1;
797 exponent = ourSemantics.precision - 1;
840 return partCountForBits(semantics->precision + 1)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.cc 260 DoubleToAscii(value, PRECISION, requested_digits + 1,
286 int precision,
292 if (precision < kMinPrecisionDigits || precision > kMaxPrecisionDigits) {
304 DoubleToAscii(value, PRECISION, precision,
307 ASSERT(decimal_rep_length <= precision);
320 (decimal_point - precision + extra_zero >
322 // Fill buffer to contain 'precision' digits.
325 for (int i = decimal_rep_length; i < precision; ++i)
    [all...]
double-conversion.h 95 // When converting to precision mode the converter may add
102 // max_trailing_padding_zeroes_in_precision_mode in precision mode to avoid
231 // Computes 'precision' leading digits of the given 'value' and returns them
241 // max_trailing_padding_zeroes_in_precision_mode in precision mode to avoid
260 // - precision < kMinPericisionDigits
261 // - precision > kMaxPrecisionDigits
266 int precision,
279 PRECISION
283 // A higher precision can be achieved by using more digits, but the shortest
310 // - PRECISION: produces 'requested_digits' where the first digit is not '0'
    [all...]
  /external/strace/
vsprintf.c 236 * %8.4u - no precision field for integers allowed (ok for strings)
272 int precision; /* # of digits/chars */ member in struct:printf_spec
340 //spec.precision is assumed 0 ("not specified")
342 // if (i > spec.precision)
343 // spec.precision = i;
345 // spec.field_width -= spec.precision;
381 // while (i <= --spec.precision) {
410 len = strnlen(s, spec.precision);
471 * @precision: precision of a numbe
    [all...]
  /external/mksh/src/
shf.c 767 ssize_t field, precision, len; local
798 field = precision = 0;
824 precision = 0;
830 precision = tmp;
865 precision = tmp;
873 if (precision < 0)
874 precision = 0;
979 if (precision > len) {
980 field = precision;
984 precision = len
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderSharedVarTests.cpp 73 SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize);
85 const Precision m_precision;
91 static std::string getBasicCaseDescription (DataType basicType, Precision precision, const tcu::UVec3& workGroupSize)
94 if (precision != PRECISION_LAST)
95 str << getPrecisionName(precision) << " ";
100 SharedBasicVarCase::SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize)
101 : TestCase (context, name, getBasicCaseDescription(basicType, precision, workGroupSize).c_str()
    [all...]
es31fShaderAtomicOpTests.cpp 68 ShaderAtomicOpCase (Context& context, const char* name, const char* funcName, AtomicOperandType operandType, DataType type, Precision precision, const UVec3& workGroupSize);
82 const Precision m_precision;
96 ShaderAtomicOpCase::ShaderAtomicOpCase (Context& context, const char* name, const char* funcName, AtomicOperandType operandType, DataType type, Precision precision, const UVec3& workGroupSize)
101 , m_precision (precision)
249 ShaderAtomicAddCase (Context& context, const char* name, AtomicOperandType operandType, DataType type, Precision precision)
250 : ShaderAtomicOpCase(context, name, "atomicAdd", operandType, type, precision, UVec3(3,2,1))
340 ShaderAtomicMinCase (Context& context, const char* name, AtomicOperandType operandType, DataType type, Precision precision
1013 const Precision precision = Precision(precNdx); local
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
AngleAxis.h 139 /** \returns \c true if \c *this is approximately equal to \a other, within the precision
143 bool isApprox(const AngleAxis& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
148 * single precision angle-axis type */
151 * double precision angle-axis type */
161 if (n2 < precision<Scalar>()*precision<Scalar>())
  /external/chromium_org/third_party/angle/src/common/
shadervars.h 43 GLenum precision; member in struct:gl::ShaderVariable
49 precision(precisionIn),
  /external/deqp/framework/delibs/decpp/
deStringUtil.cpp 109 std::string floatToString (float val, int precision)
112 s << std::fixed << std::setprecision(precision) << val;
  /external/e2fsprogs/intl/
vasnprintf.c 278 size_t precision; local
302 precision = 6;
312 precision = (arg < 0 ? 0 : arg);
318 precision = 0;
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0');
431 tmp_length = xsum (tmp_length, precision);
438 tmp_length = xsum (tmp_length, precision);
  /external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
Android.mk 27 test_name := input.output/iostreams.base/ios.base/fmtflags.state/precision
28 test_src := precision.pass.cpp
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalArithmeticTest.java 1158 int precision = 21; local
1178 int precision = 21; local
1198 int precision = 21; local
1218 int precision = 21; local
1238 int precision = 21; local
1258 int precision = 21; local
1278 int precision = 21; local
1333 int precision = 32; local
1353 int precision = 75; local
1417 int precision = 75; local
1441 int precision = 15; local
1499 int precision = 15; local
1519 int precision = 75; local
1537 int precision = 75; local
1554 int precision = 15; local
1571 int precision = 0; local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderDerivateTests.cpp 221 static inline tcu::Vec4 getDerivateThreshold (const glu::Precision precision, const tcu::Vec4& valueMin, const tcu::Vec4& valueMax, const tcu::Vec4& expectedDerivate)
223 const int baseBits = precision == glu::PRECISION_HIGHP ? 23 :
224 precision == glu::PRECISION_MEDIUMP ? 10 :
225 precision == glu::PRECISION_LOWP ? 6 : 0;
325 glu::Precision m_precision;
328 glu::Precision m_coordPrecision;
360 static std::string genVertexSource (glu::DataType coordType, glu::Precision precision)
367 "in ${PRECISION} ${DATATYPE} a_coord;\n
1090 glu::Precision precision; member in struct:deqp::gles3::Functional::FunctionSpec
1345 const glu::Precision precision = glu::Precision(precNdx); local
1375 const glu::Precision precision = glu::Precision(precNdx); local
1409 const glu::Precision precision = glu::Precision(precNdx); local
1441 const glu::Precision precision = glu::Precision(precNdx); local
    [all...]
es3fShaderPrecisionTests.cpp 21 * \brief Shader precision tests.
64 static glu::ShaderProgram* createFloatPrecisionEvalProgram (const glu::RenderContext& context, glu::Precision precision, const char* evalOp, bool isVertexCase)
70 const char* precName = glu::getPrecisionName(precision);
124 static glu::ShaderProgram* createIntUintPrecisionEvalProgram (const glu::RenderContext& context, glu::DataType type, glu::Precision precision, const char* evalOp, bool isVertexCase)
127 const char* precName = glu::getPrecisionName(precision);
182 ShaderFloatPrecisionCase (Context& context, const char* name, const char* desc, const char* op, EvalFunc evalFunc, glu::Precision precision, const tcu::Vec2& rangeA, const tcu::Vec2& rangeB, bool isVertexCase);
220 glu::Precision m_precision
885 glu::Precision precision; member in struct:deqp::gles3::Functional::__anon23880
906 glu::Precision precision; member in struct:deqp::gles3::Functional::__anon23881
932 glu::Precision precision; member in struct:deqp::gles3::Functional::__anon23882
    [all...]
  /development/ndk/platforms/android-3/include/linux/
timex.h 44 long precision; member in struct:timex
  /development/ndk/platforms/android-L/include/linux/
timex.h 34 long precision; member in struct:timex
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_reconinter.h 39 enum mv_precision precision,
  /external/eigen/Eigen/src/Core/
DiagonalMatrix.h 87 bool isApprox(const DiagonalBase<OtherDerived>& other, typename NumTraits<Scalar>::Real precision = NumTraits<Scalar>::dummy_precision()) const
89 return diagonal().isApprox(other.diagonal(), precision);
92 bool isApprox(const MatrixBase<OtherDerived>& other, typename NumTraits<Scalar>::Real precision = NumTraits<Scalar>::dummy_precision()) const
94 return toDenseMatrix().isApprox(other, precision);
284 * within the precision given by \a prec.

Completed in 719 milliseconds

1 2 3 4 5 6 78 91011>>