OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NegInt
(Results
1 - 3
of
3
) sorted by null
/external/deqp/modules/gles2/functional/
es2fImplementationLimitTests.cpp
55
struct
NegInt
58
NegInt
(GLint value_) : value(value_) {}
61
std::ostream& operator<< (std::ostream& str, const
NegInt
& v) { return str << v.value; }
99
NegInt
query<
NegInt
> (const glw::Functions& gl, deUint32 param)
101
return
NegInt
(query<GLint>(gl, param));
128
bool compare<
NegInt
> (const
NegInt
& min, const
NegInt
& reported)
/art/test/415-optimizing-arith-neg/src/
Main.java
71
negInt
();
81
private static void
negInt
() {
82
assertEquals(-1, $opt$noinline$
NegInt
(1));
83
assertEquals(1, $opt$noinline$
NegInt
(-1));
84
assertEquals(0, $opt$noinline$
NegInt
(0));
85
assertEquals(51, $opt$noinline$
NegInt
(-51));
86
assertEquals(-51, $opt$noinline$
NegInt
(51));
87
assertEquals(2147483647, $opt$noinline$
NegInt
(-2147483647)); // -(2^31 - 1)
88
assertEquals(-2147483647, $opt$noinline$
NegInt
(2147483647)); // 2^31 - 1
99
assertEquals(-2147483648, $opt$noinline$
NegInt
(-2147483648)); // -(2^31
[
all
...]
/external/deqp/modules/gles3/functional/
es3fImplementationLimitTests.cpp
64
struct
NegInt
67
NegInt
(GLint value_) : value(value_) {}
70
std::ostream& operator<< (std::ostream& str, const
NegInt
& v) { return str << v.value; }
132
NegInt
query<
NegInt
> (const glw::Functions& gl, deUint32 param)
134
return
NegInt
(query<GLint>(gl, param));
167
bool compare<
NegInt
> (const
NegInt
& min, const
NegInt
& reported)
220
template <> struct QueryTypeTraits<
NegInt
> { enum { CLASS = CLASS_VALUE }; }
[
all
...]
Completed in 282 milliseconds