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

  /external/skia/tests/
FloatingPointTextureTest.cpp 28 T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
37 controlPixelData[i + 3] = 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...]
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 301 maxInt(std::numeric_limits<int32_t>::max()) {
312 this->maxInt == other->maxInt &&
436 if (maxInt != std::numeric_limits<int32_t>::max()) {
437 *out << " max=" << maxInt;
510 } else if (static_cast<int32_t>(util::deviceToHost32(val.data)) > maxInt) {
512 *outMsg << *item << " is greater than maximum integer " << maxInt;
ResourceValues.h 272 int32_t maxInt;
ResourceParser_test.cpp 171 EXPECT_EQ(23, attr->maxInt);
ResourceParser.cpp     [all...]
  /frameworks/base/tools/aapt2/flatten/
TableFlattener_test.cpp 213 attr.maxInt = 23;
228 EXPECT_EQ(attr.maxInt, actualAttr->maxInt);
TableFlattener.cpp 96 if (attr->maxInt != std::numeric_limits<int32_t>::max()) {
98 BinaryPrimitive val(Res_value::TYPE_INT_DEC, static_cast<uint32_t>(attr->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...]
json_reader.cpp 549 else if (value <= Value::LargestUInt(Value::maxInt))
  /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/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/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btAxisSweep3.h 385 BP_FP_INT_TYPE maxInt = m_handleSentinel;
387 m_quantize = btVector3(btScalar(maxInt),btScalar(maxInt),btScalar(maxInt)) / aabbSize;
  /external/skia/src/core/
SkScan_AntiPath.cpp 616 static bool safeRoundOut(const SkRect& src, SkIRect* dst, int32_t maxInt) {
617 const SkScalar maxScalar = SkIntToScalar(maxInt);
  /frameworks/base/tools/aapt2/process/
SymbolTable.cpp 175 s->attribute->maxInt = static_cast<int32_t>(mapEntry.value.data);
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer.cpp 90 pbAttr->set_max_int(attr->maxInt);
TableProtoDeserializer.cpp 238 attr->maxInt = pbAttr.max_int();
  /external/jsoncpp/include/json/
value.h 90 * - signed integer [range: Value::minInt - Value::maxInt]
147 static const Int maxInt;
  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.cpp 511 attr->maxInt = static_cast<int32_t>(mapEntry.value.data);
  /external/jsoncpp/src/test_lib_json/
main.cpp 13 #define kint32max Json::Value::maxInt
62 smallUnsignedInteger_(Json::Value::UInt(Json::Value::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 7446 milliseconds