Home
last modified time | relevance | path

Searched refs:Page (Results 1 – 25 of 426) sorted by relevance

12345678910>>...18

/external/v8/test/cctest/heap/
Dtest-compaction.cc12 static void CheckInvariantsOfAbortedPage(Page* page) { in CheckInvariantsOfAbortedPage()
19 CHECK(!page->IsFlagSet(Page::COMPACTION_WAS_ABORTED)); in CheckInvariantsOfAbortedPage()
38 it.next()->SetFlag(Page::NEVER_ALLOCATE_ON_PAGE); in HEAP_TEST()
45 CreatePadding(heap, Page::kAllocatableMemory, TENURED); in HEAP_TEST()
46 Page* to_be_aborted_page = in HEAP_TEST()
47 Page::FromAddress(compaction_page_handles.front()->address()); in HEAP_TEST()
57 CHECK_EQ(to_be_aborted_page, Page::FromAddress(object->address())); in HEAP_TEST()
83 it.next()->SetFlag(Page::NEVER_ALLOCATE_ON_PAGE); in HEAP_TEST()
92 CreatePadding(heap, Page::kAllocatableMemory, TENURED, object_size); in HEAP_TEST()
93 Page* to_be_aborted_page = in HEAP_TEST()
[all …]
Dtest-spaces.cc43 Page* p = Page::FromAddress(page_start);
45 p->SetRegionMarks(Page::kAllRegionsCleanMarks);
50 CHECK(!Page::FromAddress(addr)->IsRegionDirty(addr));
56 Page::FromAddress(addr)->MarkRegionDirty(addr);
62 CHECK(Page::FromAddress(addr)->IsRegionDirty(addr));
71 TEST(Page) {
72 byte* mem = NewArray<byte>(2*Page::kPageSize);
76 Address page_start = RoundUp(start, Page::kPageSize);
78 Page* p = Page::FromAddress(page_start);
88 CHECK(p->ObjectAreaStart() == page_start + Page::kObjectStartOffset);
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/page/
Dpage_unittest.py20 apage = page.Page('file://somedir/otherdir/file.html',
25 apage = page.Page('file:///somedir/otherdir/file.html',
30 apage = page.Page('file://somedir/otherdir/file.html?key=val',
35 apage = page.Page('file://somedir/file.html?key=val',
41 apage = page.Page('file://somedir/otherdir/',
50 page.Page('http://www.foo.com/', story_set, story_set.base_dir))
52 page.Page('http://www.bar.com/', story_set, story_set.base_dir))
65 page.Page('file://../otherdir/file.html', story_set,
72 page.Page('http://www.foo.com/', story_set, story_set.base_dir))
74 page.Page('http://www.bar.com/', story_set, story_set.base_dir))
[all …]
Dpage_run_end_to_end_unittest.py145 story_set.AddStory(page_module.Page(
147 story_set.AddStory(page_module.Page(
149 story_set.AddStory(page_module.Page(
185 story_set.AddStory(page_module.Page(
187 story_set.AddStory(page_module.Page(
236 page = page_module.Page(
271 page = page_module.Page(
302 page = page_module.Page(
327 page = page_module.Page(
352 page = page_module.Page(
[all …]
Dshared_page_state_unittest.py60 story = page.Page(
85 google_page = page.Page(
88 example_page = page.Page(
91 gmail_page = page.Page(
Dpage.py8 Page = page.Page variable
/external/pdfium/testing/resources/javascript/
Dapp_props.in19 % Page number 0.
21 /Type /Page
28 % Page number 1.
30 /Type /Page
37 % Page number 2.
39 /Type /Page
46 % Page number 3.
48 /Type /Page
Ddocument_props.in19 % Page number 0.
21 /Type /Page
28 % Page number 1.
30 /Type /Page
37 % Page number 2.
39 /Type /Page
46 % Page number 3.
48 /Type /Page
Ddocument_methods.in19 % Page number 0.
21 /Type /Page
29 % Page number 1.
31 /Type /Page
38 % Page number 2.
40 /Type /Page
47 % Page number 3.
49 /Type /Page
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
DGridPacker.java20 import com.badlogic.gdx.tools.texturepacker.TexturePacker.Page;
35 public Array<Page> pack (Array<Rect> inputRects) { in pack()
49 Array<Page> pages = new Array(); in pack()
51 Page result = packPage(inputRects, cellWidth, cellHeight); in pack()
57 private Page packPage (Array<Rect> inputRects, int cellWidth, int cellHeight) { in packPage()
58 Page page = new Page(); in packPage()
DMaxRectsPacker.java23 import com.badlogic.gdx.tools.texturepacker.TexturePacker.Page;
46 public Array<Page> pack (Array<Rect> inputRects) { in pack()
73 Array<Page> pages = new Array(); in pack()
77 Page result = packPage(inputRects); in pack()
85 private Page packPage (Array<Rect> inputRects) { in packPage()
134 Page bestResult = null; in packPage()
141 Page result = packAtSize(true, size - edgePaddingX, size - edgePaddingY, inputRects); in packPage()
162 Page bestWidthResult = null; in packPage()
164 Page result = packAtSize(true, width - edgePaddingX, height - edgePaddingY, inputRects); in packPage()
190 private Page packAtSize (boolean fully, int width, int height, Array<Rect> inputRects) { in packAtSize()
[all …]
/external/ImageMagick/Magick++/demo/
Dsmile_anim.miff4 Page=48x48+0+0
13 Page=48x48+0+0
21 Page=48x48+0+0
29 Page=48x48+0+0
37 Page=48x48+0+0
45 Page=48x48+0+0
/external/v8/src/heap/
Dspaces.h82 DCHECK((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
88 DCHECK((0 < size) && (size <= Page::kMaxRegularHeapObjectSize))
94 DCHECK((Page::kObjectStartOffset <= offset) && (offset <= Page::kPageSize))
802 class Page : public MemoryChunk {
808 INLINE(static Page* FromAddress(Address a)) { in INLINE()
809 return reinterpret_cast<Page*>(OffsetFrom(a) & ~kPageAlignmentMask); in INLINE()
816 INLINE(static Page* FromAllocationTop(Address top)) { in INLINE()
817 Page* p = FromAddress(top - kPointerSize); in INLINE()
822 inline Page* next_page() { in next_page()
824 return static_cast<Page*>(next_chunk()); in next_page()
[all …]
Dspaces-inl.h41 Page* PageIterator::next() { in next()
167 void MemoryAllocator::ProtectChunkFromPage(Page* page) { in ProtectChunkFromPage()
173 void MemoryAllocator::UnprotectChunkFromPage(Page* page) { in UnprotectChunkFromPage()
194 Page* Page::Initialize(Heap* heap, MemoryChunk* chunk, Executability executable, in Initialize()
196 Page* page = reinterpret_cast<Page*>(chunk); in Initialize()
210 Page* p = Page::FromAddress(addr); in Contains()
233 OffsetFrom(addr) & ~Page::kPageAlignmentMask); in FromAnyPointerAddress()
298 void Page::set_next_page(Page* page) { in set_next_page()
304 void Page::set_prev_page(Page* page) { in set_prev_page()
Dspaces.cc31 HeapObjectIterator::HeapObjectIterator(Page* page) { in HeapObjectIterator()
56 Page* cur_page; in AdvanceToNextPage()
60 cur_page = Page::FromAddress(cur_addr_ - 1); in AdvanceToNextPage()
261 if (aligned_requested < (block->size - Page::kPageSize)) { in ReserveBlock()
292 capacity_ = RoundUp(capacity, Page::kPageSize); in SetUp()
293 capacity_executable_ = RoundUp(capacity_executable, Page::kPageSize); in SetUp()
347 reservation->size() <= Page::kPageSize); in FreeMemory()
416 void Page::InitializeAsAnchor(PagedSpace* owner) { in InitializeAsAnchor()
426 Address area_end = start + Page::kPageSize; in Initialize()
429 MemoryChunk::Initialize(heap, start, Page::kPageSize, area_start, in Initialize()
[all …]
Dmark-compact.cc145 Page* p = it.next(); in VerifyMarking()
183 static void VerifyEvacuation(Page* page) { in VerifyEvacuation()
221 Page* p = it.next(); in VerifyEvacuation()
270 void MarkCompactCollector::AddEvacuationCandidate(Page* p) { in AddEvacuationCandidate()
325 Page* p = evacuation_candidates_[i]; in ClearInvalidStoreAndSlotsBufferEntries()
341 Page* p = it.next(); in VerifyValidSlotsBufferEntries()
393 Page* p = it.next(); in VerifyMarkbitsAreClean()
421 CHECK_EQ(0, Page::FromAddress(obj->address())->LiveBytes()); in VerifyMarkbitsAreClean()
475 Page::FromAddress(obj->address())->ResetProgressBar(); in ClearMarkbits()
476 Page::FromAddress(obj->address())->ResetLiveBytes(); in ClearMarkbits()
[all …]
Dmark-compact.h338 void AddEvacuationCandidate(Page* p);
388 return Page::FromAddress(reinterpret_cast<Address>(host)) in INLINE()
393 return Page::FromAddress(reinterpret_cast<Address>(obj)) in INLINE()
428 int SweepInParallel(Page* page, PagedSpace* space);
435 void SweepOrWaitUntilSweepingCompleted(Page* page);
483 bool IsSlotInBlackObject(Page* p, Address slot, HeapObject** out_object);
484 bool IsSlotInBlackObjectSlow(Page* p, Address slot);
519 void EvictPopularEvacuationCandidate(Page* page);
731 void VisitLiveObjectsBody(Page* page, ObjectVisitor* visitor);
780 List<Page*> evacuation_candidates_;
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
DPixmapPacker.java105 final Array<Page> pages = new Array();
158 Page page = packStrategy.pack(this, name, rect); in pack()
199 public Array<Page> getPages () { in getPages()
206 for (Page page : pages) { in getRect()
215 public synchronized Page getPage (String name) { in getPage()
216 for (Page page : pages) { in getPage()
237 for (Page page : pages) { in dispose()
260 for (Page page : pages) { in updateTextureAtlas()
285 for (Page page : pages) in updatePageTextures()
343 static public class Page { class in PixmapPacker
[all …]
/external/pdfium/testing/resources/
Dbookmarks.in17 % Page number 0.
19 /Type /Page
28 % Page number 1.
30 /Type /Page
Dnamed_dests.in20 % Page number 0.
22 /Type /Page
31 % Page number 1.
33 /Type /Page
Dbug_572871.in21 /Type /Page
28 /Type /Page
35 /Type /Page
Dbug_507316.in49 /Type /Page
56 /Type /Page
63 /Type /Page
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/pages/
Dexternal_page.py6 from telemetry.page.page import Page
9 class ExternalPage(Page):
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/page_sets/
Dexample_domain.py15 self.AddStory(page.Page('http://www.example.com', self))
16 self.AddStory(page.Page('https://www.example.com', self))
/external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
DTextureAtlasLoader.java27 import com.badlogic.gdx.graphics.g2d.TextureAtlas.TextureAtlasData.Page;
43 for (Page page : data.getPages()) { in load()
62 for (Page page : data.getPages()) { in getDependencies()

12345678910>>...18