Home | History | Annotate | Download | only in sanitizer

Lines Matching refs:mid

72   // [beg, end); the memory [beg, mid) is used to store the current elements
73 // and the memory [mid, end) is reserved for future elements;
74 // beg <= mid <= end. For example, in "std::vector<> v"
77 // mid = beg + v.size() * sizeof(v[0]);
80 // container so that the tool can report errors when memory from [mid, end)
82 // Supply the old and the new values of mid (old_mid/new_mid).
83 // In the initial state mid == end and so should be the final
104 // - [beg, mid) is addressable,
105 // - [mid, end) is unaddressable.
107 // such complexity by touching only parts of the container around beg/mid/end.
108 int __sanitizer_verify_contiguous_container(const void *beg, const void *mid,
115 const void *beg, const void *mid, const void *end);