OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:statePtr
(Results
1 - 2
of
2
) sorted by null
/external/lz4/lib/
lz4hc.c
537
LZ4_streamHC_t* const
statePtr
= (LZ4_streamHC_t*)malloc(sizeof(LZ4_streamHC_t));
540
LZ4_streamHC_t* const
statePtr
= &state;
542
int const cSize = LZ4_compress_HC_extStateHC(
statePtr
, src, dst, srcSize, maxDstSize, compressionLevel);
544
free(
statePtr
);
/external/lz4/tests/
fuzzer.c
677
{ LZ4_stream_t*
statePtr
;
683
statePtr
= LZ4_createStream();
684
FUZ_CHECKTEST(
statePtr
==NULL, "LZ4_createStream() allocation failed")
[
all
...]
Completed in 229 milliseconds