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_report.cpp
  139 static void PrintMutexSet(Vector<ReportMopMutex> const& mset) {
  143     const ReportMopMutex m = mset[i];
projects/compiler-rt/lib/tsan/rtl/tsan_report.h
   61   Vector<ReportMopMutex> mset;
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
  183     ReportMopMutex mtx = {mid, d.write};