OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numeric_limits
(Results
451 - 475
of
1055
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/chromium_org/skia/ext/
image_operations.cc
55
if (x > -std::
numeric_limits
<float>::epsilon() &&
56
x < std::
numeric_limits
<float>::epsilon())
81
if (x > -std::
numeric_limits
<float>::epsilon() &&
82
x < std::
numeric_limits
<float>::epsilon())
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNode.h
59
return std::
numeric_limits
<double>::quiet_NaN();
/external/chromium_org/third_party/WebKit/Source/core/css/
FontSize.cpp
44
if (fabsf(specifiedSize) < std::
numeric_limits
<float>::epsilon())
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryToken.cpp
74
char buffer[std::
numeric_limits
<float>::digits];
/external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioArray.h
58
if (n > std::
numeric_limits
<unsigned>::max() / sizeof(T))
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint.cpp
101
return std::
numeric_limits
<float>::infinity();
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarTheme.h
118
virtual int maxOverlapBetweenPages() { return std::
numeric_limits
<int>::max(); }
/external/chromium_org/third_party/WebKit/Source/wtf/
BloomFilter.h
44
static uint8_t maximumCount() { return std::
numeric_limits
<uint8_t>::max(); }
/external/chromium_org/third_party/WebKit/public/platform/
WebVector.h
185
if (std::
numeric_limits
<size_t>::max() / sizeof(T) < size)
/external/chromium_org/third_party/angle/tests/angle_tests/
BlendMinMaxTest.cpp
27
GLubyte curAsUbyte = (curColor * std::
numeric_limits
<GLubyte>::max()) + 0.5f;
/external/chromium_org/third_party/brotli/src/woff2/
glyph.cc
66
if (buffer->offset() - start_offset > std::
numeric_limits
<uint32_t>::max()) {
237
if (contour.size() > std::
numeric_limits
<uint16_t>::max() ||
238
end_point > std::
numeric_limits
<uint16_t>::max()) {
359
if (glyph.contours.size() > std::
numeric_limits
<int16_t>::max()) {
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
unicodestring.cc
88
if (length == std::
numeric_limits
<int>::max()) {
/external/chromium_org/third_party/webrtc/common_audio/
wav_writer.cc
57
CHECK(written <= std::
numeric_limits
<uint32_t>::max() ||
/external/chromium_org/ui/base/
layout.cc
72
float smallest_diff = std::
numeric_limits
<float>::max();
/external/chromium_org/v8/src/base/
sys-info.cc
85
if (result < 0) result = std::
numeric_limits
<int64_t>::max();
/external/eigen/test/eigen2/
eigen2_prec_inverse_4x4.cpp
26
return std::
numeric_limits
<typename NumTraits<T>::Real>::epsilon();
/external/protobuf/src/google/protobuf/compiler/javanano/
javanano_helpers.cc
413
if (value ==
numeric_limits
<double>::infinity()) {
415
} else if (value == -
numeric_limits
<double>::infinity()) {
425
if (value ==
numeric_limits
<float>::infinity()) {
427
} else if (value == -
numeric_limits
<float>::infinity()) {
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/
extptr_allocator.h
101
{ return std::
numeric_limits
<size_type>::max() / sizeof(_Tp); }
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
extptr_allocator.h
97
{ return std::
numeric_limits
<size_type>::max() / sizeof(_Tp); }
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
extptr_allocator.h
97
{ return std::
numeric_limits
<size_type>::max() / sizeof(_Tp); }
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
extptr_allocator.h
97
{ return std::
numeric_limits
<size_type>::max() / sizeof(_Tp); }
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
extptr_allocator.h
97
{ return std::
numeric_limits
<size_type>::max() / sizeof(_Tp); }
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
extptr_allocator.h
101
{ return std::
numeric_limits
<size_type>::max() / sizeof(_Tp); }
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
extptr_allocator.h
101
{ return std::
numeric_limits
<size_type>::max() / sizeof(_Tp); }
/external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp
98
RELEASE_ASSERT(string.length() <=
numeric_limits
<unsigned>::max() - m_impl->length());
107
RELEASE_ASSERT(string.length() <=
numeric_limits
<unsigned>::max() - m_impl->length());
136
RELEASE_ASSERT(m_impl->length() <
numeric_limits
<unsigned>::max());
194
RELEASE_ASSERT(lengthToAppend <=
numeric_limits
<unsigned>::max() - strLength);
203
RELEASE_ASSERT(lengthToAppend <=
numeric_limits
<unsigned>::max() - strLength);
226
RELEASE_ASSERT(lengthToAppend <=
numeric_limits
<unsigned>::max() - strLength);
245
RELEASE_ASSERT(lengthToInsert <=
numeric_limits
<unsigned>::max() - impl->length());
812
if (length >
numeric_limits
<unsigned>::max() / 3)
902
RELEASE_ASSERT(length <=
numeric_limits
<unsigned>::max());
966
static const IntegralType integralMax =
numeric_limits
<IntegralType>::max()
[
all
...]
Completed in 1679 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>