HomeSort by relevance Sort by last modified time
    Searched defs:maxInt (Results 1 - 9 of 9) sorted by null

  /frameworks/base/tools/aapt2/
ResourceValues.cpp 252 maxInt(std::numeric_limits<int32_t>::max()) {
438 } else if (static_cast<int32_t>(util::deviceToHost32(val.data)) > maxInt) {
440 *outMsg << *item << " is greater than maximum integer " << maxInt;
ResourceValues.h 266 int32_t maxInt;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/
rfc2251.py 13 maxInt = univ.Integer(2147483647)
160 namedtype.NamedType('sizeLimit', univ.Integer().subtype(subtypeSpec=constraint.ValueRangeConstraint(0, maxInt))),
161 namedtype.NamedType('timeLimit', univ.Integer().subtype(subtypeSpec=constraint.ValueRangeConstraint(0, maxInt))),
311 0, maxInt
  /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...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Pick.java 466 public int maxInt;
469 if (index >= maxInt) {
475 + ", maxInt:" + maxInt
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Pick.java 465 public int maxInt;
468 if (index >= maxInt) {
474 + ", maxInt:" + maxInt
  /external/jsoncpp/include/json/
value.h 90 * - signed integer [range: Value::minInt - Value::maxInt]
147 static const Int maxInt;
  /external/jsoncpp/src/lib_json/
json_value.cpp 41 const Int Value::maxInt = Int(UInt(-1) / 2);
93 if (length >= (unsigned)Value::maxInt)
94 length = Value::maxInt - 1;
562 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt),
731 (type_ == realValue && InRange(value_.real_, minInt, maxInt)) ||
1099 return value_.int_ >= minInt && value_.int_ <= maxInt;
1101 return value_.uint_ <= UInt(maxInt);
1103 return value_.real_ >= minInt && value_.real_ <= maxInt &&
    [all...]
  /art/compiler/optimizing/
intrinsics_x86.cc 808 XmmRegister maxInt = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
824 // maxInt = int-to-float(out)
825 __ cvtsi2ss(maxInt, out);
827 // if inPlusPointFive >= maxInt goto done
828 __ comiss(inPlusPointFive, maxInt);
    [all...]

Completed in 450 milliseconds