Home
last modified time | relevance | path

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

/external/pdfium/xfa/fgas/crt/
Dfgas_utils.cpp161 uint8_t* pChunk; in AddSpaceTo() local
163 pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize); in AddSpaceTo()
168 pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize); in AddSpaceTo()
171 pChunk = FX_Alloc(uint8_t, iMemSize); in AddSpaceTo()
173 m_pData->SetAt(m_iChunkCount, pChunk); in AddSpaceTo()
175 m_pData->Add(pChunk); in AddSpaceTo()
181 ASSERT(pChunk); in AddSpaceTo()
183 return pChunk + (index % m_iChunkSize) * m_iBlockSize; in AddSpaceTo()
187 uint8_t* pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize); in GetAt() local
188 ASSERT(pChunk); in GetAt()
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c46487 struct RowSetChunk *pChunk; /* List of all chunk allocations */
46520 p->pChunk = 0;
46538 struct RowSetChunk *pChunk, *pNextChunk;
46539 for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){
46540 pNextChunk = pChunk->pNextChunk;
46541 sqlite3DbFree(p->db, pChunk);
46543 p->pChunk = 0;
46569 pNew->pNextChunk = p->pChunk;
46570 p->pChunk = pNew;
89013 FileChunk *pChunk; /* Specific chunk into which cursor points */
[all …]
/external/sqlite/dist/
Dsqlite3.c46487 struct RowSetChunk *pChunk; /* List of all chunk allocations */
46520 p->pChunk = 0;
46538 struct RowSetChunk *pChunk, *pNextChunk;
46539 for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){
46540 pNextChunk = pChunk->pNextChunk;
46541 sqlite3DbFree(p->db, pChunk);
46543 p->pChunk = 0;
46569 pNew->pNextChunk = p->pChunk;
46570 p->pChunk = pNew;
89013 FileChunk *pChunk; /* Specific chunk into which cursor points */
[all …]