Searched refs:start_page (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/util/tests/vma/ |
D | vma_random_test.cpp | 54 uint64_t start_page; member 61 assert(lhs.start_page + lhs.num_pages > lhs.start_page); in operator ()() 62 return lhs.start_page + lhs.num_pages <= rhs.start_page; in operator ()() 67 return a.start_page + a.num_pages; in allocation_end_page() 115 (align_pages - (hole.start_page % align_pages)) % align_pages; in alloc() 127 assert(hole.start_page <= addr_page); in alloc() 128 assert(hole.num_pages >= size_pages + addr_page - hole.start_page); in alloc() 131 if (hole.start_page < a.start_page) { in alloc() 132 heap_holes.emplace(allocation{hole.start_page, in alloc() 133 a.start_page - hole.start_page}); in alloc() [all …]
|
/external/u-boot/drivers/net/ |
D | ne2000_base.c | 216 dp83902a_start_xmit(int start_page, int len) in dp83902a_start_xmit() argument 224 printf("Tx pkt %d len %d\n", start_page, len); in dp83902a_start_xmit() 233 DP_OUT(base, DP_TPSR, start_page); in dp83902a_start_xmit() 248 int len, start_page, pkt_len, i, isr; in dp83902a_send() local 259 start_page = dp->tx_next; in dp83902a_send() 261 dp->tx1 = start_page; in dp83902a_send() 266 dp->tx2 = start_page; in dp83902a_send() 273 printf("TX prep page %d len %d\n", start_page, pkt_len); in dp83902a_send() 288 DP_OUT(base, DP_RSAH, (start_page - 1) & 0xff); in dp83902a_send() 305 DP_OUT(base, DP_RSAH, start_page); in dp83902a_send() [all …]
|
/external/curl/docs/examples/ |
D | crawler.c | 28 char *start_page = "https://www.reuters.com"; variable 163 curl_multi_add_handle(multi_handle, make_handle(start_page)); in main()
|
/external/autotest/client/site_tests/hardware_UnsafeMemory/src/rowhammer-test-4d619293e1c7/ |
D | rowhammer_exploit.cc | 110 uint16_t* start_page = (uint16_t*)&pagedata[0]; in create_and_write_file_to_be_mapped() local 114 start_page[0] = (uint16_t)i; in create_and_write_file_to_be_mapped()
|
/external/mesa3d/src/gallium/winsys/amdgpu/drm/ |
D | amdgpu_bo.c | 955 uint32_t start_page, uint32_t num_pages) in sparse_backing_free() argument 957 uint32_t end_page = start_page + num_pages; in sparse_backing_free() 965 if (backing->chunks[mid].begin >= start_page) in sparse_backing_free() 972 assert(low == 0 || backing->chunks[low - 1].end <= start_page); in sparse_backing_free() 974 if (low > 0 && backing->chunks[low - 1].end == start_page) { in sparse_backing_free() 984 backing->chunks[low].begin = start_page; in sparse_backing_free() 1001 backing->chunks[low].begin = start_page; in sparse_backing_free()
|
/external/v8/src/execution/ppc/ |
D | simulator-ppc.cc | 640 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage() local 642 return start_page == end_page; in AllOnOnePage()
|
/external/v8/src/execution/arm/ |
D | simulator-arm.cc | 559 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage() local 561 return start_page == end_page; in AllOnOnePage()
|
/external/v8/src/execution/mips/ |
D | simulator-mips.cc | 774 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage() local 776 return start_page == end_page; in AllOnOnePage()
|
/external/v8/src/execution/mips64/ |
D | simulator-mips64.cc | 716 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage() local 718 return start_page == end_page; in AllOnOnePage()
|
/external/v8/src/execution/s390/ |
D | simulator-s390.cc | 654 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage() local 656 return start_page == end_page; in AllOnOnePage()
|