OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CmpSize
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp
131
static bool ComputeCmp(size_t
CmpSize
, size_t CmpType, uint64_t Arg1,
133
if (
CmpSize
== 8) return ComputeCmp<uint64_t, int64_t>(CmpType, Arg1, Arg2);
134
if (
CmpSize
== 4) return ComputeCmp<uint32_t, int32_t>(CmpType, Arg1, Arg2);
135
if (
CmpSize
== 2) return ComputeCmp<uint16_t, int16_t>(CmpType, Arg1, Arg2);
136
if (
CmpSize
== 1) return ComputeCmp<uint8_t, int8_t>(CmpType, Arg1, Arg2);
182
void DFSanCmpCallback(uintptr_t PC, size_t
CmpSize
, size_t CmpType,
185
void DFSanMemcmpCallback(size_t
CmpSize
, const uint8_t *Data1,
190
void TraceCmpCallback(uintptr_t PC, size_t
CmpSize
, size_t CmpType,
192
void TraceMemcmpCallback(size_t
CmpSize
, const uint8_t *Data1,
308
void TraceState::DFSanCmpCallback(uintptr_t PC, size_t
CmpSize
, size_t CmpType
[
all
...]
/external/honggfuzz/libhfuzz/
instrument.c
206
uint64_t
CmpSize
= (SizeAndType >> 32) / 8;
207
switch (
CmpSize
) {
Completed in 815 milliseconds