Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c15606 static void recoverBitmapFree(RecoverBitmap *pMap){ in recoverBitmapFree() argument
15607 sqlite3_free(pMap); in recoverBitmapFree()
15613 static void recoverBitmapSet(RecoverBitmap *pMap, i64 iPg){ in recoverBitmapSet() argument
15614 if( iPg<=pMap->nPg ){ in recoverBitmapSet()
15617 pMap->aElem[iElem] |= (((u32)1) << iBit); in recoverBitmapSet()
15625 static int recoverBitmapQuery(RecoverBitmap *pMap, i64 iPg){ in recoverBitmapQuery() argument
15627 if( iPg<=pMap->nPg && iPg>0 ){ in recoverBitmapQuery()
15630 ret = (pMap->aElem[iElem] & (((u32)1) << iBit)) ? 1 : 0; in recoverBitmapQuery()
H A Dsqlite3.c50038 void *pMap;
50153 BOOL bRc = osUnmapViewOfFile(p->aRegion[i].pMap);
50593 void *pMap = 0; /* Mapped memory region */
50615 pMap = osMapViewOfFileFromApp(hMap, flags,
50619 pMap = osMapViewOfFile(hMap, flags,
50625 szRegion, pMap ? "ok" : "failed"));
50627 if( !pMap ){
50635 pShmNode->aRegion[pShmNode->nRegion].pMap = pMap;
50645 char *p = (char *)pShmNode->aRegion[iRegion].pMap;
245805 Fts5Iter *pMap = pT->apIter[aMap[iTest].iIter];
[all …]