HomeSort by relevance Sort by last modified time
    Searched refs:numeric_limits (Results 251 - 275 of 1055) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_limits.c 27 // numeric_limits static members
84 _STLP_TEMPLATE_NULL const int numeric_limits<__integer>::digits; \
85 _STLP_TEMPLATE_NULL const int numeric_limits<__integer>::digits10; \
86 _STLP_TEMPLATE_NULL const int numeric_limits<__integer>::radix; \
87 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_specialized; \
88 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_signed; \
89 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_integer; \
90 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_exact; \
91 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_bounded; \
92 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_modul
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_limits.c 27 // numeric_limits static members
84 _STLP_TEMPLATE_NULL const int numeric_limits<__integer>::digits; \
85 _STLP_TEMPLATE_NULL const int numeric_limits<__integer>::digits10; \
86 _STLP_TEMPLATE_NULL const int numeric_limits<__integer>::radix; \
87 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_specialized; \
88 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_signed; \
89 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_integer; \
90 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_exact; \
91 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_bounded; \
92 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_modul
    [all...]
  /external/chromium_org/mojo/embedder/
simple_platform_shared_buffer_posix.cc 42 static_cast<uint64_t>(std::numeric_limits<off_t>::max())) {
91 static_cast<uint64_t>(std::numeric_limits<off_t>::max())) {
128 static_cast<uint64_t>(std::numeric_limits<off_t>::max()));
  /external/chromium_org/base/memory/
shared_memory_android.cc 22 if (options.size > static_cast<size_t>(std::numeric_limits<int>::max()))
  /external/chromium_org/cc/trees/
layer_tree_settings.cc 49 max_partial_texture_updates(std::numeric_limits<size_t>::max()),
  /external/chromium_org/components/ownership/
owner_key_util_impl.cc 31 if (file_size > static_cast<int64>(std::numeric_limits<int>::max())) {
  /external/chromium_org/content/renderer/media/
media_stream_audio_level_calculator.cc 15 // Note, the return value can be bigger than std::numeric_limits<int16>::max().
25 DCHECK(max <= std::abs(std::numeric_limits<int16>::min()));
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
frame_counter.cc 31 if (fabs(elapsed_time) > std::numeric_limits<double>::epsilon()) {
  /external/chromium_org/net/quic/
quic_data_writer.cc 15 using std::numeric_limits;
67 result = numeric_limits<uint16>::max();
99 if (val.length() > numeric_limits<uint16>::max()) {
130 DCHECK_LE(length, numeric_limits<uint32>::max());
  /external/chromium_org/third_party/WebKit/Source/core/animation/
InertAnimation.cpp 63 return std::numeric_limits<double>::infinity();
Timing.h 68 , iterationDuration(std::numeric_limits<double>::quiet_NaN())
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLSrcsetParserTest.cpp 90 {1.0, 0, "", "400.gif 400w, 6000.gif 6000w", "400.gif", std::numeric_limits<float>::infinity(), 400},
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTime.h 40 static SMILTime unresolved() { return std::numeric_limits<double>::quiet_NaN(); }
41 static SMILTime indefinite() { return std::numeric_limits<double>::infinity(); }
127 static void constructDeletedValue(blink::SMILTime& slot, bool) { slot = -std::numeric_limits<double>::infinity(); }
128 static bool isDeletedValue(blink::SMILTime value) { return value == -std::numeric_limits<double>::infinity(); }
  /external/chromium_org/third_party/WebKit/Source/modules/device_light/
DeviceLightEvent.h 15 : value(std::numeric_limits<double>::infinity())
  /external/chromium_org/ui/gfx/range/
range_win.cc 37 const LONG kLONGMax = std::numeric_limits<LONG>::max();
  /external/deqp/executor/
xeTestCaseResult.cpp 75 return str << std::setprecision(std::numeric_limits<double>::digits10 + 2) << value.getFloat64();
  /external/chromium_org/extensions/browser/api/storage/
local_value_store_cache.cc 35 std::numeric_limits<size_t>::max(),
36 std::numeric_limits<size_t>::max()
  /external/chromium_org/media/audio/
simple_sources_unittest.cc 37 std::numeric_limits<float>::epsilon());
43 std::numeric_limits<float>::epsilon());
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.cpp 108 return std::numeric_limits<double>::quiet_NaN();
115 return std::numeric_limits<double>::quiet_NaN();
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioDSPKernelProcessor.cpp 143 return std::numeric_limits<double>::infinity();
156 return std::numeric_limits<double>::infinity();
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatBoxTestHelpers.cpp 50 if (a == 0 || b == 0 || absErr < std::numeric_limits<float>::min())
51 return absErr < (kTestEpsilon * std::numeric_limits<float>::min());
  /external/chromium_org/third_party/ots/include/
ots-memory-stream.h 23 (length > std::numeric_limits<size_t>::max() - off_)) {
65 (length > std::numeric_limits<size_t>::max() - off_)) {
  /external/eigen/test/
special_numbers.cpp 18 Scalar nan = std::numeric_limits<Scalar>::quiet_NaN();
19 Scalar inf = std::numeric_limits<Scalar>::infinity();
  /external/libcxx/test/containers/sequences/dynarray/dynarray.cons/
default.pass.cpp 61 try { dynarray<int> ( std::numeric_limits<size_t>::max() / sizeof ( int ) + 1 ); }
67 try { dynarray<int> ( std::numeric_limits<size_t>::max() / sizeof ( int ) - 1 ); }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.cons/
default.pass.cpp 61 try { dynarray<int> ( std::numeric_limits<size_t>::max() / sizeof ( int ) + 1 ); }
67 try { dynarray<int> ( std::numeric_limits<size_t>::max() / sizeof ( int ) - 1 ); }

Completed in 2646 milliseconds

<<11121314151617181920>>