Lines Matching full:const
24 void asan_set_shadowed(const void *va_begin, const void *va_end);
30 void asan_tag_no_access(const void *begin, const void *end);
31 void asan_tag_access(const void *begin, const void *end);
32 void asan_tag_heap_free(const void *begin, const void *end);
34 void *asan_memcpy_unchecked(void *__restrict s1, const void *__restrict s2,
37 static inline void asan_tag_no_access(const void *begin __unused, in asan_tag_no_access()
38 const void *end __unused) in asan_tag_no_access()
41 static inline void asan_tag_access(const void *begin __unused, in asan_tag_access()
42 const void *end __unused) in asan_tag_access()
45 static inline void asan_tag_heap_free(const void *begin __unused, in asan_tag_heap_free()
46 const void *end __unused) in asan_tag_heap_free()
56 const void *__restrict s2, size_t n) in asan_memcpy_unchecked()