Home | History | Annotate | Download | only in tests

Lines Matching defs:bb

85         int bb = rand.nextS() >> 1;
87 b.set(bb);
88 REPORTER_ASSERT(reporter, a.get32() == aa && b.get32() == bb);
89 c = a; c.add(bb);
90 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
91 c = a; c.add(-bb);
92 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
94 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
96 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
117 SkLONGLONG bb = asLL(b);
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));
124 REPORTER_ASSERT(reporter, (a != b) == (aa != bb));
127 REPORTER_ASSERT(reporter, asLL(c) == aa + bb);
129 REPORTER_ASSERT(reporter, asLL(c) == aa - bb);
131 REPORTER_ASSERT(reporter, asLL(c) == bb - aa);