Searched refs:PAGE_SIZE (Results 101 - 125 of 3548) sorted by path

1234567891011>>

/linux-master/drivers/usb/host/
H A Dehci-sysfs.c16 int count = PAGE_SIZE;
76 n = scnprintf(buf, PAGE_SIZE, "%d\n", ehci->uframe_periodic_max);
/linux-master/drivers/xen/
H A Dbiomerge.c11 #if XEN_PAGE_SIZE == PAGE_SIZE
/linux-master/drivers/xen/xenbus/
H A Dxenbus_dev_backend.c99 if ((size > PAGE_SIZE) || (vma->vm_pgoff != 0))
/linux-master/drivers/xen/xenfs/
H A Dxenstored.c38 if ((size > PAGE_SIZE) || (vma->vm_pgoff != 0))
/linux-master/fs/befs/
H A Dsuper.c11 #include <asm/page.h> /* for PAGE_SIZE */
84 if (befs_sb->block_size > PAGE_SIZE) {
87 PAGE_SIZE);
/linux-master/fs/jffs2/
H A Dcompr_lzo.c33 lzo_compress_buf = vmalloc(lzo1x_worst_compress(PAGE_SIZE));
H A Dwrite.c175 if ((je32_to_cpu(ri->dsize) >= PAGE_SIZE) ||
176 ( ((je32_to_cpu(ri->offset)&(PAGE_SIZE-1))==0) &&
370 PAGE_SIZE - (offset & (PAGE_SIZE-1)));
/linux-master/fs/qnx6/
H A Ddir.c40 if (last_byte > PAGE_SIZE)
41 last_byte = PAGE_SIZE;
/linux-master/fs/squashfs/
H A Dcache.c20 * uses sequences of kmalloced PAGE_SIZE buffers.
221 * is allocated as a sequence of kmalloced PAGE_SIZE buffers.
265 entry->data[j] = kmalloc(PAGE_SIZE, GFP_KERNEL);
304 void *buff = entry->data[offset / PAGE_SIZE]
305 + (offset % PAGE_SIZE);
307 PAGE_SIZE - (offset % PAGE_SIZE));
408 int pages = (length + PAGE_SIZE - 1) >> PAGE_SHIFT;
429 for (i = 0; i < pages; i++, buffer += PAGE_SIZE)
/linux-master/include/asm-generic/
H A Dfixmap.h78 ________addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1)); \
H A Dshmparam.h5 #define SHMLBA PAGE_SIZE /* attach addr a multiple of this */
/linux-master/include/linux/
H A Dlp.h31 #define LP_BUFFER_SIZE PAGE_SIZE
H A Dndctl.h19 ND_MIN_NAMESPACE_SIZE = PAGE_SIZE,
H A Dpfn.h18 #define PFN_ALIGN(x) (((unsigned long)(x) + (PAGE_SIZE - 1)) & PAGE_MASK)
19 #define PFN_UP(x) (((x) + PAGE_SIZE-1) >> PAGE_SHIFT)
/linux-master/include/uapi/linux/
H A Da.out.h113 #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0)
/linux-master/include/video/
H A Dudlfb.h73 #define MAX_TRANSFER (PAGE_SIZE*16 - BULK_SIZE)
/linux-master/net/ceph/
H A Dpagevec.c71 l = min_t(int, PAGE_SIZE-po, left);
78 if (po == PAGE_SIZE) {
96 size_t l = min_t(size_t, PAGE_SIZE-po, left);
102 if (po == PAGE_SIZE) {
119 size_t l = min_t(size_t, PAGE_SIZE-po, left);
125 if (po == PAGE_SIZE) {
147 int end = min((int)PAGE_SIZE, off + len);
154 while (len >= PAGE_SIZE) {
156 zero_user_segment(pages[i], 0, PAGE_SIZE);
157 len -= PAGE_SIZE;
[all...]
/linux-master/net/core/
H A Dhwbm.c15 if (likely(bm_pool->frag_size <= PAGE_SIZE))
28 if (likely(frag_size <= PAGE_SIZE))
/linux-master/net/rds/
H A Dpage.c79 if (bytes >= PAGE_SIZE) {
84 sg_set_page(scat, page, PAGE_SIZE, 0);
95 if (rem->r_page && bytes > (PAGE_SIZE - rem->r_offset)) {
102 if (rem->r_page && bytes <= (PAGE_SIZE - rem->r_offset)) {
110 if (rem->r_offset >= PAGE_SIZE) {
/linux-master/net/xfrm/
H A Dxfrm_hash.c20 if (sz <= PAGE_SIZE)
34 if (sz <= PAGE_SIZE)
/linux-master/sound/parisc/
H A Dharmony.h64 #define BUF_SIZE PAGE_SIZE
/linux-master/sound/ppc/
H A Dsnd_ps3.h120 (SND_PS3_PCM_PREALLOC_SIZE + PAGE_SIZE)
/linux-master/sound/soc/intel/skylake/
H A Dskl-sst-cldma.h185 #define SKL_MAX_BUFFER_SIZE (32 * PAGE_SIZE)
/linux-master/tools/testing/selftests/powerpc/benchmarks/
H A Dmmap_bench.c17 #define PAGE_SIZE (1UL << 16) macro
18 #define CHUNK_COUNT (MEMSIZE/PAGE_SIZE)
/linux-master/tools/testing/selftests/proc/
H A Dproc-self-map-files-001.c49 const unsigned int PAGE_SIZE = sysconf(_SC_PAGESIZE); local
58 p = mmap(NULL, PAGE_SIZE, PROT_NONE, MAP_PRIVATE|MAP_FILE, fd, 0);
63 b = (unsigned long)p + PAGE_SIZE;

Completed in 364 milliseconds

1234567891011>>