Lines Matching refs:est
6368 Int est; /* estimated quotient */
6413 est=(((ueInt)carry>>11)*53687)>>18;
6414 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6415 carry=est; /* likely quotient [89%] */
6423 est=(((ueInt)carry>>11)*53687)>>18;
6424 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6425 carry=est-(DECDPUNMAX+1); /* correctly negative */
6431 est=(((ueInt)carry>>3)*16777)>>21;
6432 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6433 carry=est; /* likely quotient [99%] */
6441 est=(((ueInt)carry>>3)*16777)>>21;
6442 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6443 carry=est-(DECDPUNMAX+1); /* correctly negative */
6450 est=QUOT10(carry, DECDPUN);
6451 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6452 carry=est; /* quotient */
6457 est=QUOT10(carry, DECDPUN);
6458 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6459 carry=est-(DECDPUNMAX+1); /* correctly negative */
6500 est=(((ueInt)carry>>11)*53687)>>18;
6501 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6502 carry=est; /* likely quotient [79.7%] */
6510 est=(((ueInt)carry>>11)*53687)>>18;
6511 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6512 carry=est-(DECDPUNMAX+1); /* correctly negative */
6518 est=(((ueInt)carry>>3)*16777)>>21;
6519 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6520 carry=est; /* likely quotient [99%] */
6528 est=(((ueInt)carry>>3)*16777)>>21;
6529 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6530 carry=est-(DECDPUNMAX+1); /* correctly negative */
6536 est=QUOT10(carry, DECDPUN);
6537 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6538 carry=est; /* quotient */
6543 est=QUOT10(carry, DECDPUN);
6544 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6545 carry=est-(DECDPUNMAX+1); /* correctly negative */