heapAlloc         950 MMgc/GC.cpp    		pageMap = (unsigned char*) heapAlloc(1);
heapAlloc         953 MMgc/GC.cpp    		m_bitsNext = (uint32_t*)heapAlloc(1);
heapAlloc        1651 MMgc/GC.cpp    		void *item = heapAlloc(size, zero ? GCHeap::kZero : 0);
heapAlloc        1654 MMgc/GC.cpp    			item = heapAlloc(size, GCHeap::kExpand| (zero ? GCHeap::kZero : 0) | (canFail ? GCHeap::kCanFail : 0));
heapAlloc        1763 MMgc/GC.cpp    			dst = (unsigned char*)heapAlloc(numPagesNeeded);
heapAlloc        3299 MMgc/GC.cpp    			m_bitsNext = (uint32_t*)heapAlloc(1);
heapAlloc        1315 MMgc/GC.h      		void *heapAlloc(size_t size, int flags=GCHeap::kExpand|GCHeap::kZero|GCHeap::kProfile);
heapAlloc         152 MMgc/ZCT.cpp   		blocktable = (RCObject***) gc->heapAlloc(numblocks);	// must succeed, so use default flags
heapAlloc         155 MMgc/ZCT.cpp   		blocktable[0] = (RCObject**) gc->heapAlloc(1);			// must succeed, so use default flags
heapAlloc         681 MMgc/ZCT.cpp   			block = (RCObject**)gc->heapAlloc(1, GCHeap::kExpand|GCHeap::kZero|GCHeap::kProfile|GCHeap::kCanFail);