• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/lsan/

Lines Matching refs:uptr

73   uptr pointer_alignment() const {
74 return use_unaligned ? 1 : sizeof(uptr);
84 uptr hit_count;
85 uptr total_size;
93 uptr addr;
94 uptr size;
101 void AddLeakedChunk(uptr chunk, u32 stack_trace_id, uptr leaked_size,
103 void ReportTopLeaks(uptr max_leaks);
106 uptr UnsuppressedLeakCount();
109 void PrintReportForLeak(uptr index);
110 void PrintLeakedObjectsForLeak(uptr index);
117 typedef InternalMmapVector<uptr> Frontier;
125 uptr begin;
126 uptr size;
131 uptr region_begin, uptr region_end, bool is_readable);
136 void ScanRangeForPointers(uptr begin, uptr end,
139 void ScanGlobalRange(uptr begin, uptr end, Frontier *frontier);
167 static inline bool IsItaniumABIArrayCookie(uptr chunk_beg, uptr chunk_size,
168 uptr addr) {
169 return chunk_size == sizeof(uptr) && chunk_beg + chunk_size == addr &&
170 *reinterpret_cast<uptr *>(chunk_beg) == 0;
178 static inline bool IsARMABIArrayCookie(uptr chunk_beg, uptr chunk_size,
179 uptr addr) {
180 return chunk_size == 2 * sizeof(uptr) && chunk_beg + chunk_size == addr &&
181 *reinterpret_cast<uptr *>(chunk_beg + sizeof(uptr)) == 0;
188 inline bool IsSpecialCaseOfOperatorNew0(uptr chunk_beg, uptr chunk_size,
189 uptr addr) {
201 void GetAllocatorGlobalRange(uptr *begin, uptr *end);
206 bool WordIsPoisoned(uptr addr);
211 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
212 uptr *tls_begin, uptr *tls_end, uptr *cache_begin,
213 uptr *cache_end, DTLS **dtls);
225 uptr PointsIntoChunk(void *p);
227 uptr GetUserBegin(uptr chunk);
244 explicit LsanMetadata(uptr chunk);
248 uptr requested_size() const;