Home | History | Annotate | Download | only in dist

Lines Matching defs:surplus

37997 ** If N is larger than the minimum, use the surplus as an initial
48488 ** page. If the payload is larger than the preset amount then surplus
50318 int surplus; /* Overflow payload available for local storage */
50322 surplus = minLocal + (nPayload - minLocal)%(pPage->pBt->usableSize - 4);
50323 testcase( surplus==maxLocal );
50324 testcase( surplus==maxLocal+1 );
50325 if( surplus <= maxLocal ){
50326 pInfo->nLocal = (u16)surplus;