HomeSort by: relevance | last modified time | path
    Searched refs:c_conj (Results 1 - 2 of 2) sorted by relevancy

  /src/external/lgpl3/mpc/dist/tests/
tmul.c 224 mpc_t b, c_conj, res, ref; local
227 mpc_init2 (c_conj, 20);
231 mpc_set_str (c_conj, "(-0xap+0 0x1.4p+4)", 16, MPC_RNDNN);
236 mpc_mul (res, b, c_conj, MPC_RNDZZ);
246 mpc_clear (c_conj);
  /src/external/lgpl3/mpc/dist/src/
div.c 238 mpc_t res, c_conj; local
286 /* create the conjugate of c in c_conj without allocating new memory */
287 mpc_realref (c_conj)[0] = mpc_realref (c)[0];
288 mpc_imagref (c_conj)[0] = mpc_imagref (c)[0];
289 MPFR_CHANGE_SIGN (mpc_imagref (c_conj));
315 inexact_prod = mpc_mul (res, b, c_conj, MPC_RNDZZ);

Completed in 36 milliseconds