Searched refs:NumBytesRead (Results 1 – 3 of 3) sorted by relevance
171 size_t NumBytesRead = fread(Buf, 1, InputLen, In); in main() local172 assert(NumBytesRead == InputLen); in main()175 NumIterations = (NumBytesRead + kNumLabels - 1) / kNumLabels; in main()189 size_t LastIdx = BaseIdx + kNumLabels < NumBytesRead ? BaseIdx + kNumLabels in main()190 : NumBytesRead; in main()
288 unsigned NumBytesRead = 0; in readUnsignedNumber() local289 uint64_t Val = decodeULEB128(Data, &NumBytesRead); in readUnsignedNumber()290 if (Val > std::numeric_limits<T>::max() || (Data + NumBytesRead > End)) { in readUnsignedNumber()293 Data += NumBytesRead; in readUnsignedNumber()298 unsigned NumBytesRead = 0; in readSignedNumber() local299 int64_t Val = decodeSLEB128(Data, &NumBytesRead); in readSignedNumber()300 if (Val > std::numeric_limits<T>::max() || (Data + NumBytesRead > End)) { in readSignedNumber()303 Data += NumBytesRead; in readSignedNumber()
393 unsigned NumBytesRead = 0; in readNumber() local395 uint64_t Val = decodeULEB128(Data, &NumBytesRead); in readNumber()399 else if (Data + NumBytesRead > End) in readNumber()409 Data += NumBytesRead; in readNumber()