Lines Matching defs:aa
83 int aa = rand.nextS() >> 1;
85 a.set(aa);
87 REPORTER_ASSERT(reporter, a.get32() == aa && b.get32() == bb);
89 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
91 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
93 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
95 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
115 SkLONGLONG aa = asLL(a);
118 REPORTER_ASSERT(reporter, (a < b) == (aa < bb));
119 REPORTER_ASSERT(reporter, (a <= b) == (aa <= bb));
120 REPORTER_ASSERT(reporter, (a > b) == (aa > bb));
121 REPORTER_ASSERT(reporter, (a >= b) == (aa >= bb));
122 REPORTER_ASSERT(reporter, (a == b) == (aa == bb));
123 REPORTER_ASSERT(reporter, (a != b) == (aa != bb));
126 REPORTER_ASSERT(reporter, asLL(c) == aa + bb);
128 REPORTER_ASSERT(reporter, asLL(c) == aa - bb);
130 REPORTER_ASSERT(reporter, asLL(c) == bb - aa);
132 REPORTER_ASSERT(reporter, asLL(c) == -aa);
136 REPORTER_ASSERT(reporter, asLL(c) == (aa << bits));
138 REPORTER_ASSERT(reporter, asLL(c) == (aa >> bits));
143 tmp = aa;