Home | History | Annotate | Download | only in dist

Lines Matching defs:surplus

38014 ** If N is larger than the minimum, use the surplus as an initial
48505 ** page. If the payload is larger than the preset amount then surplus
50335 int surplus; /* Overflow payload available for local storage */
50339 surplus = minLocal + (nPayload - minLocal)%(pPage->pBt->usableSize - 4);
50340 testcase( surplus==maxLocal );
50341 testcase( surplus==maxLocal+1 );
50342 if( surplus <= maxLocal ){
50343 pInfo->nLocal = (u16)surplus;