Home | History | Annotate | Download | only in gmp

Lines Matching full:sets

164 // Set sets z = x and returns z.
172 // and sets z to that value.
183 // SetInt64 sets z = x and returns z.
192 // and sets z to that value. The base must be in the range [2,36].
230 // Add sets z = x + y and returns z.
239 // Sub sets z = x - y and returns z.
248 // Mul sets z = x * y and returns z.
257 // Div sets z = x / y, rounding toward zero, and returns z.
266 // Mod sets z = x % y and returns z.
276 // Lsh sets z = x << s and returns z.
284 // Rsh sets z = x >> s and returns z.
292 // Exp sets z = x^y % m and returns z.
293 // If m == nil, Exp sets z = x^y.
314 // Neg sets z = -x and returns z.
322 // Abs sets z to the absolute value of x and returns z.
352 // DivModInt sets q = x / y and r = x % y.
361 // GcdInt sets d to the greatest common divisor of a and b,
363 // If x and y are not nil, GcdInt sets x and y such that d = a*x + b*y.
364 // If either a or b is not positive, GcdInt sets d = x = y = 0.