HomeSort by relevance Sort by last modified time
    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...]
  /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/chromium-overrides/include/json/
value.h 94 * - signed integer [range: Value::minInt - Value::maxInt]
150 static const Int maxInt;
    [all...]
  /external/jsoncpp/include/json/
value.h 94 * - signed integer [range: Value::minInt - Value::maxInt]
150 static const Int maxInt;
    [all...]
  /art/compiler/optimizing/
intrinsics_x86.cc 838 XmmRegister maxInt = locations->GetTemp(0).AsFpuRegister<XmmRegister>();
854 // maxInt = int-to-float(out)
855 __ cvtsi2ss(maxInt, out);
857 // if inPlusPointFive >= maxInt goto done
858 __ comiss(inPlusPointFive, maxInt);
    [all...]

Completed in 706 milliseconds