HomeSort by: relevance | last modified time | path
    Searched refs:uptr (Results 1 - 25 of 947) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_poisoning.h 19 uptr TagMemory(uptr p, uptr size, tag_t tag);
20 uptr TagMemoryAligned(uptr p, uptr size, tag_t tag);
hwasan_mapping.h 37 constexpr uptr kShadowScale = 4;
38 constexpr uptr kShadowAlignment = 1ULL << kShadowScale;
42 extern uptr kLowMemStart;
43 extern uptr kLowMemEnd;
44 extern uptr kLowShadowEnd;
45 extern uptr kLowShadowStart;
46 extern uptr kHighShadowStart;
47 extern uptr kHighShadowEnd;
48 extern uptr kHighMemStart;
49 extern uptr kHighMemEnd
    [all...]
hwasan_dynamic_shadow.h 22 uptr FindDynamicShadowStart(uptr shadow_size_bytes);
hwasan_report.h 24 void ReportTagMismatch(StackTrace *stack, uptr addr, uptr access_size,
25 bool is_store, bool fatal, uptr *registers_frame);
26 void ReportInvalidFree(StackTrace *stack, uptr addr);
27 void ReportTailOverwritten(StackTrace *stack, uptr addr, uptr orig_size,
29 void ReportRegisters(const uptr *registers_frame, uptr pc);
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_poisoning.h 19 uptr TagMemory(uptr p, uptr size, tag_t tag);
20 uptr TagMemoryAligned(uptr p, uptr size, tag_t tag);
hwasan_mapping.h 37 constexpr uptr kShadowScale = 4;
38 constexpr uptr kShadowAlignment = 1ULL << kShadowScale;
42 extern uptr kLowMemStart;
43 extern uptr kLowMemEnd;
44 extern uptr kLowShadowEnd;
45 extern uptr kLowShadowStart;
46 extern uptr kHighShadowStart;
47 extern uptr kHighShadowEnd;
48 extern uptr kHighMemStart;
49 extern uptr kHighMemEnd
    [all...]
hwasan_dynamic_shadow.h 22 uptr FindDynamicShadowStart(uptr shadow_size_bytes);
hwasan_report.h 24 void ReportTagMismatch(StackTrace *stack, uptr addr, uptr access_size,
25 bool is_store, bool fatal, uptr *registers_frame);
26 void ReportInvalidFree(StackTrace *stack, uptr addr);
27 void ReportTailOverwritten(StackTrace *stack, uptr addr, uptr orig_size,
29 void ReportRegisters(uptr *registers_frame, uptr pc);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fake_stack.h 24 uptr magic; // Modified by the instrumented code.
25 uptr descr; // Modified by the instrumented code.
26 uptr pc; // Modified by the instrumented code.
27 uptr real_stack;
58 static const uptr kMinStackFrameSizeLog = 6; // Min frame is 64B.
59 static const uptr kMaxStackFrameSizeLog = 16; // Max stack frame is 64K.
62 static const uptr kNumberOfSizeClasses =
66 static FakeStack *Create(uptr stack_size_log);
71 static uptr SizeRequiredForFlags(uptr stack_size_log)
    [all...]
asan_stats.h 26 // AsanStats must be a struct consisting of uptr fields only.
27 // When merging two AsanStats structs, we treat them as arrays of uptr.
28 uptr mallocs;
29 uptr malloced;
30 uptr malloced_redzones;
31 uptr frees;
32 uptr freed;
33 uptr real_frees;
34 uptr really_freed;
35 uptr reallocs
    [all...]
asan_interface_internal.h 25 using __sanitizer::uptr;
50 uptr beg; // The address of the global.
51 uptr size; // The original size of the global.
52 uptr size_with_redzone; // The size with the redzone.
56 uptr has_dynamic_init; // Non-zero if the global has dynamic initializer.
59 uptr odr_indicator; // The address of the ODR indicator symbol.
66 void __asan_register_image_globals(uptr *flag);
68 void __asan_unregister_image_globals(uptr *flag);
71 void __asan_register_elf_globals(uptr *flag, void *start, void *stop);
73 void __asan_unregister_elf_globals(uptr *flag, void *start, void *stop)
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_fake_stack.h 23 uptr magic; // Modified by the instrumented code.
24 uptr descr; // Modified by the instrumented code.
25 uptr pc; // Modified by the instrumented code.
26 uptr real_stack;
57 static const uptr kMinStackFrameSizeLog = 6; // Min frame is 64B.
58 static const uptr kMaxStackFrameSizeLog = 16; // Max stack frame is 64K.
61 static const uptr kNumberOfSizeClasses =
65 static FakeStack *Create(uptr stack_size_log);
70 static uptr SizeRequiredForFlags(uptr stack_size_log)
    [all...]
asan_stats.h 25 // AsanStats must be a struct consisting of uptr fields only.
26 // When merging two AsanStats structs, we treat them as arrays of uptr.
27 uptr mallocs;
28 uptr malloced;
29 uptr malloced_redzones;
30 uptr frees;
31 uptr freed;
32 uptr real_frees;
33 uptr really_freed;
34 uptr reallocs
    [all...]
asan_report.h 24 uptr beg;
25 uptr size;
27 uptr name_len;
28 uptr line;
33 int GetGlobalsForAddress(uptr addr, __asan_global *globals, u32 *reg_sites,
50 void ReportGenericError(uptr pc, uptr bp, uptr sp, uptr addr, bool is_write,
51 uptr access_size, u32 exp, bool fatal)
    [all...]
asan_interface_internal.h 24 using __sanitizer::uptr;
49 uptr beg; // The address of the global.
50 uptr size; // The original size of the global.
51 uptr size_with_redzone; // The size with the redzone.
55 uptr has_dynamic_init; // Non-zero if the global has dynamic initializer.
60 uptr odr_indicator; // The address of the ODR indicator symbol.
67 void __asan_register_image_globals(uptr *flag);
69 void __asan_unregister_image_globals(uptr *flag);
72 void __asan_register_elf_globals(uptr *flag, void *start, void *stop);
74 void __asan_unregister_elf_globals(uptr *flag, void *start, void *stop)
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_fake_stack.h 23 uptr magic; // Modified by the instrumented code.
24 uptr descr; // Modified by the instrumented code.
25 uptr pc; // Modified by the instrumented code.
26 uptr real_stack;
57 static const uptr kMinStackFrameSizeLog = 6; // Min frame is 64B.
58 static const uptr kMaxStackFrameSizeLog = 16; // Max stack frame is 64K.
61 static const uptr kNumberOfSizeClasses =
65 static FakeStack *Create(uptr stack_size_log);
70 static uptr SizeRequiredForFlags(uptr stack_size_log)
    [all...]
asan_stats.h 25 // AsanStats must be a struct consisting of uptr fields only.
26 // When merging two AsanStats structs, we treat them as arrays of uptr.
27 uptr mallocs;
28 uptr malloced;
29 uptr malloced_redzones;
30 uptr frees;
31 uptr freed;
32 uptr real_frees;
33 uptr really_freed;
34 uptr reallocs
    [all...]
asan_interface_internal.h 24 using __sanitizer::uptr;
49 uptr beg; // The address of the global.
50 uptr size; // The original size of the global.
51 uptr size_with_redzone; // The size with the redzone.
55 uptr has_dynamic_init; // Non-zero if the global has dynamic initializer.
58 uptr odr_indicator; // The address of the ODR indicator symbol.
65 void __asan_register_image_globals(uptr *flag);
67 void __asan_unregister_image_globals(uptr *flag);
70 void __asan_register_elf_globals(uptr *flag, void *start, void *stop);
72 void __asan_unregister_elf_globals(uptr *flag, void *start, void *stop)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_win.h 29 bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func = 0);
32 bool OverrideFunction(const char *name, uptr new_func, uptr *orig_old_func = 0);
35 uptr InternalGetProcAddress(void *module, const char *func_name);
42 const char *function_name, uptr new_function,
43 uptr *orig_old_func);
48 uptr old_func, uptr new_func, uptr *orig_old_func)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_interface.h 19 using __sanitizer::uptr;
23 uptr __sanitizer_get_estimated_allocated_size(uptr size);
25 SANITIZER_INTERFACE_ATTRIBUTE uptr
27 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_current_allocated_bytes();
28 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_heap_size();
29 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_free_bytes();
30 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_unmapped_bytes();
33 void (*malloc_hook)(const void *, uptr),
37 void __sanitizer_malloc_hook(void *ptr, uptr size)
    [all...]
