GCAssertMsg       121 MMgc/BasicList.h 				GCAssertMsg(false, "Bug: should not try to remove something that's not in the list");
GCAssertMsg       132 MMgc/BasicList.h 			GCAssertMsg(i < Limit(), "Index out of bounds");
GCAssertMsg       138 MMgc/FixedAlloc.cpp 		GCAssertMsg(m_heap->StackEnteredCheck() || (opts&kCanFail) != 0, "MMGC_ENTER must be on the stack");
GCAssertMsg       139 MMgc/FixedAlloc.cpp 		GCAssertMsg(((size_t)m_itemSize >= size), "allocator itemsize too small");
GCAssertMsg       146 MMgc/FixedAlloc.cpp 					GCAssertMsg(0, "Memory allocation failed to abort properly");
GCAssertMsg       225 MMgc/FixedAlloc.cpp 		GCAssertMsg(b->alloc->m_heap->IsAddressInHeap(item), "Bogus pointer passed to free");
GCAssertMsg       118 MMgc/FixedMalloc-inlines.h 		GCAssertMsg(size > 0, "cannot allocate a 0 sized block\n");
GCAssertMsg       315 MMgc/FixedMalloc.cpp 		GCAssertMsg(false, "Trying to delete an object with FixedMalloc::Free that was not allocated with FixedMalloc::Alloc\n");
GCAssertMsg      1043 MMgc/GC.cpp    		GCAssertMsg(GetNumBlocks() == 0, "GC accounting off");
GCAssertMsg      1056 MMgc/GC.cpp    		GCAssertMsg(!scanStack || onThread(), "Full collection with stack scan requested however the GC isn't associated with a thread, missing MMGC_GCENTER macro.");
GCAssertMsg      1264 MMgc/GC.cpp    		GCAssertMsg(size > 0, "cannot allocate a 0 sized block\n");
GCAssertMsg      1265 MMgc/GC.cpp    		GCAssertMsg(onThread(), "GC called from different thread!");
GCAssertMsg      1268 MMgc/GC.cpp    			GCAssertMsg(false, "A MMGC_GCENTER macro must exist on the stack");
GCAssertMsg      1377 MMgc/GC.cpp    		GCAssertMsg(onThread(), "GC called from a different thread or not associated with a thread, missing MMGC_GCENTER macro perhaps.");
GCAssertMsg      1718 MMgc/GC.cpp    				GCAssertMsg(allowGarbage, "FindBeginningGuarded must not be called on non-managed addresses");
GCAssertMsg      1964 MMgc/GC.cpp    				GCAssertMsg(false, "RCObject didn't clean up itself.");
GCAssertMsg      2283 MMgc/GC.cpp    				GCAssertMsg(false, "Invalid pageMap value");
GCAssertMsg      2361 MMgc/GC.cpp    				GCAssertMsg(block->committed, "Means we are probing uncommitted memory. not good");
GCAssertMsg      2474 MMgc/GC.cpp    				GCAssertMsg(false, "Oh seems we missed a case...Tom any ideas here?");
GCAssertMsg      3640 MMgc/GC.cpp    		GCAssertMsg(gc->GetStackEnter() != 0, "Invalid MMGC_GC_ROOT_THREAD usage, GC not already entered, random crashes will ensue");
GCAssertMsg      3646 MMgc/GC.cpp    		GCAssertMsg(gc->GetStackEnter() == 0, "Invalid MMGC_GC_ROOT_THREAD usage, GC not exitted properly, random crashes will ensue");
GCAssertMsg        97 MMgc/GCAlloc.cpp 		GCAssertMsg(GetNumAlloc() == 0, "You have leaks");
GCAssertMsg       232 MMgc/GCAlloc.cpp 		GCAssertMsg(((size_t)m_itemSize >= size), "allocator itemsize too small");
GCAssertMsg       388 MMgc/GCAlloc.cpp 			GCAssertMsg(!gone, "How can a page I'm about to free an item on be empty?");
GCAssertMsg       453 MMgc/GCAlloc.cpp 					GCAssertMsg(mq != kQueued, "No queued objects should exist when finalizing");
GCAssertMsg       628 MMgc/GCAlloc.cpp 			GCAssertMsg(!b->needsSweeping, "All needsSweeping should have been swept at this point.");
GCAssertMsg       645 MMgc/GCAlloc.cpp 					GCAssertMsg(m == 0 || m == kFreelist, "All items should be free or clear, nothing should be marked or queued.");
GCAssertMsg        57 MMgc/GCDebug.h         #define GCAssert(x)					GCAssertMsg((x), "")
GCAssertMsg       143 MMgc/GCGlobalNew.cpp 		GCAssertMsg(GCHeap::GetGCHeap()->StackEnteredCheck() || (opts&kCanFail) != 0, "MMGC_ENTER macro must exist on the stack");
GCAssertMsg       150 MMgc/GCGlobalNew.cpp 		GCAssertMsg(GCHeap::GetGCHeap()->StackEnteredCheck() || (opts&kCanFail) != 0, "MMGC_ENTER macro must exist on the stack");
GCAssertMsg       203 MMgc/GCGlobalNew.cpp 				GCAssertMsg(0, "Trying to release array pointer with scalar destructor! Check the allocation and free calls for this object!");
GCAssertMsg       207 MMgc/GCGlobalNew.cpp 				GCAssertMsg(0, "Trying to release system memory with scalar deletefunc! Check the allocation and free calls for this object!");
GCAssertMsg       211 MMgc/GCGlobalNew.cpp 				GCAssertMsg(0, "Trying to release funky memory with scalar deletefunc! Check the allocation and free calls for this object!");
GCAssertMsg       222 MMgc/GCGlobalNew.cpp 				GCAssertMsg(0, "Trying to release array pointer with different type destructor! Check the allocation and free calls for this object!");
GCAssertMsg       226 MMgc/GCGlobalNew.cpp 				GCAssertMsg(0, "Trying to release scalar pointer with vector destructor! Check the allocation and free calls for this object!");
GCAssertMsg       230 MMgc/GCGlobalNew.cpp 				GCAssertMsg(0, "Trying to release system pointer with vector deletefunc! Check the allocation and free calls for this object!");
GCAssertMsg       234 MMgc/GCGlobalNew.cpp 				GCAssertMsg(0, "Trying to release funky memory with vector deletefunc! Check the allocation and free calls for this object!");
GCAssertMsg       228 MMgc/GCHeap.cpp 		GCAssertMsg(leakedBytes == 0 || GetStatus() == kMemAbort, "Leaks!");
GCAssertMsg       303 MMgc/GCHeap.cpp 						GCAssertMsg(0, "Internal error: ExpandHeap should have aborted if it can't satisfy the request");
GCAssertMsg       353 MMgc/GCHeap.cpp 		GCAssertMsg(block != NULL, "Bogus item");
GCAssertMsg       643 MMgc/GCHeap.cpp 					GCAssertMsg(nextRegion != NULL, "ExpandHeap didn't set nextRegion");
GCAssertMsg       667 MMgc/GCHeap.cpp 			GCAssertMsg(false, "This shouldn't be possible");
GCAssertMsg      1956 MMgc/GCHeap.cpp 		GCAssertMsg(false, "MMGC_ENTER missing or we allocated more memory trying to shutdown");
GCAssertMsg       122 MMgc/GCLargeAlloc.cpp 		GCAssertMsg(!m_startedFinalize, "GCLargeAlloc::Free is not allowed during finalization; caller must guard against this.");
GCAssertMsg       155 MMgc/GCLargeAlloc.cpp 		GCAssertMsg(false, "Bad free!");
GCAssertMsg       598 MMgc/GCMemoryProfiler.cpp 			GCAssertMsg(s == NULL || GCHeap::GetGCHeap()->GetProfiler()->GetAllocationTrace(s) != NULL, "Unknown allocation");
GCAssertMsg       662 MMgc/GCMemoryProfiler.cpp 			GCAssertMsg(trace != NULL, "Trace was null");
GCAssertMsg       671 MMgc/GCMemoryProfiler.cpp 			GCAssertMsg(trace != NULL, "Trace was null");
GCAssertMsg       573 MMgc/ZCT.cpp   		GCAssertMsg(false, "Zero count object reachable, ref counts not correct!");
GCAssertMsg       120 VMPI/MMgcPortWin.cpp 			GCAssertMsg(false, (const char*)lpMsgBuf); //todo rishit
GCAssertMsg       513 VMPI/MMgcPortWin.cpp 						GCAssertMsg(false, "See lpMsgBuf");