Home
last modified time | relevance | path

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

/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/misc/extra/
H A DextraUtilMemory.c81 void ** pLargeChunks; // the allocated large memory chunks member
533 if ( p->pLargeChunks ) in Extra_MmStepStop()
536 ABC_FREE( p->pLargeChunks[i] ); in Extra_MmStepStop()
537 ABC_FREE( p->pLargeChunks ); in Extra_MmStepStop()
568 p->pLargeChunks = ABC_REALLOC( void *, p->pLargeChunks, p->nLargeChunksAlloc ); in Extra_MmStepEntryFetch()
570 p->pLargeChunks[ p->nLargeChunks++ ] = ABC_ALLOC( char, nBytes ); in Extra_MmStepEntryFetch()
571 return (char *)p->pLargeChunks[ p->nLargeChunks - 1 ]; in Extra_MmStepEntryFetch()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/misc/mem/
H A Dmem.c81 void ** pLargeChunks; // the allocated large memory chunks member
515 if ( p->pLargeChunks ) in Mem_StepStop()
518 ABC_FREE( p->pLargeChunks[i] ); in Mem_StepStop()
519 ABC_FREE( p->pLargeChunks ); in Mem_StepStop()
550 … p->pLargeChunks = (void **)ABC_REALLOC( char *, p->pLargeChunks, p->nLargeChunksAlloc ); in Mem_StepEntryFetch()
552 p->pLargeChunks[ p->nLargeChunks++ ] = ABC_ALLOC( char, nBytes ); in Mem_StepEntryFetch()
553 return (char *)p->pLargeChunks[ p->nLargeChunks - 1 ]; in Mem_StepEntryFetch()