Home
last modified time | relevance | path

Searched defs:ValueBitMap (Results 1 – 1 of 1) sorted by relevance

/third_party/json/test/thirdparty/Fuzzer/
DFuzzerValueBitMap.h20 struct ValueBitMap { struct
21 static const size_t kMapSizeInBits = 65371; // Prime.
22 static const size_t kMapSizeInBitsAligned = 65536; // 2^16
23 static const size_t kBitsInWord = (sizeof(uintptr_t) * 8);
24 static const size_t kMapSizeInWords = kMapSizeInBitsAligned / kBitsInWord;
28 void Reset() { memset(Map, 0, sizeof(Map)); } in Reset()
54 bool MergeFrom(ValueBitMap &Other) { in MergeFrom() argument
72 void ForEach(Callback CB) { in ForEach()
82 uintptr_t Map[kMapSizeInWords] __attribute__((aligned(512)));