OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cmpBuf
(Results
1 - 6
of
6
) sorted by null
/external/lz4/examples/
blockStreaming_lineByLine.c
41
char* const
cmpBuf
= malloc(LZ4_COMPRESSBOUND(messageMaxBytes));
64
lz4Stream, inpPtr,
cmpBuf
, inpBytes);
67
write_bin(outFp,
cmpBuf
, cmpBytes);
77
free(
cmpBuf
);
89
char* const
cmpBuf
= malloc(LZ4_COMPRESSBOUND(messageMaxBytes));
99
if (read_bin(inpFp,
cmpBuf
, cmpBytes) != cmpBytes) break;
104
lz4StreamDecode,
cmpBuf
, decPtr, cmpBytes, (int) messageMaxBytes);
115
free(
cmpBuf
);
HCStreaming_ringBuffer.c
71
char
cmpBuf
[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)];
72
const int cmpBytes = LZ4_compressHC_continue(lz4Stream, inpPtr,
cmpBuf
, inpBytes);
76
write_bin(outFp,
cmpBuf
, cmpBytes);
100
char
cmpBuf
[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)];
108
r1 = read_bin(inpFp,
cmpBuf
, cmpBytes);
116
lz4StreamDecode,
cmpBuf
, decPtr, cmpBytes, MESSAGE_MAX_BYTES);
blockStreaming_doubleBuffer.c
52
char
cmpBuf
[LZ4_COMPRESSBOUND(BLOCK_BYTES)];
54
lz4Stream, inpPtr,
cmpBuf
, inpBytes);
59
write_bin(outFp,
cmpBuf
, (size_t) cmpBytes);
78
char
cmpBuf
[LZ4_COMPRESSBOUND(BLOCK_BYTES)];
87
const size_t readCount1 = read_bin(inpFp,
cmpBuf
, (size_t) cmpBytes);
96
lz4StreamDecode,
cmpBuf
, decPtr, cmpBytes, BLOCK_BYTES);
blockStreaming_ringBuffer.c
67
char
cmpBuf
[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)];
68
const int cmpBytes = LZ4_compress_continue(lz4Stream, inpPtr,
cmpBuf
, inpBytes);
71
write_bin(outFp,
cmpBuf
, cmpBytes);
93
char
cmpBuf
[LZ4_COMPRESSBOUND(MESSAGE_MAX_BYTES)];
99
const size_t r1 = read_bin(inpFp,
cmpBuf
, cmpBytes);
106
lz4StreamDecode,
cmpBuf
, decPtr, cmpBytes, MESSAGE_MAX_BYTES);
/prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar
/prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar
Completed in 1010 milliseconds