HomeSort by relevance Sort by last modified time
    Searched refs:kTabSize (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stackdepotbase.h 44 static const int kTabSize = 1 << kTabSizeLog; // Hash table size.
49 static const int kPartSize = kTabSize / kPartCount;
52 atomic_uintptr_t tab[kTabSize]; // Hash table of Node's.
103 atomic_uintptr_t *p = &tab[h % kTabSize];
118 uptr part = (h % kTabSize) / kPartSize;
147 CHECK_LT(idx, kTabSize);
162 for (int i = 0; i < kTabSize; ++i) {
169 for (int i = 0; i < kTabSize; ++i) {
sanitizer_stackdepot.cc 140 for (int idx = 0; idx < StackDepot::kTabSize; idx++) {

Completed in 160 milliseconds