Lines Matching refs:iRegion
43671 int iRegion, /* Region to retrieve */ in unixShmMap() argument
43703 nReqRegion = ((iRegion+nShmPerMap) / nShmPerMap) * nShmPerMap; in unixShmMap()
43794 if( pShmNode->nRegion>iRegion ){ in unixShmMap()
43795 *pp = pShmNode->apRegion[iRegion]; in unixShmMap()
51781 int iRegion, /* Region to retrieve */
51810 if( pShmNode->nRegion<=iRegion ){
51813 int nByte = (iRegion+1)*szRegion; /* Minimum required file size */
51844 pShmNode->aRegion, (iRegion+1)*sizeof(apNew[0])
51857 while( pShmNode->nRegion<=iRegion ){
51903 if( pShmNode->nRegion>iRegion ){
51904 int iOffset = iRegion*szRegion;
51906 char *p = (char *)pShmNode->aRegion[iRegion].pMap;
226262 int iRegion,
226276 sqlite3_int64 nByte = (iRegion+1) * sizeof(char*);
226283 assert( iRegion==p->nShm );
226287 memset(&apNew[p->nShm], 0, sizeof(char*) * (1 + iRegion - p->nShm));
226289 p->nShm = iRegion+1;
226298 p->apShm[iRegion] = pNew;
226303 *pp = p->apShm[iRegion];
226309 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp);