Home | History | Annotate | Download | only in bigint

Lines Matching refs:ans

151 	BigInteger ans;
152 ans.add(*this, x);
153 return ans;
156 BigInteger ans;
157 ans.subtract(*this, x);
158 return ans;
161 BigInteger ans;
162 ans.multiply(*this, x);
163 return ans;
182 BigInteger ans;
183 ans.negate(*this);
184 return ans;