From 119e389660b9d5d9d9e05a49df08cbcae0011946 Mon Sep 17 00:00:00 2001 From: enge Date: Thu, 5 Jul 2012 09:15:58 +0000 Subject: new functions mul_2si, div_2si git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1226 211d60ee-9f03-0410-a15a-8952a2c7a4e4 --- doc/mpc.texi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/mpc.texi b/doc/mpc.texi index f43b297..45e921d 100644 --- a/doc/mpc.texi +++ b/doc/mpc.texi @@ -913,15 +913,17 @@ rounded in the direction @var{rnd}. @end deftypefun @deftypefun int mpc_mul_2ui (mpc_t @var{rop}, mpc_t @var{op1}, unsigned long int @var{op2}, mpc_rnd_t @var{rnd}) +@deftypefunx int mpc_mul_2si (mpc_t @var{rop}, mpc_t @var{op1}, long int @var{op2}, mpc_rnd_t @var{rnd}) Set @var{rop} to @var{op1} times 2 raised to @var{op2} -rounded according to @var{rnd}. Just increases the exponents +rounded according to @var{rnd}. Just modifies the exponents of the real and imaginary parts by @var{op2} when @var{rop} and @var{op1} are identical. @end deftypefun @deftypefun int mpc_div_2ui (mpc_t @var{rop}, mpc_t @var{op1}, unsigned long int @var{op2}, mpc_rnd_t @var{rnd}) +@deftypefunx int mpc_div_2ui (mpc_t @var{rop}, mpc_t @var{op1}, long int @var{op2}, mpc_rnd_t @var{rnd}) Set @var{rop} to @var{op1} divided by 2 raised to @var{op2} -rounded according to @var{rnd}. Just decreases the exponents +rounded according to @var{rnd}. Just modifies the exponents of the real and imaginary parts by @var{op2} when @var{rop} and @var{op1} are identical. @end deftypefun -- cgit v1.2.1