Searched refs:PAGE_SIZE (Results 1 – 25 of 44) sorted by relevance
12
13 PAGE_SIZE = 4096 # machine page size variable48 self.npages = ((mem * 1024 * 1024) / PAGE_SIZE)67 for ip in range(PAGE_SIZE / original.itemsize):75 position = (self.f.tell() - PAGE_SIZE + ip *89 for i in range((PAGE_SIZE / a.itemsize)):106 for i in range(PAGE_SIZE / a.itemsize):144 pf.fromfile(self.f, PAGE_SIZE / pf.itemsize)157 def static_random_fill(self, n_bytes_on_end=PAGE_SIZE):172 rand = random.randint(((PAGE_SIZE / page.itemsize) - 1) -174 (PAGE_SIZE/page.itemsize) - 1)[all …]
4 Subject: [PATCH 1/2] Minor fixes to PAGE_SIZE handling19 + * Minor fixes to PAGE_SIZE handling -- Suzuki <suzuki@in.ibm.com>.27 #ifndef PAGE_SIZE28 -#define PAGE_SIZE 409629 +#define PAGE_SIZE pagesize31 #define PAGE_MASK (PAGE_SIZE - 1)
79 #ifndef PAGE_SIZE80 #define PAGE_SIZE 4096 macro84 #define PAGE_START(a) ((a) & ~(PAGE_SIZE-1))101 len = PAGE_SIZE; in validate_mem()103 len = PAGE_SIZE * 2; in validate_mem()
6 PAGE_SIZE=$(( $1 ))10 for (( c=0; c < PAGE_SIZE ; c++ )) ; do
23 #define PAGE_SIZE 4096ULL macro256 nbytes_p = (N_BYTES + PAGE_SIZE) & ~(PAGE_SIZE-1); in main()264 huge_addr += (randomU4() & ~(PAGE_SIZE-1)); in main()
71 #define PAGE_SIZE 4096 macro72 #define PAGE_START(a) ((a) & ~(PAGE_SIZE-1))122 len = PAGE_SIZE; in validate_mem()124 len = PAGE_SIZE * 2; in validate_mem()
71 #define MLOCK_LIMIT ((PAGE_SIZE > 64*1024) ? PAGE_SIZE : 64*1024)
112 #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0)128 #define PAGE_SIZE 0x400 macro129 #define SEGMENT_SIZE PAGE_SIZE
14 #define MAX_ARG_STRLEN (PAGE_SIZE * 32)
381 ((PAGE_SIZE - sizeof(struct kvm_coalesced_mmio_ring)) / \
43 PAGE_SIZE = 10 variable91 response = music_service.search_artists(fetch_size=PAGE_SIZE,183 response = music_service.search_albums(fetch_size=PAGE_SIZE,237 response = music_service.search_albums(fetch_size=PAGE_SIZE,
211 *private_bytes = private_pages_count * PAGE_SIZE; in GetMemoryBytes()213 *shared_bytes = shared_pages_count * PAGE_SIZE; in GetMemoryBytes()365 return (data.active_count * PAGE_SIZE) / 1024; in GetSystemCommitCharge()391 (vm_info.free_count - vm_info.speculative_count) * PAGE_SIZE / 1024); in GetSystemMemoryInfo()
297 if (datalen > frags*PAGE_SIZE) { in fill_packet()298 skb_put(skb, datalen-frags*PAGE_SIZE); in fill_packet()299 datalen = frags*PAGE_SIZE; in fill_packet()307 skb_shinfo(skb)->frags[i].size = (datalen < PAGE_SIZE ? datalen : PAGE_SIZE); in fill_packet()
4 #define SHMLBA PAGE_SIZE /* attach addr a multiple of this */
71 CodeMap.PAGE_SIZE =142 addr += CodeMap.PAGE_SIZE) {
80 char protected_buffer[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE)));651 mprotect(gProtectedData.protected_buffer, PAGE_SIZE, PROT_READ); in InstallHandler()695 mprotect(gProtectedData.protected_buffer, PAGE_SIZE, in UninstallHandler()
79 PAGE_SIZE; in AmountOfAvailablePhysicalMemory()
51 #define PAGE_SIZE 4096 macro219 bo->size = round_up(size.tiled.width, PAGE_SIZE) * size.tiled.height; in omap_bo_new_impl()
326 cp_page_1 = malloc(PAGE_SIZE); in validate_checkpoint()342 cp_page_2 = malloc(PAGE_SIZE); in validate_checkpoint()579 kaddr = (char *)malloc(PAGE_SIZE); in read_compacted_summaries()610 memset(kaddr, 0, PAGE_SIZE); in read_compacted_summaries()669 sum_blk = (struct f2fs_summary_block *)malloc(PAGE_SIZE); in read_normal_summaries()
205 #define PAGE_SIZE 4096 macro691 #define SIZE_OF_RESERVED (PAGE_SIZE - ((SIZE_OF_DIR_ENTRY + \
467 c->sectors_per_blk = PAGE_SIZE / sector_size; in f2fs_get_device_info()
359 #define VKI_PAGE_SIZE PAGE_SIZE
25 o Use PAGE_SIZE as initial buffer size when reading from
META-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts ...
775 * Merged patch to eliminate use of PAGE_SIZE constant from Dan Walsh.