Searched refs:out_buf (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stacktrace_libcdep.cpp | 87 internal_memcpy(out_buf, str.data(), copy_size); in CopyStringToBuffer() 88 out_buf[copy_size] = '\0'; in CopyStringToBuffer() 120 uptr StackTrace::PrintTo(char *out_buf, uptr out_buf_size) const { in PrintTo() argument 121 CHECK(out_buf); in PrintTo() 125 CopyStringToBuffer(output, out_buf, out_buf_size); in PrintTo() 189 void __sanitizer_symbolize_pc(uptr pc, const char *fmt, char *out_buf, in __sanitizer_symbolize_pc() argument 202 CopyStringToBuffer(output, out_buf, out_buf_size); in __sanitizer_symbolize_pc() 207 char *out_buf, uptr out_buf_size) { in __sanitizer_symbolize_global() argument 209 out_buf[0] = 0; in __sanitizer_symbolize_global() 214 internal_strncpy(out_buf, data_desc.data(), out_buf_size); in __sanitizer_symbolize_global() [all …]
|
| H A D | sanitizer_stacktrace.h | 68 uptr PrintTo(char *out_buf, uptr out_buf_size) const;
|
| /llvm-project-15.0.7/compiler-rt/include/sanitizer/ |
| H A D | dfsan_interface.h | 150 char *out_buf, size_t out_buf_size); 153 size_t dfsan_sprint_origin_id_trace(dfsan_origin origin, char *out_buf, 167 size_t dfsan_sprint_stack_trace(char *out_buf, size_t out_buf_size);
|
| H A D | common_interface_defs.h | 209 void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf, 213 char *out_buf, size_t out_buf_size);
|
| /llvm-project-15.0.7/compiler-rt/lib/dfsan/ |
| H A D | dfsan.cpp | 781 char *out_buf, uptr out_buf_size) { in dfsan_sprint_origin_trace() argument 782 CHECK(out_buf); in dfsan_sprint_origin_trace() 804 internal_strncpy(out_buf, trace.data(), out_buf_size - 1); in dfsan_sprint_origin_trace() 805 out_buf[out_buf_size - 1] = '\0'; in dfsan_sprint_origin_trace() 830 dfsan_origin origin, char *out_buf, uptr out_buf_size) { in dfsan_sprint_origin_id_trace() argument 831 CHECK(out_buf); in dfsan_sprint_origin_id_trace() 848 internal_strncpy(out_buf, trace.data(), out_buf_size - 1); in dfsan_sprint_origin_id_trace() 849 out_buf[out_buf_size - 1] = '\0'; in dfsan_sprint_origin_id_trace() 895 dfsan_sprint_stack_trace(char *out_buf, uptr out_buf_size) { in dfsan_sprint_stack_trace() argument 896 CHECK(out_buf); in dfsan_sprint_stack_trace() [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/ |
| H A D | bugAsmHWloop.ll | 10 define i32 @q6zip_uncompress(i8* %out_buf, i32* %out_buf_size, i8* %in_buf, i32 %in_buf_size, i8* n… 25 %6 = ptrtoint i8* %out_buf to i32
|
| /llvm-project-15.0.7/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerExtFunctions.def | 41 (void *, const char *fmt, char *out_buf, size_t out_buf_size), false);
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | DataFlowSanitizerDesign.rst | 96 /// `out_buf` is the output buffer to write the results to. `out_buf_size` is 97 /// the size of `out_buf`. The function returns the number of symbols that 98 /// should have been written to `out_buf` (not including trailing null byte '\0'). 101 char *out_buf, size_t out_buf_size);
|
| H A D | DataFlowSanitizer.rst | 149 # e.g. void writes_data(char* out_buf, int out_buf_len) {...} 150 # Applying force_zero_labels will force out_buf shadow to zero.
|