Searched defs:CmpSize (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Fuzzer/
H A DFuzzerDFSan.cpp122 static bool ComputeCmp(size_t CmpSize, size_t CmpType, uint64_t Arg1, argument
124 if (CmpSize == 8) return ComputeCmp<uint64_t, int64_t>(CmpType, Arg1, Arg2);
125 if (CmpSize == 4) return ComputeCmp<uint32_t, int32_t>(CmpType, Arg1, Arg2);
126 if (CmpSize == 2) return ComputeCmp<uint16_t, int16_t>(CmpType, Arg1, Arg2);
127 if (CmpSize == 1) return ComputeCmp<uint8_t, int8_t>(CmpType, Arg1, Arg2);
165 size_t CmpSize = 0; member in struct:__anon10539::DFSanState::CmpSiteInfo
171 void DFSanCmpCallback(uintptr_t PC, size_t CmpSize, size_t CmpType,
192 void DFSanState::DFSanCmpCallback(uintptr_t PC, size_t CmpSize, size_t CmpType, argument
199 bool Res = ComputeCmp(CmpSize, CmpType, Arg1, Arg2);
201 CSI.CmpSize
271 uint64_t CmpSize = (SizeAndType >> 32) / 8; local
[all...]

Completed in 22 milliseconds