Lines Matching defs:other
11 * documentation and/or other materials provided with the distribution;
149 SatCounter other(bits, initial_value);
171 // Test saturation against other saturating counter
174 counter <<= other;
175 value <<= other;
181 // Test zeroing against other saturating counter
182 counter >>= other;
183 value >>= other;
280 SatCounter other(bits, 2);
306 // Test add-assignment of other saturating counter
307 counter += other;
308 value += other;
314 // Test subtract-assignment of other saturating counter
315 counter -= other;
316 value -= other;