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

  /external/skia/tests/
FloatingPointTextureTest.cpp 30 T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
45 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...]
  /external/skia/src/core/
SkScanPriv.h 110 static bool safeRoundOut(const SkRect& src, SkIRect* dst, int32_t maxInt) {
111 const SkScalar maxScalar = SkIntToScalar(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))
  /prebuilts/go/darwin-x86/src/runtime/
string.go 325 maxInt = int(maxUint >> 1)
361 if !neg && un > uint(maxInt) {
364 if neg && un > uint(maxInt)+1 {
  /prebuilts/go/linux-x86/src/runtime/
string.go 325 maxInt = int(maxUint >> 1)
361 if !neg && un > uint(maxInt) {
364 if neg && un > uint(maxInt)+1 {
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp 785 else if (value <= Value::LargestUInt(Value::maxInt))
    [all...]
json.h 516 * - signed integer [range: Value::minInt - Value::maxInt]
575 static const Int maxInt;
    [all...]
  /prebuilts/go/darwin-x86/src/archive/tar/
reader_test.go 676 maxInt = int(maxUint >> 1)
679 big1 = fmt.Sprintf("%d", int64(maxInt))
680 big2 = fmt.Sprintf("%d", (int64(maxInt)/2)+1)
681 big3 = fmt.Sprintf("%d", (int64(maxInt) / 3))
  /prebuilts/go/linux-x86/src/archive/tar/
reader_test.go 676 maxInt = int(maxUint >> 1)
679 big1 = fmt.Sprintf("%d", int64(maxInt))
680 big2 = fmt.Sprintf("%d", (int64(maxInt)/2)+1)
681 big3 = fmt.Sprintf("%d", (int64(maxInt) / 3))
  /external/jsoncpp/include/json/
value.h 90 * - signed integer [range: Value::minInt - Value::maxInt]
147 static const Int maxInt;
  /prebuilts/go/darwin-x86/src/bufio/
scan.go 185 const maxInt = int(^uint(0) >> 1)
186 if len(s.buf) >= s.maxTokenSize || len(s.buf) > maxInt/2 {
  /prebuilts/go/linux-x86/src/bufio/
scan.go 185 const maxInt = int(^uint(0) >> 1)
186 if len(s.buf) >= s.maxTokenSize || len(s.buf) > maxInt/2 {
  /external/jsoncpp/src/test_lib_json/
main.cpp 13 #define kint32max Json::Value::maxInt
62 smallUnsignedInteger_(Json::Value::UInt(Json::Value::maxInt)),
    [all...]

Completed in 669 milliseconds