Searched refs:newRegion (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DBlockAllocator.h152 Region* newRegion = Region::create(&m_superRegion, T::blockSize); local
155 m_emptyRegions.push(newRegion);
165 Region* newRegion = Region::createCustomSize(&m_superRegion, realSize, blockAlignment); local
166 DeadBlock* block = newRegion->allocate();
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-cache-old.mm1040 cache_allocator_region *newRegion = (cache_allocator_region *)
1049 newRegion->start = (cache_allocator_block *)addr;
1050 newRegion->end = (cache_allocator_block *)(addr + size);
1053 b = newRegion->start;
1057 newRegion->freeList = b;
1061 newRegion->next = NULL;
1066 *rgnP = newRegion;
1070 return newRegion;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DRegionInfo.cpp586 Region *newRegion = createRegion(entry, exit); local
589 newRegion->addSubRegion(lastRegion);
591 lastRegion = newRegion;
639 Region *newRegion = it->second; local
640 region->addSubRegion(getTopMostParent(newRegion));
641 region = newRegion;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DTextureMapperLayer.cpp254 static void resolveOverlaps(Region newRegion, Region& overlapRegion, Region& nonOverlapRegion) argument
256 Region newOverlapRegion(newRegion);
260 newRegion.subtract(overlapRegion);
261 nonOverlapRegion.unite(newRegion);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebView.cpp846 HRGN newRegion = ::CreateRectRgn(dirtyRect.x(), dirtyRect.y(), local
848 addToDirtyRegion(newRegion);
851 void WebView::addToDirtyRegion(HRGN newRegion) argument
861 ::CombineRgn(combinedRegion, m_backingStoreDirtyRegion->handle(), newRegion, RGN_OR);
862 ::DeleteObject(newRegion);
865 m_backingStoreDirtyRegion = RefCountedHRGN::create(newRegion);

Completed in 261 milliseconds