Searched refs:pages (Results 1 - 25 of 622) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/drm/
H A Ddrm_cache.h36 void drm_clflush_pages(struct page *pages[], unsigned long num_pages);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dkmemcheck.c10 int pages; local
13 pages = 1 << order;
27 for(i = 0; i < pages; ++i)
35 kmemcheck_hide_pages(page, pages);
41 int pages; local
47 pages = 1 << order;
49 kmemcheck_show_pages(page, pages);
53 for(i = 0; i < pages; ++i)
102 int pages; local
107 pages
[all...]
H A Dpercpu-vm.c23 * pcpu_get_pages_and_bitmap - get temp pages array and bitmap
39 * Pointer to temp pages array on success, NULL on failure.
45 static struct page **pages; local
47 size_t pages_size = pcpu_nr_units * pcpu_unit_pages * sizeof(pages[0]);
51 if (!pages || !bitmap) {
52 if (may_alloc && !pages)
53 pages = pcpu_mem_alloc(pages_size);
56 if (!pages || !bitmap)
60 memset(pages, 0, pages_size);
64 return pages;
78 pcpu_free_pages(struct pcpu_chunk *chunk, struct page **pages, unsigned long *populated, int page_start, int page_end) argument
107 pcpu_alloc_pages(struct pcpu_chunk *chunk, struct page **pages, unsigned long *populated, int page_start, int page_end) argument
169 pcpu_unmap_pages(struct pcpu_chunk *chunk, struct page **pages, unsigned long *populated, int page_start, int page_end) argument
213 __pcpu_map_pages(unsigned long addr, struct page **pages, int nr_pages) argument
236 pcpu_map_pages(struct pcpu_chunk *chunk, struct page **pages, unsigned long *populated, int page_start, int page_end) argument
308 struct page **pages; local
378 struct page **pages; local
[all...]
H A Dpercpu-km.c51 struct page *pages; local
58 pages = alloc_pages(GFP_KERNEL, order_base_2(nr_pages));
59 if (!pages) {
65 pcpu_set_page_chunk(nth_page(pages, i), chunk);
67 chunk->data = pages;
68 chunk->base_addr = page_address(pages) - pcpu_group_offsets[0];
100 printk(KERN_WARNING "percpu: wasting %zu pages per chunk\n",
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/drm/ttm/
H A Dttm_page_alloc.h33 * Get count number of pages from pool to pages list.
35 * @pages: heado of empty linked list where pages are filled.
38 * @count: number of pages to allocate.
40 int ttm_get_pages(struct list_head *pages,
45 * Put linked list of pages to pool.
47 * @pages: list of pages to free.
48 * @page_count: number of pages i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/isofs/
H A Dcompress.c40 * to one zisofs block. Store the data in the @pages array with @pcount
45 struct page **pages, unsigned poffset,
71 if (!pages[i])
73 memset(page_address(pages[i]), 0, PAGE_CACHE_SIZE);
74 flush_dcache_page(pages[i]);
75 SetPageUptodate(pages[i]);
121 if (pages[curpage]) {
122 stream.next_out = page_address(pages[curpage])
174 if (pages[curpage]) {
175 flush_dcache_page(pages[curpag
43 zisofs_uncompress_block(struct inode *inode, loff_t block_start, loff_t block_end, int pcount, struct page **pages, unsigned poffset, int *errp) argument
199 zisofs_fill_pages(struct inode *inode, int full_page, int pcount, struct page **pages) argument
307 struct page *pages[max_t(unsigned, zisofs_pages_per_cblock, 1)]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/printer-accounting/
H A Dacct-sum4 ($date, $user, $machine, $size, $pages) = split(' ');
7 $PrinterPages{$ARGV} += $pages;
11 $Pages{$user}+= $pages;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/omap2/
H A Dvram.c64 unsigned pages; member in struct:vram_alloc
71 unsigned pages; member in struct:vram_region
87 unsigned pages)
96 rm->pages = pages;
104 unsigned long paddr, unsigned pages)
115 new->pages = pages;
136 unsigned pages; local
143 pages
86 omap_vram_create_region(unsigned long paddr, unsigned pages) argument
103 omap_vram_create_allocation(struct vram_region *vr, unsigned long paddr, unsigned pages) argument
195 _omap_vram_reserve(unsigned long paddr, unsigned pages) argument
245 unsigned pages; local
269 _omap_vram_clear(u32 paddr, unsigned pages) argument
316 _omap_vram_alloc(int mtype, unsigned pages, unsigned long *paddr) argument
363 unsigned pages; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/
H A Ddrm_scatter.c54 for (i = 0; i < entry->pages; i++) {
76 unsigned long pages, i, j; local
91 pages = (request->size + PAGE_SIZE - 1) / PAGE_SIZE;
92 DRM_DEBUG("size=%ld pages=%ld\n", request->size, pages);
94 entry->pages = pages;
95 entry->pagelist = kmalloc(pages * sizeof(*entry->pagelist), GFP_KERNEL);
101 memset(entry->pagelist, 0, pages * sizeof(*entry->pagelist));
103 entry->busaddr = kmalloc(pages * sizeo
[all...]
H A Ddrm_cache.c49 static void drm_cache_flush_clflush(struct page *pages[], argument
56 drm_clflush_page(*pages++);
68 drm_clflush_pages(struct page *pages[], unsigned long num_pages) argument
73 drm_cache_flush_clflush(pages, num_pages);
83 struct page *page = pages[i];
H A Dati_pcigart.c59 unsigned long pages; local
72 pages = (entry->pages <= max_pages)
73 ? entry->pages : max_pages;
75 for (i = 0; i < pages; i++) {
100 unsigned long pages; local
141 pages = (entry->pages <= max_real_pages)
142 ? entry->pages : max_real_pages;
151 for (i = 0; i < pages;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/mlx4/
H A Den_resources.c69 struct page **pages; local
75 pages = kmalloc(sizeof *pages * buf->nbufs, GFP_KERNEL);
76 if (!pages)
80 pages[i] = virt_to_page(buf->page_list[i].buf);
82 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL);
83 kfree(pages);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/mm/
H A Dgup.c25 unsigned long end, int write, struct page **pages, int *nr)
50 pages[*nr] = page;
59 int write, struct page **pages, int *nr)
73 addr, next, write, pages, nr))
75 } else if (!gup_pte_range(pmd, addr, next, write, pages, nr))
83 int write, struct page **pages, int *nr)
97 addr, next, write, pages, nr))
99 } else if (!gup_pmd_range(pud, addr, next, write, pages, nr))
107 struct page **pages)
148 addr, next, write, pages,
24 gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
58 gup_pmd_range(pud_t pud, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
82 gup_pud_range(pgd_t pgd, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
106 get_user_pages_fast(unsigned long start, int nr_pages, int write, struct page **pages) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/rds/
H A Dinfo.c47 * buffer is big enough. The destination pages that make up the buffer
64 struct page **pages; member in struct:rds_info_iterator
112 * get_user_pages() called flush_dcache_page() on the pages for us.
121 iter->addr = kmap_atomic(*iter->pages, KM_USER0);
126 "bytes %lu\n", *iter->pages, iter->addr,
139 iter->pages++;
166 struct page **pages = NULL; local
190 pages = kmalloc(nr_pages * sizeof(struct page *), GFP_KERNEL);
191 if (pages == NULL) {
195 ret = get_user_pages_fast(start, nr_pages, 1, pages);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/mm/
H A Dsun3kmap.c49 unsigned long type, int pages)
55 while(pages) {
59 pages--;
68 int pages; local
87 pages = size / PAGE_SIZE;
91 while(pages) {
95 if(seg_pages > pages)
96 seg_pages = pages;
100 pages -= seg_pages;
48 do_pmeg_mapin(unsigned long phys, unsigned long virt, unsigned long type, int pages) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/squashfs/
H A Ddecompressor.h45 int srclength, int pages)
48 length, srclength, pages);
43 squashfs_decompress(struct squashfs_sb_info *msblk, void **buffer, struct buffer_head **bh, int b, int offset, int length, int srclength, int pages) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/mm/
H A Dgup.c71 unsigned long end, int write, struct page **pages, int *nr)
92 pages[*nr] = page;
109 unsigned long end, int write, struct page **pages, int *nr)
130 pages[*nr] = page;
141 int write, struct page **pages, int *nr)
154 if (!gup_huge_pmd(pmd, addr, next, write, pages, nr))
157 if (!gup_pte_range(pmd, addr, next, write, pages, nr))
166 unsigned long end, int write, struct page **pages, int *nr)
187 pages[*nr] = page;
198 int write, struct page **pages, in
70 gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
108 gup_huge_pmd(pmd_t pmd, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
140 gup_pmd_range(pud_t pud, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
165 gup_huge_pud(pud_t pud, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
197 gup_pud_range(pgd_t pgd, unsigned long addr, unsigned long end, int write, struct page **pages, int *nr) argument
226 __get_user_pages_fast(unsigned long start, int nr_pages, int write, struct page **pages) argument
284 get_user_pages_fast(unsigned long start, int nr_pages, int write, struct page **pages) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/proc/
H A Dmeminfo.c29 unsigned long pages[NR_LRU_LISTS]; local
50 pages[lru] = global_page_state(NR_LRU_BASE + lru);
110 K(pages[LRU_ACTIVE_ANON] + pages[LRU_ACTIVE_FILE]),
111 K(pages[LRU_INACTIVE_ANON] + pages[LRU_INACTIVE_FILE]),
112 K(pages[LRU_ACTIVE_ANON]),
113 K(pages[LRU_INACTIVE_ANON]),
114 K(pages[LRU_ACTIVE_FILE]),
115 K(pages[LRU_INACTIVE_FIL
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dsgbuf.c47 for (i = 0; i < sgbuf->pages; i++) {
49 continue; /* continuous pages */
71 unsigned int i, pages, chunk, maxpages; local
82 pages = snd_sgbuf_aligned_pages(size);
83 sgbuf->tblsize = sgbuf_align_table(pages);
93 /* allocate pages */
95 while (pages > 0) {
96 chunk = pages;
103 if (!sgbuf->pages)
107 size = sgbuf->pages * PAGE_SIZ
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/psorder/
H A Dpsorder.c133 psinfo.pages.offset = 0;
134 psinfo.pages.end = 0;
135 psinfo.pages.num[0] = '\0';
136 psinfo.pages.order[0] = '\0';
208 psinfo.pages.offset = count;
209 psinfo.pages.end = strlen( token ) + count;
216 psinfo.pages.offset = 0;
217 psinfo.pages.end = 0;
220 (void)strncpy( psinfo.pages.num, tmp, NUMLEN );
222 (void)strncpy( psinfo.pages
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ramfs/
H A Dfile-nommu.c58 * add a contiguous set of pages into a ramfs inode when it's truncated from
65 struct page *pages; local
81 /* allocate enough contiguous pages to be able to satisfy the
83 pages = alloc_pages(mapping_gfp_mask(inode->i_mapping), order);
84 if (!pages)
87 /* split the high-order page into an array of single pages */
91 split_page(pages, order);
93 /* trim off any pages we don't actually require */
95 __free_page(pages + loop);
99 data = page_address(pages);
204 struct page **pages = NULL, **ptr, *page; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dmman.h23 static inline void vm_acct_memory(long pages) argument
25 percpu_counter_add(&vm_committed_as, pages);
28 static inline void vm_unacct_memory(long pages) argument
30 vm_acct_memory(-pages);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/
H A Dfile.c26 * user pages directly.
28 * fsync() flushes and waits on dirty pages, but just queues metadata
273 * build a vector of user pages
279 struct page **pages; local
282 pages = kmalloc(sizeof(*pages) * num_pages, GFP_NOFS);
283 if (!pages)
288 num_pages, 0, 0, pages, NULL);
292 return pages;
295 kfree(pages);
299 put_page_vector(struct page **pages, int num_pages) argument
308 ceph_release_page_vector(struct page **pages, int num_pages) argument
322 struct page **pages; local
341 copy_user_to_page_vector(struct page **pages, const char __user *data, loff_t off, size_t len) argument
369 copy_page_vector_to_user(struct page **pages, char __user *data, loff_t off, size_t len) argument
398 zero_page_vector_range(int off, int len, struct page **pages) argument
436 striped_read(struct inode *inode, u64 off, u64 len, struct page **pages, int num_pages, int *checkeof) argument
525 struct page **pages; local
599 struct page **pages; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/firewire/
H A Dcore-iso.c50 buffer->pages = kmalloc(page_count * sizeof(buffer->pages[0]),
52 if (buffer->pages == NULL)
56 buffer->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
57 if (buffer->pages[i] == NULL)
60 address = dma_map_page(card->device, buffer->pages[i],
63 __free_page(buffer->pages[i]);
66 set_page_private(buffer->pages[i], address);
73 address = page_private(buffer->pages[j]);
76 __free_page(buffer->pages[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DCompactStats.java22 CompactStats(int fillpercent, int timeout, int pages) { argument
25 this.compact_pages = pages;
45 Return the the number of database pages free during
51 The the number of database pages free during
60 Return the the number of database pages reviewed
66 The the number of database pages reviewed
107 Return the the number of database pages returned
113 The the number of database pages returned

Completed in 342 milliseconds

1234567891011>>