Searched refs:nextPage (Results 1 – 3 of 3) sorted by relevance
/external/deqp/framework/delibs/depool/ |
D | deMemPool.c | 55 MemPage* nextPage; member 363 MemPage* nextPage; in deMemPool_destroy() local 367 nextPage = page->nextPage; in deMemPool_destroy() 369 page = nextPage; in deMemPool_destroy() 395 for (memPage = pool->currentPage; memPage; memPage = memPage->nextPage) in deMemPool_getNumAllocatedBytes() 413 for (memPage = pool->currentPage; memPage; memPage = memPage->nextPage) in deMemPool_getCapacity() 476 curPage->nextPage = pool->currentPage; in deMemPool_allocInternal()
|
/external/sqlite/dist/ |
D | sqlite3.c | 58976 Pgno nextPage; 58978 nextPage = get4byte(&aPayload[pCur->info.nLocal]); 59015 nextPage = pCur->aOverflow[iIdx]; 59019 for( ; rc==SQLITE_OK && amt>0 && nextPage; iIdx++){ 59023 assert(!pCur->aOverflow[iIdx] || pCur->aOverflow[iIdx]==nextPage); 59024 pCur->aOverflow[iIdx] = nextPage; 59041 nextPage = pCur->aOverflow[iIdx+1]; 59043 rc = getOverflowPage(pBt, nextPage, 0, &nextPage); 59085 rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1)); 59086 nextPage = get4byte(aWrite); [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 58958 Pgno nextPage; 58960 nextPage = get4byte(&aPayload[pCur->info.nLocal]); 58997 nextPage = pCur->aOverflow[iIdx]; 59001 for( ; rc==SQLITE_OK && amt>0 && nextPage; iIdx++){ 59005 assert(!pCur->aOverflow[iIdx] || pCur->aOverflow[iIdx]==nextPage); 59006 pCur->aOverflow[iIdx] = nextPage; 59023 nextPage = pCur->aOverflow[iIdx+1]; 59025 rc = getOverflowPage(pBt, nextPage, 0, &nextPage); 59067 rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1)); 59068 nextPage = get4byte(aWrite); [all …]
|