Lines Matching defs:end
50 /* Start and end of .ctors section - used for constructor calls. */
53 /* Start and end of .opd section - used for function descriptors. */
56 /* Start and end of instrumentation protected text section */
83 * @end: virtual address of the end of the memory region
88 * contained within the memory region defined by @begin and @end, false
91 static inline bool memory_contains(void *begin, void *end, void *virt,
94 return virt >= begin && virt + size <= end;
101 * @end: virtual address of the end of the memory region
106 * intersects with the region specified by @begin and @end, false otherwise.
108 static inline bool memory_intersects(void *begin, void *end, void *virt,
113 if (virt < end && vend > begin)