OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numeric_limits
(Results
401 - 425
of
1055
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/mesa3d/src/gtest/include/gtest/
gtest-message.h
97
*ss_ << std::setprecision(std::
numeric_limits
<double>::digits10 + 2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
condition_variable.cpp
61
_LIBCPP_CONSTEXPR ts_sec ts_sec_max =
numeric_limits
<ts_sec>::max();
/external/chromium_org/base/process/
memory_unittest.cc
130
buf = malloc(std::
numeric_limits
<size_t>::max() - (2 * PAGE_SIZE) - 1);
180
test_size_(std::
numeric_limits
<std::size_t>::max() - 12 * 1024),
181
signed_test_size_(std::
numeric_limits
<ssize_t>::max()) {
/external/chromium_org/base/
security_unittest.cc
27
using std::
numeric_limits
;
56
// TODO(jln): switch to std::
numeric_limits
<int>::max() when we switch to
184
//
numeric_limits
are still not constexpr until we switch to C++11, so we
187
ASSERT_EQ(
numeric_limits
<size_t>::max(), kMaxSizeT);
220
const size_t kMaxSizeT =
numeric_limits
<size_t>::max();
/external/chromium_org/components/history/core/browser/
history_types.cc
126
AdjustResultMap(end + 1, std::
numeric_limits
<size_t>::max(),
173
std::
numeric_limits
<int64>::max() : end_time.ToInternalValue();
177
return max_count ? max_count : std::
numeric_limits
<int>::max();
/external/chromium_org/net/quic/
quic_stream_sequencer.cc
16
using std::
numeric_limits
;
23
close_offset_(
numeric_limits
<QuicStreamOffset>::max()),
109
const QuicStreamOffset kMaxOffset =
numeric_limits
<QuicStreamOffset>::max();
/external/chromium_org/ppapi/tests/
test_var.cc
84
uint32_t len = std::
numeric_limits
<uint32_t>::max();
90
len = std::
numeric_limits
<uint32_t>::max();
98
len = std::
numeric_limits
<uint32_t>::max();
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationTimeline.cpp
123
double timeToNextEffect = std::
numeric_limits
<double>::infinity();
142
else if (timeToNextEffect != std::
numeric_limits
<double>::infinity())
187
return std::
numeric_limits
<double>::quiet_NaN();
KeyframeEffectModel.cpp
153
double applyFrom = i ? keyframes[i]->offset() : (-std::
numeric_limits
<double>::infinity());
154
double applyTo = i == keyframes.size() - 2 ? std::
numeric_limits
<double>::infinity() : keyframes[i + 1]->offset();
156
applyTo = std::
numeric_limits
<double>::infinity();
/external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.cpp
67
double posInf = std::
numeric_limits
<double>::infinity();
68
double negInf = -std::
numeric_limits
<double>::infinity();
189
double bestDelta = std::
numeric_limits
<double>::infinity();
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserIdioms.cpp
109
const Decimal doubleMax = Decimal::fromDouble(std::
numeric_limits
<double>::max());
135
if (-std::
numeric_limits
<double>::max() > value || value > std::
numeric_limits
<double>::max())
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator.cc
30
min_parent_size_(std::
numeric_limits
<int>::max()),
202
*min_size = std::
numeric_limits
<int>::max();
244
int best_cost = std::
numeric_limits
<int>::max();
/external/chromium_org/third_party/webrtc/system_wrappers/test/TestSort/
TestSort.cc
107
if (std::
numeric_limits
<Type>::is_integer)
110
if (std::
numeric_limits
<Type>::is_signed)
117
return static_cast<Type>(floatRand * std::
numeric_limits
<Type>::max());
/external/webrtc/src/system_wrappers/test/TestSort/
TestSort.cpp
106
if (std::
numeric_limits
<Type>::is_integer)
109
if (std::
numeric_limits
<Type>::is_signed)
116
return static_cast<Type>(floatRand * std::
numeric_limits
<Type>::max());
/external/chromium_org/content/common/input/
web_input_event_traits.cc
18
using std::
numeric_limits
;
180
if (event->data.pinchUpdate.scale <
numeric_limits
<float>::min())
181
event->data.pinchUpdate.scale =
numeric_limits
<float>::min();
182
else if (event->data.pinchUpdate.scale >
numeric_limits
<float>::max())
183
event->data.pinchUpdate.scale =
numeric_limits
<float>::max();
/external/chromium_org/mojo/public/cpp/bindings/tests/
validation_test_input_parser.cc
85
if (value > std::
numeric_limits
<TargetType>::max() ||
86
value < std::
numeric_limits
<TargetType>::min()) {
95
if (value > std::
numeric_limits
<TargetType>::max() ||
96
value < std::
numeric_limits
<TargetType>::min()) {
368
if (value > std::
numeric_limits
<size_t>::max())
/external/chromium_org/third_party/ots/src/
math.cc
173
if (sequence_end > std::
numeric_limits
<uint16_t>::max()) {
253
if (sequence_end > std::
numeric_limits
<uint16_t>::max()) {
362
if (sequence_end > std::
numeric_limits
<uint16_t>::max()) {
402
if (sequence_end > std::
numeric_limits
<uint16_t>::max()) {
488
if (sequence_end > std::
numeric_limits
<uint16_t>::max()) {
/external/chromium_org/cc/base/
math_util.cc
370
float xmin = std::
numeric_limits
<float>::max();
371
float xmax = -std::
numeric_limits
<float>::max();
372
float ymin = std::
numeric_limits
<float>::max();
373
float ymax = -std::
numeric_limits
<float>::max();
408
float xmin = std::
numeric_limits
<float>::max();
409
float xmax = -std::
numeric_limits
<float>::max();
410
float ymin = std::
numeric_limits
<float>::max();
411
float ymax = -std::
numeric_limits
<float>::max();
647
return std::abs(value) < std::
numeric_limits
<double>::epsilon();
821
return std::min(value, std::
numeric_limits
<double>::max())
[
all
...]
/external/stlport/stlport/stl/
_num_get.c
128
_Integer __over_base = (
numeric_limits
<_Integer>::min)() / __STATIC_CAST(_Integer, __base);
158
if ((__result == (
numeric_limits
<_Integer>::min)()) && !__is_negative)
167
__val = __ovflow ? __is_negative ? (
numeric_limits
<_Integer>::min)()
168
: (
numeric_limits
<_Integer>::max)()
191
_Integer __over_base = (
numeric_limits
<_Integer>::max)() / __STATIC_CAST(_Integer, __base);
227
__val = __ovflow ? (
numeric_limits
<_Integer>::max)()
258
typedef typename __bool2type<
numeric_limits
<_Integer>::is_signed>::_Ret _IsSigned;
/external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_action.cc
262
int minimum_priority = std::
numeric_limits
<int>::min();
574
std::
numeric_limits
<int>::min(),
601
std::
numeric_limits
<int>::min(),
638
std::
numeric_limits
<int>::min(),
668
std::
numeric_limits
<int>::min(),
699
std::
numeric_limits
<int>::min(),
803
std::
numeric_limits
<int>::min(),
844
std::
numeric_limits
<int>::min(),
884
std::
numeric_limits
<int>::min(),
[
all
...]
/external/chromium_org/base/strings/
string_number_conversions_unittest.cc
35
{ std::
numeric_limits
<int>::max(), "2147483647", "2147483647" },
36
{ std::
numeric_limits
<int>::min(), "-2147483648", "2147483648" },
41
{ std::
numeric_limits
<int64>::max(),
44
{ std::
numeric_limits
<int64>::min(),
81
size_t size_t_max = std::
numeric_limits
<size_t>::max();
363
size_t size_t_max = std::
numeric_limits
<size_t>::max();
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.cpp
58
, m_minGlyphBoundingBoxX(std::
numeric_limits
<float>::max())
59
, m_maxGlyphBoundingBoxX(std::
numeric_limits
<float>::min())
60
, m_minGlyphBoundingBoxY(std::
numeric_limits
<float>::max())
61
, m_maxGlyphBoundingBoxY(std::
numeric_limits
<float>::min())
513
CFIndex lastCharacterIndex = m_run.ltr() ? std::
numeric_limits
<CFIndex>::min() : std::
numeric_limits
<CFIndex>::max();
/ndk/sources/cxx-stl/stlport/stlport/stl/
_num_get.c
128
_Integer __over_base = (
numeric_limits
<_Integer>::min)() / __STATIC_CAST(_Integer, __base);
164
__val = __ovflow ? __is_negative ? (
numeric_limits
<_Integer>::min)()
165
: (
numeric_limits
<_Integer>::max)()
188
_Integer __over_base = (
numeric_limits
<_Integer>::max)() / __STATIC_CAST(_Integer, __base);
224
__val = __ovflow ? (
numeric_limits
<_Integer>::max)()
255
typedef typename __bool2type<
numeric_limits
<_Integer>::is_signed>::_Ret _IsSigned;
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_num_get.c
128
_Integer __over_base = (
numeric_limits
<_Integer>::min)() / __STATIC_CAST(_Integer, __base);
164
__val = __ovflow ? __is_negative ? (
numeric_limits
<_Integer>::min)()
165
: (
numeric_limits
<_Integer>::max)()
188
_Integer __over_base = (
numeric_limits
<_Integer>::max)() / __STATIC_CAST(_Integer, __base);
224
__val = __ovflow ? (
numeric_limits
<_Integer>::max)()
255
typedef typename __bool2type<
numeric_limits
<_Integer>::is_signed>::_Ret _IsSigned;
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_num_get.c
128
_Integer __over_base = (
numeric_limits
<_Integer>::min)() / __STATIC_CAST(_Integer, __base);
164
__val = __ovflow ? __is_negative ? (
numeric_limits
<_Integer>::min)()
165
: (
numeric_limits
<_Integer>::max)()
188
_Integer __over_base = (
numeric_limits
<_Integer>::max)() / __STATIC_CAST(_Integer, __base);
224
__val = __ovflow ? (
numeric_limits
<_Integer>::max)()
255
typedef typename __bool2type<
numeric_limits
<_Integer>::is_signed>::_Ret _IsSigned;
Completed in 2222 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>