Home
last modified time | relevance | path

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

/external/srec/portable/src/
Dpmemory_ext.c109 static int allocArrayCount = 0; variable
130 allocArray[allocArrayCount] = memPtr; in AddToAllocList()
131 allocArrayCount++; in AddToAllocList()
132 if (allocArrayCount >= MAX_ALLOCATED_BLOCKS) in AddToAllocList()
135 … sprintf(buf, "AddToAllocList ERROR : MAX_ALLOCATED_BLOCKS is too small (%d)", allocArrayCount); in AddToAllocList()
149 for (i = 0; i < allocArrayCount; i++) in RemoveFromAllocList()
159 for (j = i + 1; j < allocArrayCount; j++) in RemoveFromAllocList()
161 allocArrayCount--; in RemoveFromAllocList()
162 allocArray[allocArrayCount] = NULL; /* clear out end of list */ in RemoveFromAllocList()
175 for (i = 0; i < allocArrayCount; i++) in PortMemScan()