OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inPos
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_internal.h
176
size_t
inPos
;
zstd_decompress.c
2119
zds->lhSize = zds->
inPos
= zds->outStart = zds->outEnd = 0;
2295
size_t const toLoad = neededInSize - zds->
inPos
;
2303
RETURN_ERROR_IF(toLoad > zds->inBuffSize - zds->
inPos
,
2306
loadedSize = ZSTD_limitCopy(zds->inBuff + zds->
inPos
, toLoad, ip, (size_t)(iend-ip));
2311
zds->
inPos
+= loadedSize;
2316
zds->
inPos
= 0; /* input is consumed */
2386
assert(zds->
inPos
<= nextSrcSizeHint);
2387
nextSrcSizeHint -= zds->
inPos
; /* part already loaded*/
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v04.c
3309
size_t
inPos
;
3350
zbc->hPos = zbc->
inPos
= zbc->outStart = zbc->outEnd = zbc->dictSize = 0;
3446
zbc->
inPos
= zbc->hPos;
3482
size_t toLoad = neededInSize - zbc->
inPos
; /* should always be <= remaining space within inBuff */
3484
if (toLoad > zbc->inBuffSize - zbc->
inPos
) return ERROR(corruption_detected); /* should never happen */
3485
loadedSize = ZBUFF_limitCopy(zbc->inBuff + zbc->
inPos
, toLoad, ip, iend-ip);
3487
zbc->
inPos
+= loadedSize;
3494
zbc->
inPos
= 0; /* input is consumed */
3529
nextSrcSizeHint -= zbc->
inPos
; /* already loaded*/
zstd_v05.c
3793
size_t
inPos
;
3830
zbc->hPos = zbc->
inPos
= zbc->outStart = zbc->outEnd = 0;
3913
zbc->
inPos
= zbc->hPos;
3947
size_t toLoad = neededInSize - zbc->
inPos
; /* should always be <= remaining space within inBuff */
3949
if (toLoad > zbc->inBuffSize - zbc->
inPos
) return ERROR(corruption_detected); /* should never happen */
3950
loadedSize = ZBUFFv05_limitCopy(zbc->inBuff + zbc->
inPos
, toLoad, ip, iend-ip);
3952
zbc->
inPos
+= loadedSize;
3959
zbc->
inPos
= 0; /* input is consumed */
3991
nextSrcSizeHint -= zbc->
inPos
; /* already loaded*/
zstd_v06.c
3905
size_t
inPos
;
3946
zbd->lhSize = zbd->
inPos
= zbd->outStart = zbd->outEnd = 0;
4055
size_t const toLoad = neededInSize - zbd->
inPos
; /* should always be <= remaining space within inBuff */
4057
if (toLoad > zbd->inBuffSize - zbd->
inPos
) return ERROR(corruption_detected); /* should never happen */
4058
loadedSize = ZBUFFv06_limitCopy(zbd->inBuff + zbd->
inPos
, toLoad, ip, iend-ip);
4060
zbd->
inPos
+= loadedSize;
4068
zbd->
inPos
= 0; /* input is consumed */
4099
nextSrcSizeHint -= zbd->
inPos
; /* already loaded*/
zstd_v07.c
4267
size_t
inPos
;
4321
zbd->lhSize = zbd->
inPos
= zbd->outStart = zbd->outEnd = 0;
4434
size_t const toLoad = neededInSize - zbd->
inPos
; /* should always be <= remaining space within inBuff */
4436
if (toLoad > zbd->inBuffSize - zbd->
inPos
) return ERROR(corruption_detected); /* should never happen */
4437
loadedSize = ZBUFFv07_limitCopy(zbd->inBuff + zbd->
inPos
, toLoad, ip, iend-ip);
4439
zbd->
inPos
+= loadedSize;
4448
zbd->
inPos
= 0; /* input is consumed */
4479
nextSrcSizeHint -= zbd->
inPos
; /* already loaded*/
/src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_7zip.c
4405
size_t
inPos
= 0, outPos = 0;
4454
size_t limit = size0 -
inPos
;
4460
uint8_t bb = buf0[
inPos
];
4466
inPos
++;
4476
b = buf0[
inPos
++];
4533
zip->tmp_stream_bytes_remaining -=
inPos
;
Completed in 66 milliseconds
Indexes created Thu Aug 06 00:25:04 UTC 2026