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 */
100 * @end: virtual address of the end of the memory region
105 * contained within the memory region defined by @begin and @end, false
108 static inline bool memory_contains(void *begin, void *end, void *virt,
111 return virt >= begin && virt + size <= end;
118 * @end: virtual address of the end of the memory region
123 * intersects with the region specified by @begin and @end, false otherwise.
125 static inline bool memory_intersects(void *begin, void *end, void *virt,
130 if (virt < end && vend > begin)