OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:maxInt
(Results
1 - 8
of
8
) sorted by null
/external/deqp/modules/gles31/functional/
es31fShaderSharedVarTests.cpp
195
const int
maxInt
= m_precision == glu::PRECISION_LOWP ? 2 : 1024;
196
const int minInt = -de::min(numValues/2,
maxInt
);
200
values[ndx] = float(minInt + (ndx % (
maxInt
-minInt+1)));
214
const int
maxInt
= m_precision == glu::PRECISION_LOWP ? 64 : 1024;
215
const int minInt = -de::min(numValues/2,
maxInt
);
219
values[ndx] = minInt + (ndx % (
maxInt
-minInt+1));
233
const deUint32
maxInt
= m_precision == glu::PRECISION_LOWP ? 128 : 1024;
237
values[ndx] = ndx % (
maxInt
+1);
269
const int
maxInt
= m_precision == glu::PRECISION_LOWP ? 2 : 1024;
270
const int minInt = -de::min(numValues/2,
maxInt
);
[
all
...]
/frameworks/base/tools/aapt2/
ResourceValues.h
218
uint32_t
maxInt
;
/external/jsoncpp/chromium-overrides/src/lib_json/
json_value.cpp
35
const Int Value::
maxInt
= Int( UInt(-1)/2 );
94
if (length >= (unsigned)Value::
maxInt
)
95
length = Value::
maxInt
- 1;
744
JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt,
maxInt
), "double out of Int range");
941
|| (type_ == realValue && InRange(value_.real_, minInt,
maxInt
))
[
all
...]
/external/jsoncpp/src/lib_json/
json_value.cpp
31
const Int Value::
maxInt
= Int( UInt(-1)/2 );
90
if (length >= (unsigned)Value::
maxInt
)
91
length = Value::
maxInt
- 1;
740
JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt,
maxInt
), "double out of Int range");
937
|| (type_ == realValue && InRange(value_.real_, minInt,
maxInt
))
1395
return value_.int_ >= minInt && value_.int_ <=
maxInt
;
1397
return value_.uint_ <= UInt(
maxInt
);
1400
value_.real_ <=
maxInt
&
[
all
...]