Home | History | Annotate | Download | only in dist

Lines Matching refs:nOff

50146   int nOff;           /* Increase pSpace by this much to 8-byte align it */
50150 ** Thus, we need to calculate a value, nOff, between 0 and 7, to shift
50151 ** it by. If pSpace is already 8-byte aligned, nOff should be zero.
50153 nOff = (8 - (SQLITE_PTR_TO_INT(pSpace) & 7)) & 7;
50154 pSpace += nOff;
50155 szSpace -= nOff;