| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_malloc_bisect.h | 18 static u32 malloc_hash(StackTrace *stack, uptr orig_size) { 21 H.add(orig_size); 31 static inline bool malloc_bisect(StackTrace *stack, uptr orig_size) { 40 uptr h = (uptr)malloc_hash(stack, orig_size); 44 Printf("[alloc] %u %zu\n", h, orig_size);
|
| hwasan_report.h | 27 void ReportTailOverwritten(StackTrace *stack, uptr addr, uptr orig_size,
|
| hwasan_allocator.cpp | 183 static void *HwasanAllocate(StackTrace *stack, uptr orig_size, uptr alignment, 186 if (UNLIKELY(orig_size == 0)) 187 orig_size = 1; 188 if (UNLIKELY(orig_size > max_malloc_size)) { 191 orig_size); 194 ReportAllocationSizeTooBig(orig_size, max_malloc_size, stack); 203 uptr size = TaggedSize(orig_size); 228 if (size != orig_size) { 229 u8 *tail = reinterpret_cast<u8 *>(allocated) + orig_size; 230 uptr tail_length = size - orig_size; 307 uptr orig_size = meta->GetRequestedSize(); local [all...] |
| hwasan_report.cpp | 868 uptr orig_size, const u8 *expected) 870 orig_size(orig_size), 871 tail_size(kShadowAlignment - (orig_size % kShadowAlignment)) { 875 reinterpret_cast<u8 *>(untagged_addr + orig_size), 880 if (orig_size % kShadowAlignment != 0) 886 const uptr orig_size = 0; member in class:__hwasan::__anon14550::TailOverwrittenReport 897 bug_type, untagged_addr, untagged_addr + orig_size, orig_size); 1009 void ReportTailOverwritten(StackTrace *stack, uptr tagged_addr, uptr orig_size, [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_malloc_bisect.h | 18 static u32 malloc_hash(StackTrace *stack, uptr orig_size) { 21 H.add(orig_size); 31 static inline bool malloc_bisect(StackTrace *stack, uptr orig_size) { 40 uptr h = (uptr)malloc_hash(stack, orig_size); 44 Printf("[alloc] %u %zu\n", h, orig_size);
|
| hwasan_allocator.cpp | 125 static void *HwasanAllocate(StackTrace *stack, uptr orig_size, uptr alignment, 127 if (orig_size > kMaxAllowedMallocSize) { 130 orig_size); 133 ReportAllocationSizeTooBig(orig_size, kMaxAllowedMallocSize, stack); 137 uptr size = TaggedSize(orig_size); 155 meta->set_requested_size(orig_size); 164 if (size != orig_size) { 165 u8 *tail = reinterpret_cast<u8 *>(allocated) + orig_size; 166 uptr tail_length = size - orig_size; 179 if (flags()->tag_in_malloc && malloc_bisect(stack, orig_size)) { 242 uptr orig_size = meta->get_requested_size(); local [all...] |
| hwasan_report.h | 27 void ReportTailOverwritten(StackTrace *stack, uptr addr, uptr orig_size,
|
| hwasan_report.cpp | 606 void ReportTailOverwritten(StackTrace *stack, uptr tagged_addr, uptr orig_size, 608 uptr tail_size = kShadowAlignment - (orig_size % kShadowAlignment); 614 if (orig_size % kShadowAlignment != 0) { 624 bug_type, untagged_addr, untagged_addr + orig_size, orig_size); 644 u8 *tail = reinterpret_cast<u8*>(untagged_addr + orig_size);
|
| /src/sys/uvm/ |
| uvm_fault.h | 46 vsize_t orig_size; /* IN: original size of interest */ member in struct:uvm_faultinfo
|
| uvm_fault_i.h | 108 ufi->size = ufi->orig_size;
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| emutls.c | 190 pointer orig_size = arr->size; local 191 pointer size = orig_size * 2; 198 memset (arr->data + orig_size, 0, 199 (size - orig_size) * sizeof (void *));
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| emutls.c | 182 pointer orig_size = arr->size; local 183 pointer size = orig_size * 2; 190 memset (arr->data + orig_size, 0, 191 (size - orig_size) * sizeof (void *));
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| emutls.c | 166 uintptr_t orig_size = array->size; local 170 memset(array->data + orig_size, 0, 171 (new_size - orig_size) * sizeof(void*));
|
| /src/external/gpl3/gdb/dist/gdbserver/ |
| target.h | 354 pad lock object. ORIG_SIZE is the size in bytes of the 367 CORE_ADDR lockaddr, ULONGEST orig_size, CORE_ADDR *jump_entry, 607 orig_size, \ 617 orig_size, jump_entry, \
|
| linux-x86-low.cc | 123 CORE_ADDR lockaddr, ULONGEST orig_size, CORE_ADDR *jump_entry, 1092 ULONGEST orig_size, 1230 loffset = (tpaddr + orig_size) - (buildaddr + sizeof (jump_insn)); 1281 ULONGEST orig_size, 1410 offset = (tpaddr + orig_size) - (buildaddr + sizeof (jump_insn)); 1419 if (orig_size == 4) 1471 ULONGEST orig_size, 1485 orig_size, jump_entry, 1496 orig_size, jump_entry,
|
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| target.h | 354 pad lock object. ORIG_SIZE is the size in bytes of the 367 CORE_ADDR lockaddr, ULONGEST orig_size, CORE_ADDR *jump_entry, 607 orig_size, \ 617 orig_size, jump_entry, \
|
| linux-x86-low.cc | 117 CORE_ADDR lockaddr, ULONGEST orig_size, CORE_ADDR *jump_entry, 1181 ULONGEST orig_size, 1319 loffset = (tpaddr + orig_size) - (buildaddr + sizeof (jump_insn)); 1370 ULONGEST orig_size, 1499 offset = (tpaddr + orig_size) - (buildaddr + sizeof (jump_insn)); 1508 if (orig_size == 4) 1560 ULONGEST orig_size, 1574 orig_size, jump_entry, 1585 orig_size, jump_entry,
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
| fs_path.cc | 594 const auto orig_size = _M_cmpts.size(); 669 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); 741 const auto orig_size = _M_cmpts.size(); local 861 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); 905 const auto orig_size = _M_cmpts.size(); local 1049 if (_M_cmpts.size() > orig_size) 1050 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); 1053 if (_M_cmpts.size() == orig_size) 1111 const auto orig_size = _M_cmpts.size(); local 1257 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ |
| fs_path.cc | 573 const auto orig_size = _M_cmpts.size(); 655 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); 727 const auto orig_size = _M_cmpts.size(); local 847 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); 891 const auto orig_size = _M_cmpts.size(); local 1035 if (_M_cmpts.size() > orig_size) 1036 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); 1039 if (_M_cmpts.size() == orig_size) 1097 const auto orig_size = _M_cmpts.size(); local 1243 _M_cmpts._M_erase_from(_M_cmpts.begin() + orig_size); [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| lower-subreg.cc | 902 unsigned int orig_size, words; local 909 if (!interesting_mode_p (orig_mode, &orig_size, &words)) 957 || maybe_ne (orig_size, GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))))) 971 || maybe_ne (orig_size, 1072 gcc_assert (orig_size % UNITS_PER_WORD == 0); 1173 unsigned int orig_size, words, i; local 1185 if (!interesting_mode_p (orig_mode, &orig_size, &words))
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| lower-subreg.cc | 901 unsigned int orig_size, words; local 908 if (!interesting_mode_p (orig_mode, &orig_size, &words)) 941 || maybe_ne (orig_size, GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))))) 955 || maybe_ne (orig_size, 1056 gcc_assert (orig_size % UNITS_PER_WORD == 0); 1160 unsigned int orig_size, words, i; local 1172 if (!interesting_mode_p (orig_mode, &orig_size, &words))
|
| /src/external/gpl3/gcc/dist/gcc/rtl-ssa/ |
| access-utils.h | 115 auto orig_size = accesses.size (); local 117 gcc_assert (result.size () < orig_size);
|
| /src/external/bsd/libevent/dist/include/event2/ |
| buffer.h | 867 size_t orig_size; member in struct:evbuffer_cb_info
|
| /src/external/bsd/ntp/dist/sntp/libevent/include/event2/ |
| buffer.h | 868 size_t orig_size; member in struct:evbuffer_cb_info
|
| /src/external/gpl3/gdb/dist/gdb/ |
| tracepoint.h | 177 int orig_size = 0; member in struct:uploaded_tp
|