reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
   45   T &operator[](uptr i) {
   50   const T &operator[](uptr i) const {
   55   T *PushBack() {
   62   T *PushBack(const T& v) {
   62   T *PushBack(const T& v) {
   64     T *p = &end_[-1];
   92   T *begin_;
   93   T *end_;
   94   T *last_;
  109     T *p = (T*)InternalAlloc(cap * sizeof(T));
  109     T *p = (T*)InternalAlloc(cap * sizeof(T));
  111       internal_memcpy(p, begin_, cap0 * sizeof(T));
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
  162   Vector<ThreadLeak> &leaks = *(Vector<ThreadLeak>*)arg;
  172   ThreadLeak leak = {tctx, 1};
  213   Vector<ThreadLeak> leaks;