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

  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
MathExtras.cpp 60 long minInt = std::numeric_limits<int>::min();
62 long underflowInt = minInt - 1;
65 EXPECT_LT(underflowInt, minInt);
68 EXPECT_EQ(clampTo<int>(minInt), minInt);
71 EXPECT_EQ(clampTo<int>(underflowInt), minInt);
77 long long minInt = std::numeric_limits<int>::min();
79 long long underflowInt = minInt - 1;
82 EXPECT_LT(underflowInt, minInt);
85 EXPECT_EQ(clampTo<int>(minInt), minInt)
    [all...]
  /art/test/003-omnibus-opcodes/src/
IntMath.java 189 int minInt = -2147483648;
192 int result = (((minInt + plusOne) - plusOne) / negOne) / negOne;
193 Main.assertTrue(result == minInt);
261 int minInt = -2147483648;
262 int result = minInt / -1;
263 Main.assertTrue(result == minInt);
  /dalvik/tests/003-omnibus-opcodes/src/
IntMath.java 142 int minInt = -2147483648;
145 int result = (((minInt + plusOne) - plusOne) / negOne) / negOne;
146 assert(result == minInt);
214 int minInt = -2147483648;
215 int result = minInt / -1;
216 assert(result == minInt);
  /art/test/107-int-math2/src/
Main.java 337 int minInt = -2147483648;
340 int result = (((minInt + plusOne) - plusOne) / negOne) / negOne;
341 int shouldBeZero = minInt % negOne;
343 if (result != minInt) { return 1;};
403 int minInt = -2147483648;
404 int result = minInt / -1;
405 if (result != minInt) {return 1; }
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 34 const Int Value::minInt = Int( ~(UInt(-1)/2) );
744 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), "double out of Int range");
941 || (type_ == realValue && InRange(value_.real_, minInt, maxInt))
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h 94 * - signed integer [range: Value::minInt - Value::maxInt]
148 static const Int minInt;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decimfmt.cpp     [all...]
  /external/icu4c/i18n/
decimfmt.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 384 milliseconds