Lines Matching refs:pLoc
64358 ** Set output variable pLoc->aHash to point to the start of the hash table
64359 ** in the wal-index file. Set pLoc->iZero to one less than the frame
64362 ** (pLoc->iZero+N) in the log.
64364 ** Finally, set pLoc->aPgno so that pLoc->aPgno[0] is the page number of the
64365 ** first frame indexed by the hash table, frame (pLoc->iZero).
64370 WalHashLoc *pLoc /* OUT: Hash table location */
64374 rc = walIndexPage(pWal, iHash, &pLoc->aPgno);
64377 if( pLoc->aPgno ){
64378 pLoc->aHash = (volatile ht_slot *)&pLoc->aPgno[HASHTABLE_NPAGE];
64380 pLoc->aPgno = &pLoc->aPgno[WALINDEX_HDR_SIZE/sizeof(u32)];
64381 pLoc->iZero = 0;
64383 pLoc->iZero = HASHTABLE_NPAGE_ONE + (iHash-1)*HASHTABLE_NPAGE;