Lines Matching refs:est
6347 Int est; /* estimated quotient */ local
6392 est=(((ueInt)carry>>11)*53687)>>18;
6393 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6394 carry=est; /* likely quotient [89%] */
6402 est=(((ueInt)carry>>11)*53687)>>18;
6403 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6404 carry=est-(DECDPUNMAX+1); /* correctly negative */
6410 est=(((ueInt)carry>>3)*16777)>>21;
6411 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6412 carry=est; /* likely quotient [99%] */
6420 est=(((ueInt)carry>>3)*16777)>>21;
6421 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6422 carry=est-(DECDPUNMAX+1); /* correctly negative */
6429 est=QUOT10(carry, DECDPUN);
6430 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6431 carry=est; /* quotient */
6436 est=QUOT10(carry, DECDPUN);
6437 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6438 carry=est-(DECDPUNMAX+1); /* correctly negative */
6479 est=(((ueInt)carry>>11)*53687)>>18;
6480 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6481 carry=est; /* likely quotient [79.7%] */
6489 est=(((ueInt)carry>>11)*53687)>>18;
6490 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6491 carry=est-(DECDPUNMAX+1); /* correctly negative */
6497 est=(((ueInt)carry>>3)*16777)>>21;
6498 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6499 carry=est; /* likely quotient [99%] */
6507 est=(((ueInt)carry>>3)*16777)>>21;
6508 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6509 carry=est-(DECDPUNMAX+1); /* correctly negative */
6515 est=QUOT10(carry, DECDPUN);
6516 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6517 carry=est; /* quotient */
6522 est=QUOT10(carry, DECDPUN);
6523 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6524 carry=est-(DECDPUNMAX+1); /* correctly negative */