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.h1096 : map_(new(zone) ZoneList<bool>(kMapSize, zone)), in BoyerMoorePositionInfo()
1102 for (int i = 0; i < kMapSize; i++) { in BoyerMoorePositionInfo()
1109 static const int kMapSize = 128; variable
1110 static const int kMask = kMapSize - 1;
Djsregexp.cc3589 if (interval.to() - interval.from() >= kMapSize - 1) { in SetInterval()
3590 if (map_count_ != kMapSize) { in SetInterval()
3591 map_count_ = kMapSize; in SetInterval()
3592 for (int i = 0; i < kMapSize; i++) map_->at(i) = true; in SetInterval()
3602 if (map_count_ == kMapSize) return; in SetInterval()
3609 if (map_count_ != kMapSize) { in SetAll()
3610 map_count_ = kMapSize; in SetAll()
3611 for (int i = 0; i < kMapSize; i++) map_->at(i) = true; in SetAll()
6066 STATIC_ASSERT(BoyerMoorePositionInfo::kMapSize ==