Home
last modified time | relevance | path

Searched refs:freeList (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DPoolAlloc.cpp77 freeList(0), in TPoolAllocator()
131 while (freeList) { in ~TPoolAllocator()
132 tHeader* next = freeList->nextPage; in ~TPoolAllocator()
133 delete [] reinterpret_cast<char*>(freeList); in ~TPoolAllocator()
134 freeList = next; in ~TPoolAllocator()
202 inUseList->nextPage = freeList; in pop()
203 freeList = inUseList; in pop()
275 if (freeList) { in allocate()
276 memory = freeList; in allocate()
277 freeList = freeList->nextPage; in allocate()
DPoolAlloc.h205 tHeader* freeList; // list of popped memory variable
/external/opencv/cvaux/src/
Dcvbgfg_codebook.cpp98 CvBGCodeBookElem* freeList; in cvBGCodeBookUpdate() local
118 model->freeList = 0; in cvBGCodeBookUpdate()
133 freeList = model->freeList; in cvBGCodeBookUpdate()
134 nblocks = (int)((model->storage->block_size - sizeof(CvMemBlock))/sizeof(*freeList)); in cvBGCodeBookUpdate()
195 if( !freeList ) in cvBGCodeBookUpdate()
197 freeList = (CvBGCodeBookElem*)cvMemStorageAlloc(model->storage, in cvBGCodeBookUpdate()
198 nblocks*sizeof(*freeList)); in cvBGCodeBookUpdate()
200 freeList[i].next = &freeList[i+1]; in cvBGCodeBookUpdate()
201 freeList[nblocks-1].next = 0; in cvBGCodeBookUpdate()
203 e = freeList; in cvBGCodeBookUpdate()
[all …]
/external/srec/portable/src/
Dphashtable.c63 PHashTableEntry *freeList; member
122 tmp->freeList = NULL; in PHashTableCreate()
202 entry->next = entry->table->freeList; in removeEntry()
203 entry->table->freeList = entry; in removeEntry()
368 if (table->freeList == NULL) in PHashTablePutValue()
397 table->freeList = block->entries; in PHashTablePutValue()
401 entry = table->freeList; in PHashTablePutValue()
402 table->freeList = entry->next; in PHashTablePutValue()
/external/opencv/cvaux/include/
Dcvaux.h1400 CvBGCodeBookElem* freeList; member
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-1420969 than a pointer so we don't need a special case for NULL. Allow freeList to point to some