• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/ICU-511.35/icuSources/i18n/

Lines Matching defs:ignore

650         if (*c=='.') continue;          /* ignore dots  */
666 /* [we can now ignore the .] */
689 if (*c=='.') continue; /* ignore '.' [don't decrement cut] */
705 if (*c=='.') continue; /* ignore . [don't step up] */
1168 /* status; if either is seen than ignore fhs (in case it is */
1414 uInt status=0, ignore=0; /* status accumulators */
1529 decLnOp(b, w, &aset, &ignore); /* b=ln(10) */
2834 uInt status=0, ignore=0; /* status accumulators */
2990 decMultiplyOp(a, a, f, &workset, &ignore); /* a=a*f */
2991 decAddOp(a, a, t, &workset, 0, &ignore); /* ..+t */
3006 decDivideOp(b, f, a, &workset, DIVIDE, &ignore); /* b=f/a */
3007 decAddOp(b, b, a, &workset, 0, &ignore); /* b=b+a */
3008 decMultiplyOp(a, b, t, &workset, &ignore); /* a=b*0.5 */
3044 decAddOp(b, a, t, &workset, DECNEG, &ignore); /* b = a - 0.5 ulp */
3046 decMultiplyOp(b, b, b, &workset, &ignore); /* b = mulru(b, b) */
3047 decCompareOp(b, f, b, &workset, COMPARE, &ignore); /* b ? f, reversed */
3052 decAddOp(a, a, t, &workset, DECNEG, &ignore); /* a = a - 1 ulp */
3056 decAddOp(a, &dzero, a, &approxset, 0, &ignore);
3059 decAddOp(b, a, t, &workset, 0, &ignore); /* b = a + 0.5 ulp */
3061 decMultiplyOp(b, b, b, &workset, &ignore); /* b = mulrd(b, b) */
3062 decCompareOp(b, b, f, &workset, COMPARE, &ignore); /* b ? f */
3066 decAddOp(a, a, t, &workset, 0, &ignore); /* a = a + 1 ulp */
3070 decAddOp(a, &dzero, a, &approxset, 0, &ignore);
5262 uInt ignore=0; /* working status */
5470 decMultiplyOp(t, t, x, &tset, &ignore); /* t=t*x */
5471 decDivideOp(t, t, d, &tset, DIVIDE, &ignore); /* t=t/d */
5478 decAddOp(d, d, &numone, &dset, 0, &ignore); /* d=d+1 */
5626 uInt ignore=0; /* working status accumulator */
5739 decMultiplyOp(a, a, b, &aset, &ignore); /* a=a*b */
5744 decCopyFit(b, rhs, &aset, &residue, &ignore); /* copy & shorten */
5753 decAddOp(a, a, b, &aset, 0, &ignore); /* acc=a+b */
5788 decExpOp(b, a, &bset, &ignore); /* b=exp(-a) */
5791 decMultiplyOp(b, b, rhs, &bset, &ignore); /* b=b*rhs */
5792 decAddOp(b, b, &numone, &bset, DECNEG, &ignore); /* b=b-1 */
5806 decCompareOp(&cmp, rhs, &numone, &aset, COMPARE, &ignore); /* rhs=1 ? */
5816 decAddOp(a, a, b, &aset, 0, &ignore); /* a=a+b for next estimate */
6115 /* min or max -- 754 rules ignore single NaN */