cmp 5341 src/decNumber/decNumber.c decNumber cmp; // work cmp 5503 src/decNumber/decNumber.c decCompareOp(&cmp, rhs, &numone, &aset, COMPARE, &ignore); // rhs=1 ? cmp 5504 src/decNumber/decNumber.c if (cmp.lsu[0]==0) a->exponent=0; // yes, exact 0 cmp 824 src/dps8/dps8_decimal.c decNumber _cmp, *cmp; cmp 825 src/dps8/dps8_decimal.c cmp = decNumberCompareTotal(&_cmp, lhs, rhs, set); cmp 827 src/dps8/dps8_decimal.c if (decNumberIsZero(cmp)) cmp 830 src/dps8/dps8_decimal.c if (decNumberIsNegative(cmp)) cmp 7434 src/dps8/dps8_eis.c decNumber *cmp = decNumberCompare(&_3, op1, op2, &set); // compare signed op1 :: op2 cmp 7435 src/dps8/dps8_eis.c int cSigned = decNumberToInt32(cmp, &set); cmp 250 src/dps8/utarray.h # define utarray_sort(a,cmp) do { \ cmp 251 src/dps8/utarray.h qsort((a)->d, (a)->i, (a)->icd.sz, cmp); \ cmp 254 src/dps8/utarray.h # define utarray_find(a,v,cmp) bsearch((v),(a)->d,(a)->i,(a)->icd.sz,cmp) cmp 122 src/dps8/utlist.h # define LL_SORT(list, cmp) \ cmp 123 src/dps8/utlist.h LL_SORT2(list, cmp, next) cmp 125 src/dps8/utlist.h # define LL_SORT2(list, cmp, next) \ cmp 157 src/dps8/utlist.h } else if (cmp(_ls_p,_ls_q) <= 0) { \ cmp 184 src/dps8/utlist.h # define DL_SORT(list, cmp) \ cmp 185 src/dps8/utlist.h DL_SORT2(list, cmp, prev, next) cmp 187 src/dps8/utlist.h # define DL_SORT2(list, cmp, prev, next) \ cmp 219 src/dps8/utlist.h } else if (cmp(_ls_p,_ls_q) <= 0) { \ cmp 246 src/dps8/utlist.h # define CDL_SORT(list, cmp) \ cmp 247 src/dps8/utlist.h CDL_SORT2(list, cmp, prev, next) cmp 249 src/dps8/utlist.h # define CDL_SORT2(list, cmp, prev, next) \ cmp 292 src/dps8/utlist.h } else if (cmp(_ls_p,_ls_q) <= 0) { \ cmp 468 src/dps8/utlist.h # define LL_SEARCH(head,out,elt,cmp) \ cmp 469 src/dps8/utlist.h LL_SEARCH2(head,out,elt,cmp,next) cmp 471 src/dps8/utlist.h # define LL_SEARCH2(head,out,elt,cmp,next) \ cmp 474 src/dps8/utlist.h if ((cmp(out,elt))==0) break; \ cmp 724 src/dps8/utlist.h # define CDL_SEARCH(head,out,elt,cmp) \ cmp 725 src/dps8/utlist.h CDL_SEARCH2(head,out,elt,cmp,next) cmp 727 src/dps8/utlist.h # define CDL_SEARCH2(head,out,elt,cmp,next) \ cmp 730 src/dps8/utlist.h if ((cmp(out,elt))==0) break; \