Home
last modified time | relevance | path

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

12345678910>>...19

/external/v8/src/heap/
Dspaces-inl.h32 : begin_(Page::FromAddress(start)), in PageRange()
33 end_(Page::FromAllocationAreaAddress(limit)->next_page()) { in PageRange()
46 if (Page::IsAlignedToPageSize(current_)) { in Next()
47 Page* page = Page::FromAllocationAreaAddress(current_); in Next()
112 void MemoryAllocator::ProtectChunkFromPage(Page* page) { in ProtectChunkFromPage()
118 void MemoryAllocator::UnprotectChunkFromPage(Page* page) { in UnprotectChunkFromPage()
140 for (Page* p : *this) { in ContainsSlow()
172 Page* Page::Initialize(Heap* heap, MemoryChunk* chunk, Executability executable, in Initialize()
180 Page* page = static_cast<Page*>(chunk); in Initialize()
189 template <Page::InitializationMode mode>
[all …]
Dspaces.h38 class Page; variable
104 DCHECK((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
116 DCHECK((Page::kObjectStartOffset <= offset) && (offset <= Page::kPageSize))
201 inline Page* page();
664 class Page : public MemoryChunk {
673 static inline Page* ConvertNewToOld(Page* old_page);
678 static Page* FromAddress(Address addr) { in FromAddress()
679 return reinterpret_cast<Page*>(OffsetFrom(addr) & ~kPageAlignmentMask); in FromAddress()
686 static Page* FromAllocationAreaAddress(Address address) { in FromAllocationAreaAddress()
687 return Page::FromAddress(address - kPointerSize); in FromAllocationAreaAddress()
[all …]
Dspaces.cc38 HeapObjectIterator::HeapObjectIterator(Page* page) in HeapObjectIterator()
57 Page* cur_page = *(current_page_++); in AdvanceToNextPage()
270 if (aligned_requested < (block->size - Page::kPageSize)) { in ReserveBlock()
303 capacity_ = RoundUp(capacity, Page::kPageSize); in SetUp()
304 capacity_executable_ = RoundUp(capacity_executable, Page::kPageSize); in SetUp()
441 reservation->size() <= Page::kPageSize); in FreeMemory()
507 void Page::InitializeAsAnchor(Space* space) { in InitializeAsAnchor()
756 ZapBlock(base, Page::kObjectStartOffset + commit_area_size); in AllocateChunk()
759 area_start = base + Page::kObjectStartOffset; in AllocateChunk()
792 void Page::ResetFreeListStatistics() { in AllocateChunk()
[all …]
Dremembered-set.h31 slot_set[offset / Page::kPageSize].Insert(offset % Page::kPageSize); in Insert()
43 return slot_set[offset / Page::kPageSize].Contains(offset % in Contains()
44 Page::kPageSize); in Contains()
55 slot_set[offset / Page::kPageSize].Remove(offset % Page::kPageSize); in Remove()
68 if (end_offset < static_cast<uintptr_t>(Page::kPageSize)) { in RemoveRange()
74 int start_chunk = static_cast<int>(start_offset / Page::kPageSize); in RemoveRange()
75 int end_chunk = static_cast<int>((end_offset - 1) / Page::kPageSize); in RemoveRange()
77 static_cast<int>(start_offset % Page::kPageSize); in RemoveRange()
81 end_offset - static_cast<uintptr_t>(end_chunk) * Page::kPageSize); in RemoveRange()
88 Page::kPageSize, mode); in RemoveRange()
[all …]
Darray-buffer-tracker.cc49 Page* target_page = Page::FromAddress(new_buffer->address()); in Process()
80 for (Page* page : PageRange(heap->new_space()->FromSpaceStart(), in FreeDeadInNewSpace()
88 void ArrayBufferTracker::FreeDead(Page* page) { in FreeDead()
99 void ArrayBufferTracker::FreeAll(Page* page) { in FreeAll()
108 bool ArrayBufferTracker::ProcessBuffers(Page* page, ProcessingMode mode) { in ProcessBuffers()
128 Page* page = Page::FromAddress(buffer->address()); in IsTracked()
Dmark-compact.cc112 Page* page = Page::FromAddress(current); in VerifyMarking()
131 CHECK_EQ(space->bottom(), Page::FromAddress(space->bottom())->area_start()); in VerifyMarking()
135 Page* page = *(it++); in VerifyMarking()
144 for (Page* p : *space) { in VerifyMarking()
182 static void VerifyEvacuation(Page* page) { in VerifyEvacuation()
199 Page* page = *(it++); in VerifyEvacuation()
216 for (Page* p : *space) { in VerifyEvacuation()
258 void MarkCompactCollector::AddEvacuationCandidate(Page* p) { in AddEvacuationCandidate()
324 for (Page* p : *space) { in VerifyMarkbitsAreClean()
332 for (Page* p : PageRange(space->bottom(), space->top())) { in VerifyMarkbitsAreClean()
[all …]
Dmark-compact.h422 typedef std::deque<Page*> SweepingList;
423 typedef List<Page*> SweptList;
425 static int RawSweep(Page* p, FreeListRebuildingMode free_list_mode,
436 void AddPage(AllocationSpace space, Page* page);
440 int ParallelSweepPage(Page* page, AllocationSpace identity);
451 void SweepOrWaitUntilSweepingCompleted(Page* page);
453 void AddSweptPageSafe(PagedSpace* space, Page* page);
454 Page* GetSweptPageSafe(PagedSpace* space);
459 static ClearOldToNewSlotsMode GetClearOldToNewSlotsMode(Page* p);
468 Page* GetSweepingPageSafe(AllocationSpace space);
[all …]
Darray-buffer-tracker.h19 class Page; variable
43 static void FreeDead(Page* page);
47 static void FreeAll(Page* page);
51 static bool ProcessBuffers(Page* page, ProcessingMode mode);
Dheap-inl.h86 Page* PromotionQueue::GetHeadPage() { in GetHeadPage()
87 return Page::FromAllocationAreaAddress(reinterpret_cast<Address>(rear_)); in GetHeadPage()
95 if (Page::FromAllocationAreaAddress(limit) != GetHeadPage()) return; in SetNewLimit()
114 if (GetHeadPage() != Page::FromAddress(to_space_top)) { in IsBelowPromotionQueue()
468 Page::FromAddress(HeapObject::cast(object)->address())->InNewSpace(); in InNewSpace()
478 ->IsFlagSet(Page::IN_FROM_SPACE); in InFromSpace()
485 ->IsFlagSet(Page::IN_TO_SPACE); in InToSpace()
499 Page* page = Page::FromAddress(old_address); in ShouldBePromoted()
575 if (!Page::OnSamePage(object_address, last_memento_word_address)) { in FindAllocationMemento()
590 Page* object_page = Page::FromAddress(object_address); in FindAllocationMemento()
[all …]
Darray-buffer-tracker-inl.h18 Page* page = Page::FromAddress(buffer->address()); in RegisterNew()
39 Page* page = Page::FromAddress(buffer->address()); in Unregister()
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/configuration/
DConfigurationActivity.java10 import com.davemorrissey.labs.subscaleview.test.Page;
24 new Page(configuration_p1_subtitle, configuration_p1_text), in ConfigurationActivity()
25 new Page(configuration_p2_subtitle, configuration_p2_text), in ConfigurationActivity()
26 new Page(configuration_p3_subtitle, configuration_p3_text), in ConfigurationActivity()
27 new Page(configuration_p4_subtitle, configuration_p4_text), in ConfigurationActivity()
28 new Page(configuration_p5_subtitle, configuration_p5_text), in ConfigurationActivity()
29 new Page(configuration_p6_subtitle, configuration_p6_text), in ConfigurationActivity()
30 new Page(configuration_p7_subtitle, configuration_p7_text), in ConfigurationActivity()
31 new Page(configuration_p8_subtitle, configuration_p8_text), in ConfigurationActivity()
32 new Page(configuration_p9_subtitle, configuration_p9_text), in ConfigurationActivity()
[all …]
/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
Dbug_492_1.in17 % Page number 0.
19 /Type /Page
31 % Page number 1.
33 /Type /Page
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/basicfeatures/
DBasicFeaturesActivity.java9 import com.davemorrissey.labs.subscaleview.test.Page;
21 new Page(basic_p1_subtitle, basic_p1_text), in BasicFeaturesActivity()
22 new Page(basic_p2_subtitle, basic_p2_text), in BasicFeaturesActivity()
23 new Page(basic_p3_subtitle, basic_p3_text), in BasicFeaturesActivity()
24 new Page(basic_p4_subtitle, basic_p4_text), in BasicFeaturesActivity()
25 new Page(basic_p5_subtitle, basic_p5_text) in BasicFeaturesActivity()
/external/libcups/filter/
Drastertohp.c41 Page, /* Current page number */ variable
117 if ((!Duplex || (Page & 1)) && header->MediaPosition) in StartPage()
129 if (Page & 1) in StartPage()
133 if (!Duplex || (Page & 1) || (ppd && ppd->model_number == 2)) in StartPage()
198 if (!Duplex || (Page & 1)) in StartPage()
367 if (!(Duplex && (Page & 1))) in EndPage()
374 if (!(Duplex && (Page & 1))) in EndPage()
742 Page = 0; in main()
753 Page ++; in main()
755 fprintf(stderr, "PAGE: %d %d\n", Page, header.NumCopies); in main()
[all …]
/external/pdfium/testing/resources/
Dannotiter.in18 % Page number 0.
20 /Type /Page
35 % Page number 1.
37 /Type /Page
52 % Page number 2.
54 /Type /Page
Dbug_750568.in15 /Type /Page
21 /Type /Page
27 /Type /Page
33 /Type /Page
Dbookmarks.in17 % Page number 0.
19 /Type /Page
28 % Page number 1.
30 /Type /Page
Dbookmarks_circular.in17 % Page number 0.
19 /Type /Page
28 % Page number 1.
30 /Type /Page
/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/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/eventhandlingadvanced/
DAdvancedEventHandlingActivity.java13 import com.davemorrissey.labs.subscaleview.test.Page;
25 new Page(advancedevent_p1_subtitle, advancedevent_p1_text), in AdvancedEventHandlingActivity()
26 new Page(advancedevent_p2_subtitle, advancedevent_p2_text), in AdvancedEventHandlingActivity()
27 new Page(advancedevent_p3_subtitle, advancedevent_p3_text), in AdvancedEventHandlingActivity()
28 new Page(advancedevent_p4_subtitle, advancedevent_p4_text), in AdvancedEventHandlingActivity()
29 new Page(advancedevent_p5_subtitle, advancedevent_p5_text) in AdvancedEventHandlingActivity()
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/animation/
DAnimationActivity.java11 import com.davemorrissey.labs.subscaleview.test.Page;
28 new Page(animation_p1_subtitle, animation_p1_text), in AnimationActivity()
29 new Page(animation_p2_subtitle, animation_p2_text), in AnimationActivity()
30 new Page(animation_p3_subtitle, animation_p3_text), in AnimationActivity()
31 new Page(animation_p4_subtitle, animation_p4_text) in AnimationActivity()
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/imagedisplay/
DImageDisplayActivity.java7 import com.davemorrissey.labs.subscaleview.test.Page;
26 new Page(display_p1_subtitle, display_p1_text), in ImageDisplayActivity()
27 new Page(display_p2_subtitle, display_p2_text), in ImageDisplayActivity()
28 new Page(display_p3_subtitle, display_p3_text) in ImageDisplayActivity()
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/eventhandling/
DEventHandlingActivity.java10 import com.davemorrissey.labs.subscaleview.test.Page;
22 new Page(event_p1_subtitle, event_p1_text), in EventHandlingActivity()
23 new Page(event_p2_subtitle, event_p2_text), in EventHandlingActivity()
24 new Page(event_p3_subtitle, event_p3_text) in EventHandlingActivity()

12345678910>>...19