Lines Matching +full:memory +full:- +full:region
1 /* SPDX-License-Identifier: GPL-2.0 */
12 * _text, _data: architecture specific, don't use them in arch-independent code
50 /* Start and end of .ctors section - used for constructor calls. */
53 /* Start and end of .opd section - used for function descriptors. */
81 * memory_contains - checks if an object is contained within a memory region
82 * @begin: virtual address of the beginning of the memory region
83 * @end: virtual address of the end of the memory region
84 * @virt: virtual address of the memory object
85 * @size: size of the memory object
88 * contained within the memory region defined by @begin and @end, false
98 * memory_intersects - checks if the region occupied by an object intersects
99 * with another memory region
100 * @begin: virtual address of the beginning of the memory region
101 * @end: virtual address of the end of the memory region
102 * @virt: virtual address of the memory object
103 * @size: size of the memory object
105 * Returns: true if an object's memory region, specified by @virt and @size,
106 * intersects with the region specified by @begin and @end, false otherwise.
120 * init_section_contains - checks if an object is contained within the init
122 * @virt: virtual address of the memory object
123 * @size: size of the memory object
134 * init_section_intersects - checks if the region occupied by an object
136 * @virt: virtual address of the memory object
137 * @size: size of the memory object
139 * Returns: true if an object's memory region, specified by @virt and @size,
148 * is_kernel_core_data - checks if the pointer address is located in the
170 * is_kernel_rodata - checks if the pointer address is located in the
189 * is_kernel_inittext - checks if the pointer address is located in the
203 * __is_kernel_text - checks if the pointer address is located in the
218 * __is_kernel - checks if the pointer address is located in the kernel range