sanitizer_syscall_generic.inc 31 bool internal_iserror(uptr retval, int *rverrno) {
32 if (retval == (uptr)-1) {
  /src/external/gpl3/gcc/dist/libsanitizer/interception/
interception_win.h 28 bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func = 0);
31 bool OverrideFunction(const char *name, uptr new_func, uptr *orig_old_func = 0);
34 uptr InternalGetProcAddress(void *module, const char *func_name);
41 const char *function_name, uptr new_function,
42 uptr *orig_old_func);
52 uptr old_func, uptr new_func, uptr *orig_old_func)
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/interception/
interception_win.h 28 bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func = 0);
31 bool OverrideFunction(const char *name, uptr new_func, uptr *orig_old_func = 0);
34 uptr InternalGetProcAddress(void *module, const char *func_name);
41 const char *function_name, uptr new_function,
42 uptr *orig_old_func);
47 uptr old_func, uptr new_func, uptr *orig_old_func)
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_interface.h 18 using __sanitizer::uptr;
22 uptr __sanitizer_get_estimated_allocated_size(uptr size);
24 SANITIZER_INTERFACE_ATTRIBUTE uptr
26 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_current_allocated_bytes();
27 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_heap_size();
28 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_free_bytes();
29 SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_unmapped_bytes();
32 void (*malloc_hook)(const void *, uptr),
36 void __sanitizer_malloc_hook(void *ptr, uptr size)
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_flags.inc 62 uptr, history_size, 0,

Completed in 72 milliseconds

1 2 3 4 5 6 7 8 91011>>