Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/common/
H A Dbitstream.h287 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BIT_initDStream() local
288 …bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0; /* ensures bitsConsumed is alway… in BIT_initDStream()
289 if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ } in BIT_initDStream()
315 { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; in BIT_initDStream() local
316 bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0; in BIT_initDStream()
317 if (lastByte == 0) return ERROR(corruption_detected); /* endMark not present */ in BIT_initDStream()