MCPcopy Create free account
hub / github.com/HexHive/NASS / Get

Method Get

fuzz/libfuzzer/FuzzerValueBitMap.h:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46 }
47
48 inline bool Get(uintptr_t Idx) {
49 assert(Idx < kMapSizeInBits);
50 uintptr_t WordIdx = Idx / kBitsInWord;
51 uintptr_t BitIdx = Idx % kBitsInWord;
52 return Map[WordIdx] & (1ULL << BitIdx);
53 }
54
55 size_t SizeInBits() const { return kMapSizeInBits; }
56

Callers 2

AddToCorpusMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected