Lines Matching defs:size
85 * @size: size of the memory object
87 * Returns: true if the object specified by @virt and @size is entirely
92 size_t size)
94 return virt >= begin && virt + size <= end;
103 * @size: size of the memory object
105 * Returns: true if an object's memory region, specified by @virt and @size,
109 size_t size)
111 void *vend = virt + size;
123 * @size: size of the memory object
125 * Returns: true if the object specified by @virt and @size is entirely
128 static inline bool init_section_contains(void *virt, size_t size)
130 return memory_contains(__init_begin, __init_end, virt, size);
137 * @size: size of the memory object
139 * Returns: true if an object's memory region, specified by @virt and @size,
142 static inline bool init_section_intersects(void *virt, size_t size)
144 return memory_intersects(__init_begin, __init_end, virt, size);