Home
last modified time | relevance | path

Searched refs:iBeginOut (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/ext/async/
H A Dsqlite3async.c715 sqlite3_int64 iBeginOut = (pWrite->iOffset-iOffset); in asyncRead() local
716 sqlite3_int64 iBeginIn = -iBeginOut; in asyncRead()
718 if( iBeginOut<0 ) iBeginOut = 0; in asyncRead()
722 nCopy = MIN(nByte64-iBeginIn, iAmt64-iBeginOut); in asyncRead()
724 memcpy(&((char *)zOut)[iBeginOut], &pWrite->zBuf[iBeginIn], (size_t)nCopy); in asyncRead()
725 ASYNC_TRACE(("OVERREAD %d bytes at %d\n", nCopy, iBeginOut+iOffset)); in asyncRead()