Home
last modified time | relevance | path

Searched refs:kMapSize (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/test/msan/
Dmmap.cc53 const size_t kMapSize = 0x100000000ULL; in main() local
55 const size_t kMapSize = 0x1000000000ULL; in main()
59 void *p = mmap(0, kMapSize, PROT_WRITE, in main()
/external/v8/src/regexp/
Djsregexp.h1089 : map_(new(zone) ZoneList<bool>(kMapSize, zone)), in BoyerMoorePositionInfo()
1095 for (int i = 0; i < kMapSize; i++) { in BoyerMoorePositionInfo()
1102 static const int kMapSize = 128; variable
1103 static const int kMask = kMapSize - 1;
Djsregexp.cc3643 if (interval.to() - interval.from() >= kMapSize - 1) { in SetInterval()
3644 if (map_count_ != kMapSize) { in SetInterval()
3645 map_count_ = kMapSize; in SetInterval()
3646 for (int i = 0; i < kMapSize; i++) map_->at(i) = true; in SetInterval()
3656 if (map_count_ == kMapSize) return; in SetInterval()
3663 if (map_count_ != kMapSize) { in SetAll()
3664 map_count_ = kMapSize; in SetAll()
3665 for (int i = 0; i < kMapSize; i++) map_->at(i) = true; in SetAll()
6389 STATIC_ASSERT(BoyerMoorePositionInfo::kMapSize ==