Searched refs:digits (Results 276 - 300 of 383) sorted by relevance

<<111213141516

/external/opencv/cxcore/src/
H A Dcxdxt.cpp223 int digits[34], radix[34]; local
261 digits[nf] = 0;
264 digits[i] = 0;
307 digits[1]++;
318 for( k = 1; ++digits[k] >= factors[k]; k++ )
320 digits[k] = 0;
334 for( k = 0; ++digits[k] >= factors[k]; k++ )
336 digits[k] = 0;
/external/pdfium/third_party/base/numerics/
H A Dsafe_math_impl.h195 std::numeric_limits<__typeof__(x * y)>::digits <
196 std::numeric_limits<intptr_t>::digits ||
/external/skia/src/core/
H A DSkStream.cpp93 bool SkWStream::writeHexAsText(uint32_t hex, int digits) argument
96 tmp.appendHex(hex, digits);
/external/skqp/src/core/
H A DSkStream.cpp89 bool SkWStream::writeHexAsText(uint32_t hex, int digits) argument
92 tmp.appendHex(hex, digits);
/external/toolchain-utils/cros_utils/
H A Dpstat.py637 def roundlist(inlist, digits):
640 function to all elements of FloatType ... round(element,digits).
642 Usage: roundlist(inlist,digits)
651 l[i][j] = round(l[i][j], digits)
/external/valgrind/coregrind/
H A Dm_debuglog.c766 const HChar* digits = capitalised ? "0123456789ABCDEF" : "0123456789abcdef"; local
787 buf[ind++] = digits[p % base];
1053 /* Silently limit the precision to 10 digits. */
/external/python/cpython3/Modules/_decimal/
H A D_decimal.c1861 MPD(dec)->digits = 0;
2411 PyObject *digits = NULL, *tmp; local
2483 digits = sequence_as_tuple(PyTuple_GET_ITEM(dectuple, 1), PyExc_ValueError,
2484 "coefficient must be a tuple of digits");
2485 if (digits == NULL) {
2489 tsize = PyTuple_Size(digits);
2511 tmp = PyTuple_GET_ITEM(digits, i);
2514 "coefficient must be a tuple of digits");
2523 "coefficient must be a tuple of digits");
2546 Py_XDECREF(digits);
[all...]
/external/icu/icu4c/source/i18n/
H A Dmsgfmt.cpp1964 VisibleDigitsWithExponent digits; local
1965 decFmt->initVisibleDigitsWithExponent(context.number, digits, ec);
1969 return rules->select(digits);
/external/autotest/client/common_lib/
H A Dsoftware_manager.py37 chars = string.letters + string.digits
/external/devlib/devlib/utils/
H A Dmisc.py486 return ''.join(random.choice(string.ascii_letters + string.digits) for _ in xrange(length))
/external/eigen/Eigen/src/Core/arch/CUDA/
H A DHalf.h495 static const int digits = 11; member in struct:std::numeric_limits
/external/eigen/bench/
H A Dbench_norm.cpp116 it = std::numeric_limits<Scalar>::digits; //NumTraits<Scalar>::Mantissa; // number of base-beta digits in mantissa
/external/libpng/
H A Dpng.c1444 * The input values have 5 decimal digits of accuracy. The values are all in
1446 * need up to 10 decimal digits to preserve the original precision and avoid
1448 * match this; the best is a little over 9 decimal digits, less than 10.
1712 /* The end points are normally quoted to two decimal digits, so allow +/-0.01
2797 * with the sequence ".E" (with no preceding digits).
2997 czero = 0U-exp_b10; /* PLUS 2 digits: TOTAL 3 */
3007 cdigits = 0; /* Count of digits in list. */
3163 * the digits we output but did not count. The total
3197 /* Need another size check here for the exponent digits, so
3242 /* Require space for 10 decimal digits,
3260 char digits[10]; local
[all...]
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp79 static_cast<unsigned>(std::numeric_limits<unsigned>::digits) &&
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h245 std::numeric_limits<RawType>::digits - 1;
/external/one-true-awk/
H A DFIXES341 fixed an appalling bug in gettok: any sequence of digits, +,-, E, e,
816 Limited octal to octal digits; \8 and \9 are not octal.
917 non-octal digits in \ooo. Warning: not all compilers and libraries
/external/pdfium/third_party/libpng16/
H A Dpng.c1403 * The input values have 5 decimal digits of accuracy. The values are all in
1405 * need up to 10 decimal digits to preserve the original precision and avoid
1407 * match this; the best is a little over 9 decimal digits, less than 10.
1671 /* The end points are normally quoted to two decimal digits, so allow +/-0.01
2759 * with the sequence ".E" (with no preceding digits).
2946 czero = -exp_b10; /* PLUS 2 digits: TOTAL 3 */
2956 cdigits = 0; /* Count of digits in list. */
3105 * the digits we output but did not count. The total
3139 /* Need another size check here for the exponent digits, so
3181 /* Require space for 10 decimal digits,
3197 char digits[10]; local
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h346 std::numeric_limits<RawType>::digits - 1;
/external/python/cpython2/Lib/test/
H A Dtest_string.py71 string.digits
/external/skia/gn/
H A Dgn_to_cmake.py53 if c in string.ascii_letters or c in string.digits or c in '_.+-':
/external/skqp/gn/
H A Dgn_to_cmake.py53 if c in string.ascii_letters or c in string.digits or c in '_.+-':
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliFlexLexer.java3694 setStringOrCharError("Invalid \\u sequence. \\u must be followed by 4 hex digits");
3723 setStringOrCharError("Invalid \\u sequence. \\u must be followed by exactly 4 hex digits");
/external/swiftshader/src/OpenGL/libGL/
H A Dutilities.cpp175 unsigned int mask = std::numeric_limits<unsigned int>::max() >> (std::numeric_limits<unsigned int>::digits - allocationSize);
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
H A Drnn_cell_test.py1306 def _is_close(x, y, digits=4):
1308 return delta < 10**(-digits)
1310 def _is_close_in(x, items, digits=4):
1312 if _is_close(x, i, digits):
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h245 std::numeric_limits<RawType>::digits - 1;

Completed in 776 milliseconds

<<111213141516