Searched defs:pnewbf (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_times_power.c77 * pnewbf: Return result *pnewbf is set to: pbf if uneventful
94 _big_float **pnewbf)
160 *pnewbf = BIG_FLOAT_TIMES_TOOBIG;
171 *pnewbf = pbf; /* Work with *pnewbf from now on. */
183 *pnewbf = BIG_FLOAT_TIMES_NOMEM;
186 *pnewbf = (_big_float *) mallocresult;
187 _copy_big_float_digits((*pnewbf)->bsignificand, pbf->bsignificand, pbf->blength);
188 (*pnewbf)
93 _big_float_times_power(_big_float *pbf, int mult, int n, int precision, _big_float **pnewbf) argument
[all...]
/illumos-gate/usr/src/lib/libc/port/fp/
H A D__x_power.c224 * *pnewbf is set to pbf. If the product is too large to fit in *pbf,
225 * this routine calls malloc(3M) to allocate storage and sets *pnewbf
236 _big_float **pnewbf)
247 *pnewbf = pbf;
258 *pnewbf = pbf;
309 *pnewbf = pbf;
357 *pnewbf = pbf;
361 if ((*pnewbf = malloc(i)) == NULL) {
365 (void) memcpy((*pnewbf)->bsignificand, pbf->bsignificand,
367 (*pnewbf)
235 __big_float_times_power(_big_float *pbf, int mult, int n, int precision, _big_float **pnewbf) argument
[all...]

Completed in 73 milliseconds