Home | History | Annotate | Download | only in orig

Lines Matching defs:surplus

37986 ** If N is larger than the minimum, use the surplus as an initial
48477 ** page. If the payload is larger than the preset amount then surplus
50307 int surplus; /* Overflow payload available for local storage */
50311 surplus = minLocal + (nPayload - minLocal)%(pPage->pBt->usableSize - 4);
50312 testcase( surplus==maxLocal );
50313 testcase( surplus==maxLocal+1 );
50314 if( surplus <= maxLocal ){
50315 pInfo->nLocal = (u16)surplus;