Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fgas/src/crt/
Dfx_memory.cpp38 FX_LPSTATICSTORECHUNK pChunk, pNext; in ~CFX_StaticStore() local
39 pChunk = m_pChunk; in ~CFX_StaticStore()
40 while (pChunk != NULL) { in ~CFX_StaticStore()
41 pNext = pChunk->pNextChunk; in ~CFX_StaticStore()
42 FX_Free(pChunk); in ~CFX_StaticStore()
43 pChunk = pNext; in ~CFX_StaticStore()
48 FX_LPSTATICSTORECHUNK pChunk = (FX_LPSTATICSTORECHUNK)FX_Alloc( in AllocChunk() local
50 pChunk->iChunkSize = size; in AllocChunk()
51 pChunk->iFreeSize = size; in AllocChunk()
52 pChunk->pNextChunk = NULL; in AllocChunk()
[all …]
Dfx_utils.cpp159 uint8_t* pChunk; in AddSpaceTo() local
161 pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize); in AddSpaceTo()
166 pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize); in AddSpaceTo()
169 pChunk = FX_Alloc(uint8_t, iMemSize); in AddSpaceTo()
171 m_pData->SetAt(m_iChunkCount, pChunk); in AddSpaceTo()
173 m_pData->Add(pChunk); in AddSpaceTo()
179 FXSYS_assert(pChunk != NULL); in AddSpaceTo()
181 return pChunk + (index % m_iChunkSize) * m_iBlockSize; in AddSpaceTo()
185 uint8_t* pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize); in GetAt() local
186 FXSYS_assert(pChunk != NULL); in GetAt()
[all …]
/external/sqlite/dist/
Dsqlite3.c42482 struct RowSetChunk *pChunk; /* List of all chunk allocations */
42515 p->pChunk = 0;
42533 struct RowSetChunk *pChunk, *pNextChunk;
42534 for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){
42535 pNextChunk = pChunk->pNextChunk;
42536 sqlite3DbFree(p->db, pChunk);
42538 p->pChunk = 0;
42562 pNew->pNextChunk = p->pChunk;
42563 p->pChunk = pNew;
83131 FileChunk *pChunk; /* Specific chunk into which cursor points */
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c42464 struct RowSetChunk *pChunk; /* List of all chunk allocations */
42497 p->pChunk = 0;
42515 struct RowSetChunk *pChunk, *pNextChunk;
42516 for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){
42517 pNextChunk = pChunk->pNextChunk;
42518 sqlite3DbFree(p->db, pChunk);
42520 p->pChunk = 0;
42544 pNew->pNextChunk = p->pChunk;
42545 p->pChunk = pNew;
83113 FileChunk *pChunk; /* Specific chunk into which cursor points */
[all …]