Lines Matching refs:size
102 * @size: size of the memory object
104 * Returns: true if the object specified by @virt and @size is entirely
109 size_t size)
111 return virt >= begin && virt + size <= end;
120 * @size: size of the memory object
122 * Returns: true if an object's memory region, specified by @virt and @size,
126 size_t size)
128 void *vend = virt + size;
140 * @size: size of the memory object
142 * Returns: true if the object specified by @virt and @size is entirely
145 static inline bool init_section_contains(void *virt, size_t size)
147 return memory_contains(__init_begin, __init_end, virt, size);
154 * @size: size of the memory object
156 * Returns: true if an object's memory region, specified by @virt and @size,
159 static inline bool init_section_intersects(void *virt, size_t size)
161 return memory_intersects(__init_begin, __init_end, virt, size);