Home
last modified time | relevance | path

Searched refs:pChunk (Results 1 – 3 of 3) sorted by relevance

/external/vulkan-validation-layers/layers/
Dgpu_validation.cpp62 MemoryChunk *pChunk = nullptr; in GetBlock() local
66 pChunk = &chunk; in GetBlock()
71 if (pChunk == nullptr) { in GetBlock()
80 pChunk = &chunk_list_.front(); in GetBlock()
89 block->buffer = pChunk->buffer; in GetBlock()
90 block->memory = pChunk->memory; in GetBlock()
91 block->offset = pChunk->available_offsets.back(); in GetBlock()
92 pChunk->available_offsets.pop_back(); in GetBlock()
/external/sqlite/dist/orig/
Dsqlite3.c47422 struct RowSetChunk *pChunk; /* List of all chunk allocations */
47455 p->pChunk = 0;
47473 struct RowSetChunk *pChunk, *pNextChunk;
47474 for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){
47475 pNextChunk = pChunk->pNextChunk;
47476 sqlite3DbFree(p->db, pChunk);
47478 p->pChunk = 0;
47504 pNew->pNextChunk = p->pChunk;
47505 p->pChunk = pNew;
90615 FileChunk *pChunk; /* Specific chunk into which cursor points */
[all …]
/external/sqlite/dist/
Dsqlite3.c47438 struct RowSetChunk *pChunk; /* List of all chunk allocations */
47471 p->pChunk = 0;
47489 struct RowSetChunk *pChunk, *pNextChunk;
47490 for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){
47491 pNextChunk = pChunk->pNextChunk;
47492 sqlite3DbFree(p->db, pChunk);
47494 p->pChunk = 0;
47520 pNew->pNextChunk = p->pChunk;
47521 p->pChunk = pNew;
90631 FileChunk *pChunk; /* Specific chunk into which cursor points */
[all …]