Lines Matching defs:bb
84 int bb = rand.nextS() >> 1;
86 b.set(bb);
87 REPORTER_ASSERT(reporter, a.get32() == aa && b.get32() == bb);
88 c = a; c.add(bb);
89 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
90 c = a; c.add(-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);
116 SkLONGLONG bb = asLL(b);
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);