Lines Matching refs:nByte
285 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
288 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
430 int nByte,
437 int nByte,
444 int nByte,
452 int nByte,
459 int nByte,
466 int nByte,
3306 int sqlite3Utf8CharLen(const char *pData, int nByte);
4652 static u8 *pageFindSlot(MemPage *pPg, int nByte, int *pRc){
4658 int maxPC = pPg->pBt->usableSize - nByte;
4667 if( (x = size - nByte)>=0 ){
4700 if( pc>maxPC+nByte-4 ){
4707 static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){
4717 assert( nByte>=0 );
4718 assert( pPage->nFree>=nByte );
4720 assert( nByte < (int)(pPage->pBt->usableSize-8) );
4748 u8 *pSpace = pageFindSlot(pPage, nByte, &rc);
4762 if( gap+2+nByte>top ){
4765 rc = defragmentPage(pPage, ((4)<(pPage->nFree - (2+nByte))?(4):(pPage->nFree - (2+nByte))));
4768 assert( gap+2+nByte<=top );
4771 top -= nByte;
4773 assert( top+nByte <= (int)pPage->pBt->usableSize );
7037 int nByte,
7047 memcpy(pPayload, pBuf, nByte);
7050 memcpy(pBuf, pPayload, nByte);