Lines Matching full:moved
460 void* moved = NULL;
462 moved = realloc(modules, sizeof(ModuleStats) * (1 + moduleCount));
463 if(NULL != moved)
465 modules = (ModuleStats*)moved;
498 void* moved = NULL;
500 moved = realloc(theModule->mSegments, sizeof(SegmentStats) * (theModule->mSegmentCount + 1));
501 if(NULL != moved)
503 theModule->mSegments = (SegmentStats*)moved;
537 void* moved = NULL;
539 moved = realloc(theSegment->mObjects, sizeof(ObjectStats) * (1 + theSegment->mObjectCount));
540 if(NULL != moved)
542 theSegment->mObjects = (ObjectStats*)moved;
575 void* moved = NULL;
577 moved = realloc(theObject->mSymbols, sizeof(SymbolStats) * (1 + theObject->mSymbolCount));
578 if(NULL != moved)
580 theObject->mSymbols = (SymbolStats*)moved;