OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minInt
(Results
1 - 12
of
12
) 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
...]
/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/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
);
/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/sqlite/src/src/
vdbemem.c
333
static const i64
minInt
= SMALLEST_INT64;
335
if( r<(double)
minInt
){
336
return
minInt
;
338
/*
minInt
is correct here - not maxInt. It turns out that assigning
342
return
minInt
;
[
all
...]
/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/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
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 432 milliseconds