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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
  126   for (int idx = 0; idx < StackDepot::kTabSize; idx++) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_stackdepotbase.h
   48   static const int kPartSize = kTabSize / kPartCount;
   51   atomic_uintptr_t tab[kTabSize];   // Hash table of Node's.
  102   atomic_uintptr_t *p = &tab[h % kTabSize];
  117   uptr part = (h % kTabSize) / kPartSize;
  146     CHECK_LT(idx, kTabSize);
  161   for (int i = 0; i < kTabSize; ++i) {
  168   for (int i = 0; i < kTabSize; ++i) {