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

References

projects/compiler-rt/lib/lsan/lsan_common.cpp
  100 static InternalMmapVector<RootRegion> *root_regions;
  102 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; }
  106   ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)];
  107   root_regions = new (placeholder) InternalMmapVector<RootRegion>();
  311 void ScanRootRegion(Frontier *frontier, const RootRegion &root_region,
  326                               const RootRegion &root_region) {
  820   RootRegion region = {reinterpret_cast<uptr>(begin), size};
  833     RootRegion region = (*root_regions)[i];
projects/compiler-rt/lib/lsan/lsan_common.h
  129 InternalMmapVector<RootRegion> const *GetRootRegions();
  130 void ScanRootRegion(Frontier *frontier, RootRegion const &region,
projects/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  452   T &operator[](uptr i) {
  456   const T &operator[](uptr i) const {
  460   void push_back(const T &element) {
  466     internal_memcpy(&data_[size_++], &element, sizeof(T));
  468   T &back() {
  479   const T *data() const {
  482   T *data() {
  485   uptr capacity() const { return capacity_bytes_ / sizeof(T); }
  502   const T *begin() const {
  505   T *begin() {
  508   const T *end() const {
  511   T *end() {
  526         RoundUpTo(new_capacity * sizeof(T), GetPageSizeCached());
  527     T *new_data = (T *)MmapOrDie(new_capacity_bytes, "InternalMmapVector");
  528     internal_memcpy(new_data, data_, size_ * sizeof(T));
  534   T *data_;
  553 class InternalMmapVector : public InternalMmapVectorNoCtor<T> {