OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inpFp
(Results
1 - 4
of
4
) sorted by null
/external/lz4/examples/
blockStreaming_lineByLine.c
36
FILE*
inpFp
,
52
const int inpBytes = (int) read_bin(
inpFp
, inpPtr, randomLength);
57
if (!fgets(inpPtr, (int) messageMaxBytes,
inpFp
))
84
FILE*
inpFp
,
97
if (read_uint16(
inpFp
, &cmpBytes) != 1) break;
99
if (read_bin(
inpFp
, cmpBuf, cmpBytes) != cmpBytes) break;
171
FILE*
inpFp
= fopen(inpFilename, "rb");
174
test_compress(outFp,
inpFp
, MESSAGE_MAX_BYTES, RING_BUFFER_BYTES);
177
fclose(
inpFp
);
182
FILE*
inpFp
= fopen(lz4Filename, "rb")
[
all
...]
HCStreaming_ringBuffer.c
54
void test_compress(FILE* outFp, FILE*
inpFp
)
67
const int inpBytes = (int) read_bin(
inpFp
, inpPtr, randomLength);
90
void test_decompress(FILE* outFp, FILE*
inpFp
)
103
const size_t r0 = read_int32(
inpFp
, &cmpBytes);
108
r1 = read_bin(
inpFp
, cmpBuf, cmpBytes);
196
FILE*
inpFp
= fopen(inpFilename, "rb");
199
test_compress(outFp,
inpFp
);
202
fclose(
inpFp
);
207
FILE*
inpFp
= fopen(lz4Filename, "rb");
210
test_decompress(outFp,
inpFp
);
[
all
...]
blockStreaming_doubleBuffer.c
36
void test_compress(FILE* outFp, FILE*
inpFp
)
46
const int inpBytes = (int) read_bin(
inpFp
, inpPtr, BLOCK_BYTES);
69
void test_decompress(FILE* outFp, FILE*
inpFp
)
82
const size_t readCount0 = read_int(
inpFp
, &cmpBytes);
87
const size_t readCount1 = read_bin(
inpFp
, cmpBuf, (size_t) cmpBytes);
153
FILE*
inpFp
= fopen(inpFilename, "rb");
157
test_compress(outFp,
inpFp
);
161
fclose(
inpFp
);
166
FILE*
inpFp
= fopen(lz4Filename, "rb");
170
test_decompress(outFp,
inpFp
);
[
all
...]
blockStreaming_ringBuffer.c
51
void test_compress(FILE* outFp, FILE*
inpFp
)
63
const int inpBytes = (int) read_bin(
inpFp
, inpPtr, randomLength);
84
void test_decompress(FILE* outFp, FILE*
inpFp
)
96
const size_t r0 = read_int32(
inpFp
, &cmpBytes);
99
const size_t r1 = read_bin(
inpFp
, cmpBuf, cmpBytes);
163
FILE*
inpFp
= fopen(inpFilename, "rb");
166
test_compress(outFp,
inpFp
);
169
fclose(
inpFp
);
174
FILE*
inpFp
= fopen(lz4Filename, "rb");
177
test_decompress(outFp,
inpFp
);
[
all
...]
Completed in 5050 milliseconds