OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lastByte
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/bsd/elftosb/dist/common/
StExecutableImage.cpp
208
uint32_t
lastByte
= region.endAddress(); // last used byte in this region
218
if (cropTo >
lastByte
)
220
cropTo =
lastByte
;
233
if (cropFrom == firstByte && cropTo ==
lastByte
)
242
uint32_t leftoverLength =
lastByte
- cropTo;
411
uint32_t
lastByte
= region.endAddress(); // last used byte in this region
412
return (firstByte >= m_fromAddress && firstByte <= m_toAddress) || (
lastByte
>= m_fromAddress &&
lastByte
<= m_toAddress);
/src/external/bsd/zstd/dist/lib/common/
bitstream.h
263
{ BYTE const
lastByte
= ((const BYTE*)srcBuffer)[srcSize-1];
264
bitD->bitsConsumed =
lastByte
? 8 - ZSTD_highbit32(
lastByte
) : 0; /* ensures bitsConsumed is always set */
265
if (
lastByte
== 0) return ERROR(GENERIC); /* endMark not present */ }
291
{ BYTE const
lastByte
= ((const BYTE*)srcBuffer)[srcSize-1];
292
bitD->bitsConsumed =
lastByte
? 8 - ZSTD_highbit32(
lastByte
) : 0;
293
if (
lastByte
== 0) return ERROR(corruption_detected); /* endMark not present */
/src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c
151
BYTE const
lastByte
= ip[7];
152
size_t const bitsConsumed =
lastByte
? 8 - ZSTD_highbit32(
lastByte
) : 0;
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v06.c
841
{ BYTE const
lastByte
= ((const BYTE*)srcBuffer)[srcSize-1];
842
if (
lastByte
== 0) return ERROR(GENERIC); /* endMark not present */
843
bitD->bitsConsumed = 8 - BITv06_highbit32(
lastByte
); }
858
{ BYTE const
lastByte
= ((const BYTE*)srcBuffer)[srcSize-1];
859
if (
lastByte
== 0) return ERROR(GENERIC); /* endMark not present */
860
bitD->bitsConsumed = 8 - BITv06_highbit32(
lastByte
); }
zstd_v07.c
510
{ BYTE const
lastByte
= ((const BYTE*)srcBuffer)[srcSize-1];
511
bitD->bitsConsumed =
lastByte
? 8 - BITv07_highbit32(
lastByte
) : 0;
512
if (
lastByte
== 0) return ERROR(GENERIC); /* endMark not present */ }
527
{ BYTE const
lastByte
= ((const BYTE*)srcBuffer)[srcSize-1];
528
bitD->bitsConsumed =
lastByte
? 8 - BITv07_highbit32(
lastByte
) : 0;
529
if (
lastByte
== 0) return ERROR(GENERIC); /* endMark not present */ }
Completed in 44 milliseconds
Indexes created Fri Mar 27 00:22:57 UTC 2026