HomeSort by relevance Sort by last modified time
    Searched refs:page (Results 151 - 175 of 1227) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/strace/tests-mx32/
msg_control.c 61 get_cmsghdr(void *const page, const size_t len)
63 return page - CMSG_ALIGN(len);
94 void *const page,
104 struct cmsghdr *cmsg = get_cmsghdr(page, msg_controllen);
147 void *const page,
161 get_cmsghdr(page, msg_controllen),
162 (void *) get_cmsghdr(page, msg_controllen) + aligned_cms_len[0]
207 test_scm_rights3(struct msghdr *const mh, void *const page, const size_t nfds)
210 struct cmsghdr *cmsg = get_cmsghdr(page, len);
234 test_scm_timestamp(struct msghdr *const mh, void *const page)
843 void *page = tail_alloc(1) + 1; local
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
PackageSourcePageTest.java 12 package org.jacoco.report.internal.html.page;
45 private PackageSourcePage page; field in class:PackageSourcePageTest
90 page = new PackageSourcePage(node, null, sourceLocator, rootFolder,
92 page.render();
113 page = new PackageSourcePage(node, null, sourceLocator, rootFolder,
115 page.render();
117 assertNotNull(page.getSourceFilePage("Src1.java"));
118 assertNull(page.getSourceFilePage("Src2.java"));
  /external/pdfium/public/cpp/
fpdf_deleters.h 40 inline void operator()(FPDF_PAGE page) { FPDF_ClosePage(page); }
  /external/syslinux/com32/cmenu/libmenu/
com32io.h 37 void getpos(char *row, char *col, char page);
42 void getcursorshape(char *start, char *end); // Get shape for current page
44 // Get char displayed at current position in specified page
45 unsigned char getcharat(char page);
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 85 IWorkbenchPage page = currentWindow.getActivePage(); local
86 if (page.getPerspective().getId().equals(TreeViewPerspective.ID)) {
88 IWorkbenchPart part = page.findView(PropertyView.ID);
90 page.showView(PropertyView.ID);
109 IWorkbenchPage page = window.getActivePage(); local
110 if (page.getPerspective().getId().equals(PixelPerfectPespective.ID)) {
112 IWorkbenchPart part = page.findView(PixelPerfectTreeView.ID);
114 page.showView(PixelPerfectTreeView.ID);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68hc11/
insns12.s 8 call _foo,1 ; 16-bit reloc, immediate page specification
9 call _foo,%page(foo_page) ; 16-bit reloc and 8-bit page reloc
10 call 0,x,3 ; 8-bit page reloc
13 call 12,x,%page(foo_page) ; 8-bit page reloc
14 call 4,y,%page(foo_page)
15 call 7,sp,%page(foo_page)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
maxpage4.d 3 #ld: -z max-page-size=0x200000 -T maxpage4.t
noload-2.d 2 #ld: -T noload-1.t -z max-page-size=0x200000
textaddr7.d 2 #ld: -n -z max-page-size=0x200000 -Ttext-segment 0x10000
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pie/
vaddr-1.d 3 #ld: -pie -Ttext-segment 0x7000000 -z max-page-size=0x200000
  /external/pdfium/third_party/base/allocator/partition_allocator/
partition_alloc.h 47 // - Each partition page (which is usually multiple physical pages) has a
86 // for a partition page to be based on multiple system pages. Most references to
87 // "page" refer to partition pages.
90 // and include space for a small amount of metadata per partition page.
95 // system page of the span. For our current max slot span size of 64k and other
97 // against the end of a system page.
109 // freelist sections gradually, in units of the dominant system page size.
110 // What we're actually doing is avoiding filling the full partition page (16 KB)
112 // dirty a private page, which is very wasteful if we never actually store
125 // The layout of the super page is as follows. The sizes below are the sam
654 PartitionPage* page = PartitionPointerToPage(ptr); local
663 PartitionPage* page = bucket->active_pages_head; local
876 PartitionPage* page = PartitionPointerToPage(ptr); local
    [all...]
  /external/ImageMagick/MagickCore/
layer.c 215 % CoalesceImages() composites a set of images while respecting any page
256 bounds=next->page;
278 coalesce_image->page=bounds;
285 next->page.x,next->page.y,exception);
293 bounds=previous->page;
337 MagickTrue,next->page.x,next->page.y,exception);
341 coalesce_image->page=previous->page;
1913 page; local
    [all...]
nt-feature.c 118 page;
147 page=(*geometry);
148 if ((page.x+(ssize_t) page.width) > (ssize_t) image->columns)
149 page.width=image->columns-page.x;
150 if ((page.y+(ssize_t) page.height) > (ssize_t) image->rows)
151 page.height=image->rows-page.y
116 page; local
    [all...]
  /external/pdfium/testing/tools/
pngdiffer.py 72 page = 0
74 # Loop through the generated page images. Stop when there is a page
76 actual_path = path_templates.GetActualPath(page)
81 self.os_name, page)
89 expected_path = path_templates.GetExpectedPath(page)
96 page += 1
115 def GetActualPath(self, page):
116 return self.actual_path_template % page
118 def GetExpectedPath(self, page)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
XmlEditorMultiOutline.java 34 import org.eclipse.ui.part.Page;
49 public class XmlEditorMultiOutline extends Page implements IContentOutlinePage,
133 public void setPageActive(IContentOutlinePage page) {
134 if (page == null) {
138 page = mEmptyPage;
143 page.addSelectionChangedListener(this);
144 mCurrentPage = page;
149 Control control = page.getControl();
151 if (page instanceof IPageBookViewPage) {
153 ((IPageBookViewPage) page).init(getSite())
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
BundlePage.java 12 package org.jacoco.report.internal.html.page;
24 * Page showing coverage information for a bundle. The page contains a table
68 final PackagePage page = new PackagePage(p, this, locator, local
70 page.render();
71 addItem(page);
  /external/mesa3d/src/util/
slab.c 51 * - a pointer to the orphaned page of the element, with the least
61 /* The page is an array of allocations in one block. */
64 /* Next page in the same child pool. */
70 /* Memory after the last member is dedicated to the page itself.
78 struct slab_page_header *page, unsigned index)
81 ((uint8_t*)&page[1] + (parent->element_size * index));
84 /* The given object/element belongs to an orphaned page (i.e. the owning child
85 * pool has been destroyed). Mark the element as freed and free the whole page
91 struct slab_page_header *page; local
95 page = (struct slab_page_header *)(elt->owner & ~(intptr_t)1)
146 struct slab_page_header *page = pool->pages; local
177 struct slab_page_header *page = malloc(sizeof(struct slab_page_header) + local
    [all...]
  /frameworks/support/paging/common/src/main/java/androidx/paging/
PageResult.java 54 public final List<T> page; field in class:PageResult
63 this.page = list;
70 this.page = list;
79 + ", " + page
  /packages/services/BuiltInPrintService/jni/plugins/
wprint_image_platform.h 41 unsigned int page; member in struct:__anon53095
  /prebuilts/go/darwin-x86/src/runtime/
runtime_mmap_test.go 27 // Mmap fails if the address is not page aligned, so we can
28 // use this to test if the page size is the true page size.
31 // Get a region of memory to play with. This should be page-aligned.
37 // Mmap should fail at a half page into the buffer.
40 t.Errorf("Mmap should have failed with half-page alignment %d, but succeeded: %v", ps/2, err)
43 // Mmap should succeed at a full page into the buffer.
46 t.Errorf("Mmap at full-page alignment %d failed: %v", ps, err)
  /prebuilts/go/linux-x86/src/runtime/
runtime_mmap_test.go 27 // Mmap fails if the address is not page aligned, so we can
28 // use this to test if the page size is the true page size.
31 // Get a region of memory to play with. This should be page-aligned.
37 // Mmap should fail at a half page into the buffer.
40 t.Errorf("Mmap should have failed with half-page alignment %d, but succeeded: %v", ps/2, err)
43 // Mmap should succeed at a full page into the buffer.
46 t.Errorf("Mmap at full-page alignment %d failed: %v", ps, err)
  /toolchain/binutils/binutils-2.27/bfd/hosts/
m68kaux.h 23 #include <sys/page.h>
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
pop-op.l 1 GAS for MMIX .*/pop-op\.s page 1
13 GAS for MMIX .*/pop-op\.s page 2
reloc8.l 1 GAS for MMIX .*/reloc8\.s page 1
12 GAS for MMIX .*/reloc8\.s page 2
resume-op.l 1 GAS for MMIX .*/resume-op\.s page 1
12 GAS for MMIX .*/resume-op\.s page 2

Completed in 389 milliseconds

1 2 3 4 5 67 8 91011>>