Lines Matching refs:size

78 	 * return size of 0
142 void *__vmalloc(unsigned long size, gfp_t gfp_mask)
148 return kmalloc(size, (gfp_mask | __GFP_COMP) & ~__GFP_HIGHMEM);
152 void *__vmalloc_node_range(unsigned long size, unsigned long align,
157 return __vmalloc(size, gfp_mask);
160 void *__vmalloc_node(unsigned long size, unsigned long align, gfp_t gfp_mask,
163 return __vmalloc(size, gfp_mask);
166 static void *__vmalloc_user_flags(unsigned long size, gfp_t flags)
170 ret = __vmalloc(size, flags);
184 void *vmalloc_user(unsigned long size)
186 return __vmalloc_user_flags(size, GFP_KERNEL | __GFP_ZERO);
214 * @size: allocation size
216 * Allocate enough pages to cover @size from the page level
222 void *vmalloc(unsigned long size)
224 return __vmalloc(size, GFP_KERNEL);
228 void *vmalloc_huge(unsigned long size, gfp_t gfp_mask) __weak __alias(__vmalloc);
233 * @size: allocation size
235 * Allocate enough pages to cover @size from the page level
242 void *vzalloc(unsigned long size)
244 return __vmalloc(size, GFP_KERNEL | __GFP_ZERO);
250 * @size: allocation size
253 * Allocate enough pages to cover @size from the page level
259 void *vmalloc_node(unsigned long size, int node)
261 return vmalloc(size);
267 * @size: allocation size
270 * Allocate enough pages to cover @size from the page level
277 void *vzalloc_node(unsigned long size, int node)
279 return vzalloc(size);
285 * @size: allocation size
287 * Allocate enough 32bit PA addressable pages to cover @size from the
290 void *vmalloc_32(unsigned long size)
292 return __vmalloc(size, GFP_KERNEL);
298 * @size: allocation size
306 void *vmalloc_32_user(unsigned long size)
312 return vmalloc_user(size);
1404 /* cut the backing region down to size */
1543 * under NOMMU conditions, we only permit changing a mapping's size, and only
1604 unsigned long pfn, unsigned long size, pgprot_t prot)
1627 unsigned int size = vma->vm_end - vma->vm_start;
1633 vma->vm_end = vma->vm_start + size;
1730 * @size: The current filesize of the inode
1738 int nommu_shrink_inode_mappings(struct inode *inode, size_t size,
1747 high = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;