Home
last modified time | relevance | path

Searched refs:NumBytesRead (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DPseudoProbe.cpp115 unsigned NumBytesRead = 0; in readUnsignedNumber() local
116 uint64_t Val = decodeULEB128(Data, &NumBytesRead); in readUnsignedNumber()
117 if (Val > std::numeric_limits<T>::max() || (Data + NumBytesRead > End)) { in readUnsignedNumber()
120 Data += NumBytesRead; in readUnsignedNumber()
125 unsigned NumBytesRead = 0; in readSignedNumber() local
126 int64_t Val = decodeSLEB128(Data, &NumBytesRead); in readSignedNumber()
127 if (Val > std::numeric_limits<T>::max() || (Data + NumBytesRead > End)) { in readSignedNumber()
130 Data += NumBytesRead; in readSignedNumber()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/dataflow/
H A DDataFlow.cpp140 size_t NumBytesRead = fread(Buf, 1, InputLen, In); in main() local
141 assert(NumBytesRead == InputLen); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DSampleProfReader.cpp371 unsigned NumBytesRead = 0; in readNumber() local
373 uint64_t Val = decodeULEB128(Data, &NumBytesRead); in readNumber()
377 else if (Data + NumBytesRead > End) in readNumber()
387 Data += NumBytesRead; in readNumber()