Lines Matching refs:ans
151 BigInteger ans; in operator +() local
152 ans.add(*this, x); in operator +()
153 return ans; in operator +()
156 BigInteger ans; in operator -() local
157 ans.subtract(*this, x); in operator -()
158 return ans; in operator -()
161 BigInteger ans; in operator *() local
162 ans.multiply(*this, x); in operator *()
163 return ans; in operator *()
182 BigInteger ans; in operator -() local
183 ans.negate(*this); in operator -()
184 return ans; in operator -()