/external/python/cpython3/Modules/_ctypes/libffi/src/arm/ |
gentramp.sh | 6 # ARM Trampoline Page Generator 37 # Page size, in bytes 40 # Compute the size of the reachable config page; The first 16 bytes of the config page 79 # Write out the trampoline table, aligned to the page boundary 95 // Load the context argument from the config page. 100 // Load the jump address from the config page.
|
/external/skia/experimental/tools/ |
mskp_parser.py | 32 print('page count: ', page_count) 38 for page in range(page_count): 39 print('page %3d\t' % page, end='')
|
/external/skqp/experimental/tools/ |
mskp_parser.py | 32 print('page count: ', page_count) 38 for page in range(page_count): 39 print('page %3d\t' % page, end='')
|
/external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/imagedisplay/ |
ImageDisplayActivity.java | 7 import com.davemorrissey.labs.subscaleview.test.Page; 26 new Page(display_p1_subtitle, display_p1_text), 27 new Page(display_p2_subtitle, display_p2_text), 28 new Page(display_p3_subtitle, display_p3_text) 33 protected void onPageChanged(int page) { 37 .replace(id.frame, FRAGMENTS.get(page).newInstance())
|
/external/webp/src/enc/ |
token_enc.c | 30 #define MIN_PAGE_SIZE 8192 // minimum number of token per page 37 VP8Tokens* next_; // pointer to next page 67 VP8Tokens* page = NULL; local 69 const size_t size = sizeof(*page) + b->page_size_ * sizeof(token_t); 70 page = (VP8Tokens*)WebPSafeMalloc(1ULL, size); 72 if (page == NULL) { 76 page->next_ = NULL; 78 *b->last_page_ = page; 79 b->last_page_ = &page->next_; 81 b->tokens_ = (token_t*)TOKEN_DATA(page); [all...] |
/frameworks/support/media/src/androidTest/java/androidx/media/ |
MockMediaLibraryService2.java | 161 ControllerInfo controller, String parentId, int page, int pageSize, Bundle extras) { 163 return getPaginatedResult(GET_CHILDREN_RESULT, page, pageSize); 195 ControllerInfo controllerInfo, String query, int page, int pageSize, 198 return getPaginatedResult(SEARCH_RESULT, page, pageSize); 205 private List<MediaItem2> getPaginatedResult(List<MediaItem2> items, int page, int pageSize) { 213 int fromIndex = (page - 1) * pageSize; 214 int toIndex = Math.min(page * pageSize, totalItemCount); 222 + totalItemCount + ", page=" + page + ", pageSize=" + pageSize, ex);
|
/frameworks/support/paging/common/src/main/java/androidx/paging/ |
ContiguousPagedList.java | 52 List<V> page = pageResult.page; 54 mStorage.init(pageResult.leadingNulls, page, pageResult.trailingNulls, 60 pageResult.leadingNulls + pageResult.positionOffset + page.size() / 2; 63 mStorage.appendPage(page, ContiguousPagedList.this); 65 mStorage.prependPage(page, ContiguousPagedList.this); 75 && pageResult.page.size() == 0; 78 && pageResult.page.size() == 0; 261 // consider whether to post more work, now that a page is fully prepended 279 // consider whether to post more work, now that a page is fully appende [all...] |
/prebuilts/go/darwin-x86/src/bytes/ |
boundary_test.go | 16 // data very near to a page boundary. We want to make sure those 17 // operations do not read across the boundary and cause a page 25 // preceded and followed by a faulting page. 71 // Only worry about when we're near the end of a page.
|
/prebuilts/go/darwin-x86/test/ |
helloworld.go | 7 // Test that we can do page 1 of the C book.
|
/prebuilts/go/linux-x86/src/bytes/ |
boundary_test.go | 16 // data very near to a page boundary. We want to make sure those 17 // operations do not read across the boundary and cause a page 25 // preceded and followed by a faulting page. 71 // Only worry about when we're near the end of a page.
|
/prebuilts/go/linux-x86/test/ |
helloworld.go | 7 // Test that we can do page 1 of the C book.
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/ |
loadaddr1.d | 2 #ld: -T loadaddr1.t -T loadaddr.t -z max-page-size=0x200000
|
loadaddr2.d | 2 #ld: -T loadaddr2.t -T loadaddr.t -z max-page-size=0x200000
|
maxpage5.d | 3 #ld: -z max-page-size=0x200000 -T maxpage5.t
|
pr19162.d | 3 #ld: -shared -z max-page-size=0x200000
|
seg.d | 3 #ld: -T seg.t -z max-page-size=0x1000
|
textaddr1.d | 2 #ld: -Ttext-segment 0x7000000 -z max-page-size=0x200000
|
textaddr4.d | 2 #ld: -z max-page-size=0x10000 -Ttext-segment 0x10000
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/ |
got-page-4a.s | 5 # a way that each one lives on a separate page.
|
got-page-5.s | 2 # and page references relative to one entry called "data". 5 # from "data" must still be retained, and need 3 page entries. 8 # page references. It's still a useful way of making sure that
|
got-page-6.s | 2 # Create page references relative to instances of the value 7 # up with a single page entry.
|
undefined.s | 13 # R_MIPS_GOT_PAGE relocations only allocate a GOT page at that point and 14 # for undefined symbols the page never gets resolved any further.
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-scripts/ |
rgn-at5.d | 3 # ld: -T rgn-at5.t -z max-page-size=0x1000
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PrintCustomContent.java | 22 import android.graphics.pdf.PdfDocument.Page; 58 * it fits the options selected by the user from the UI such as page 59 * size. Hence, for different page sizes the printed content will have 60 * different page count. 147 // The content width is equal to the page width minus the margins times 161 // The content height is equal to the page height minus the margins times 254 // Add the height but if the view crosses the page 255 // boundary we will put it to the next page. 344 Page page = null [all...] |
/external/pdfium/samples/ |
pdfium_test.cc | 116 // 0-based page numbers to be rendered. 194 void WriteText(FPDF_PAGE page, const char* pdf_name, int num) { 218 std::unique_ptr<void, FPDFTextPageDeleter> textpage(FPDFText_LoadPage(page)); 332 void WriteAnnot(FPDF_PAGE page, const char* pdf_name, int num) { 348 int annot_count = FPDFPage_GetAnnotCount(page); 351 // Iterate through all annotations on this page. 355 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, i); 528 void WriteEmf(FPDF_PAGE page, const char* pdf_name, int num) { 534 int width = static_cast<int>(FPDF_GetPageWidth(page)); 535 int height = static_cast<int>(FPDF_GetPageHeight(page)); 1234 FPDF_PAGE page = GetPageForIndex(form_fill_info, doc, page_index); local [all...] |