OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inpBytes
(Results
1 - 4
of
4
) sorted by null
/external/lz4/examples/
blockStreaming_lineByLine.c
52
const int
inpBytes
= (int) read_bin(inpFp, inpPtr, randomLength);
53
if (0 ==
inpBytes
) break;
56
int
inpBytes
= 0;
59
inpBytes
= (int) strlen(inpPtr);
64
lz4Stream, inpPtr, cmpBuf,
inpBytes
);
70
inpOffset +=
inpBytes
;
HCStreaming_ringBuffer.c
67
const int
inpBytes
= (int) read_bin(inpFp, inpPtr, randomLength);
68
if (0 ==
inpBytes
) break;
72
const int cmpBytes = LZ4_compressHC_continue(lz4Stream, inpPtr, cmpBuf,
inpBytes
);
78
inpOffset +=
inpBytes
;
blockStreaming_ringBuffer.c
63
const int
inpBytes
= (int) read_bin(inpFp, inpPtr, randomLength);
64
if (0 ==
inpBytes
) break;
68
const int cmpBytes = LZ4_compress_continue(lz4Stream, inpPtr, cmpBuf,
inpBytes
);
73
inpOffset +=
inpBytes
;
blockStreaming_doubleBuffer.c
46
const int
inpBytes
= (int) read_bin(inpFp, inpPtr, BLOCK_BYTES);
47
if(0 ==
inpBytes
) {
54
lz4Stream, inpPtr, cmpBuf,
inpBytes
);
Completed in 121 milliseconds