HomeSort by relevance Sort by last modified time
    Searched refs:page (Results 201 - 225 of 1838) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/asm/
tlbflush.h 27 #define flush_tlb_page(vma, page) local_flush_tlb_page(vma, page)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
maxpage1.d 2 #ld: -z max-page-size=0x200000
maxpage2.d 2 #ld: -z max-page-size=0x100000
  /external/libmicrohttpd/doc/examples/
basicauthentication.c 48 const char *page = "<html><body>Go away.</body></html>"; local
50 MHD_create_response_from_buffer (strlen (page), (void *) page,
58 const char *page = "<html><body>A secret.</body></html>"; local
60 MHD_create_response_from_buffer (strlen (page), (void *) page,
hellobrowser.c 23 const char *page = "<html><body>Hello, browser!</body></html>"; local
28 MHD_create_response_from_buffer (strlen (page), (void *) page,
  /external/pdfium/public/
fpdf_transformpage.h 20 * Set "MediaBox" entry to the page dictionary.
21 * @param[in] page - Handle to a page.
28 DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page,
35 * Set "CropBox" entry to the page dictionary.
36 * @param[in] page - Handle to a page.
43 DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page,
49 /** Get "MediaBox" entry from the page dictionary.
50 * @param[in] page - Handle to a page
    [all...]
  /external/piex/src/binary_parse/
cached_paged_byte_array.cc 19 // pointers to pages recently used. The least recently used page is stored
36 PagedByteArray::PagePtr* page) const {
40 // Cache hit, retrieve the page from the cache.
43 *page = cached_pages_[cache_index].page;
45 // Remove the page to insert it at the end of the cache later.
49 // Cache miss, ask PagedByteArray to load the page.
50 paged_byte_array_->getPage(page_index, begin, end, page);
52 // If the cache is full, remove the first (least recently used) page.
58 // Cache the most recently used page to the end of the vector
    [all...]
  /external/v8/src/heap/
array-buffer-tracker.cc 48 Page* target_page = Page::FromAddress(new_buffer->address());
49 // We need to lock the target page because we cannot guarantee
78 for (Page* page : NewSpacePageRange(heap->new_space()->FromSpaceStart(),
80 bool empty = ProcessBuffers(page, kUpdateForwardedRemoveOthers);
86 void ArrayBufferTracker::FreeDead(Page* page) {
87 // Callers need to ensure having the page lock.
88 LocalArrayBufferTracker* tracker = page->local_tracker()
126 Page* page = Page::FromAddress(buffer->address()); local
    [all...]
remembered-set.h 22 // Given a page and a slot in that page, this function adds the slot to the
24 static void Insert(Page* page, Address slot_addr) {
25 DCHECK(page->Contains(slot_addr));
26 SlotSet* slot_set = GetSlotSet(page);
28 slot_set = AllocateSlotSet(page);
30 uintptr_t offset = slot_addr - page->address();
31 slot_set[offset / Page::kPageSize].Insert(offset % Page::kPageSize)
    [all...]
  /external/ImageMagick/coders/
xps.c 136 page;
180 Set the page density.
199 Determine page geometry from the XPS media box.
205 (void) ResetMagickMemory(&page,0,sizeof(page));
210 if (image_info->page != (char *) NULL)
255 if (width > page.width)
256 page.width=width;
257 if (height > page.height)
258 page.height=height
134 page; local
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewPager.java 77 // Set the page transformer to perform the transition animation
78 // for each page in the view.
81 public void transformPage(View page, float position) {
83 // The >= 1 is needed so that the page
84 // (page A) that transitions behind the newly visible
85 // page (page B) that comes in from the left does not
87 // (page A is still technically on screen despite being
92 page.setTranslationX(0);
93 page.setAlpha(1.f)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
PixmapPacker.java 36 /** Packs {@link Pixmap pixmaps} into one or more {@link Page pages} to generate an atlas of pixmap instances. Provides means to
87 * for (Page page : packer.getPages()) {
105 final Array<Page> pages = new Array();
145 * @throws GdxRuntimeException in case the image did not fit due to the page size being too small or providing a duplicate
154 if (name == null) throw new GdxRuntimeException("Page size too small for pixmap.");
155 throw new GdxRuntimeException("Page size too small for pixmap: " + name);
158 Page page = packStrategy.pack(this, name, rect); local
160 page.rects.put(name, rect);
423 GuillotinePage page; local
531 SkylinePage page = (SkylinePage)packer.pages.get(i); local
564 SkylinePage page = new SkylinePage(packer); local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/
record_wpr.py 17 from telemetry.page import legacy_page_test
45 def WillNavigateToPage(self, page, tab):
49 self.page_test.WillNavigateToPage(page, tab)
51 def DidNavigateToPage(self, page, tab):
53 self.page_test.DidNavigateToPage(page, tab)
57 def CleanUpAfterPage(self, page, tab):
59 self.page_test.CleanUpAfterPage(page, tab)
61 def ValidateAndMeasurePage(self, page, tab, results):
63 self.page_test.ValidateAndMeasurePage(page, tab, results)
65 def RunNavigateSteps(self, page, tab)
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
SessionsPageTest.java 12 package org.jacoco.report.internal.html.page;
51 final SessionsPage page = new SessionsPage(noSessions, noExecutionData, local
53 assertEquals("el_session", page.getLinkStyle());
58 final SessionsPage page = new SessionsPage(noSessions, noExecutionData, local
60 assertEquals(".sessions.html", page.getFileName());
65 final SessionsPage page = new SessionsPage(noSessions, noExecutionData, local
67 assertEquals("Sessions", page.getLinkLabel());
72 final SessionsPage page = new SessionsPage(noSessions, noExecutionData, local
74 page.render();
88 final SessionsPage page = new SessionsPage(sessions, noExecutionData local
128 final SessionsPage page = new SessionsPage(noSessions, data, index, local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_slab.c 47 struct util_slab_page *page, unsigned index)
50 ((uint8_t*)page + sizeof(struct util_slab_page) +
56 struct util_slab_page *page; local
60 page = MALLOC(pool->page_size);
61 insert_at_tail(&pool->list, page);
65 block = util_slab_get_block(pool, page, i);
66 block->next_free = util_slab_get_block(pool, page, i+1);
70 block = util_slab_get_block(pool, page, pool->num_blocks-1);
73 pool->first_free = util_slab_get_block(pool, page, 0);
77 fprintf(stderr, "New page! Num of pages: %i\n", pool->num_pages)
161 struct util_slab_page *page, *temp; local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/page/
legacy_page_test.py 36 """A class styled on unittest.TestCase for creating page-specific tests.
48 validation and page measurement as necessary.
51 def ValidateAndMeasurePage(self, page, tab, results):
55 page, 'body_children', 'count', body_child_count))
99 """ Should the browser be restarted for the page?
102 browser for each page. It may be called before the browser is started.
106 def StopBrowserAfterPage(self, browser, page):
107 """Should the browser be stopped after the page is run?
109 This is called after a page is run to decide whether the browser needs to
111 restarted to run the next page
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
wdg_validate.py 57 page = output.getvalue()
65 return [page]
71 self.wdg_path, ops, page)
73 page = self.add_error(page, html_errors)[0]
77 headers.append(('Content-Length', str(len(page))))
78 return [page]
80 def call_wdg_validate(self, wdg_path, ops, page):
91 stdout = proc.communicate(page)[0]
113 Validation errors are appended to the text of each page
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
TextureAtlasLoader.java 27 import com.badlogic.gdx.graphics.g2d.TextureAtlas.TextureAtlasData.Page;
43 for (Page page : data.getPages()) {
44 Texture texture = assetManager.get(page.textureFile.path().replaceAll("\\\\", "/"), Texture.class);
45 page.texture = texture;
62 for (Page page : data.getPages()) {
64 params.format = page.format;
65 params.genMipMaps = page.useMipMaps;
66 params.minFilter = page.minFilter;
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
cacheflush.h 29 #define flush_dcache_page(page) do { } while (0)
39 #define copy_to_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
40 #define copy_from_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
  /external/skia/tools/skp/page_sets/
skia_carsvg_desktop.py 8 from telemetry.page import page as page_module
9 from telemetry.page import shared_page_state
12 class SkiaBuildbotDesktopPage(page_module.Page):
skia_chalkboard_desktop.py 8 from telemetry.page import page as page_module
9 from telemetry.page import shared_page_state
12 class SkiaBuildbotDesktopPage(page_module.Page):
skia_css3gradients_desktop.py 8 from telemetry.page import page as page_module
9 from telemetry.page import shared_page_state
12 class SkiaBuildbotDesktopPage(page_module.Page):
skia_digg_nexus10.py 8 from telemetry.page import page as page_module
9 from telemetry.page import shared_page_state
12 class SkiaBuildbotDesktopPage(page_module.Page):
skia_espn_desktop.py 8 from telemetry.page import page as page_module
9 from telemetry.page import shared_page_state
12 class SkiaBuildbotDesktopPage(page_module.Page):
skia_gamedeksiam_nexus10.py 8 from telemetry.page import page as page_module
9 from telemetry.page import shared_page_state
12 class SkiaBuildbotDesktopPage(page_module.Page):

Completed in 1112 milliseconds

1 2 3 4 5 6 7 891011>>