Lines Matching defs:mapping
123 static void *__mte_allocate_memory_range(size_t size, int mem_type, int mapping,
146 map_flag = mapping;
149 if (!(mapping & MAP_SHARED))
168 void *mte_allocate_memory_tag_range(size_t size, int mem_type, int mapping,
171 return __mte_allocate_memory_range(size, mem_type, mapping, range_before,
175 void *mte_allocate_memory(size_t size, int mem_type, int mapping, bool tags)
177 return __mte_allocate_memory_range(size, mem_type, mapping, 0, 0, tags, -1);
180 void *mte_allocate_file_memory(size_t size, int mem_type, int mapping, bool tags, int fd)
202 return __mte_allocate_memory_range(size, mem_type, mapping, 0, 0, tags, fd);
205 void *mte_allocate_file_memory_tag_range(size_t size, int mem_type, int mapping,
228 return __mte_allocate_memory_range(size, mem_type, mapping, range_before,