OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ctxPtr
(Results
1 - 3
of
3
) sorted by null
/external/lz4/lib/
lz4hc.c
603
LZ4HC_Data_Structure*
ctxPtr
= (LZ4HC_Data_Structure*) LZ4_streamHCPtr;
609
LZ4HC_init (
ctxPtr
, (const BYTE*)dictionary);
610
if (dictSize >= 4) LZ4HC_Insert (
ctxPtr
, (const BYTE*)dictionary +(dictSize-3));
611
ctxPtr
->end = (const BYTE*)dictionary + dictSize;
618
static void LZ4HC_setExternalDict(LZ4HC_Data_Structure*
ctxPtr
, const BYTE* newBlock)
620
if (
ctxPtr
->end >=
ctxPtr
->base + 4)
621
LZ4HC_Insert (
ctxPtr
,
ctxPtr
->end-3); /* Referencing remaining dictionary content */
623
ctxPtr
->lowLimit = ctxPtr->dictLimit
[
all
...]
lz4frame.h
193
LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_decompressionContext_t*
ctxPtr
, unsigned version);
/external/clang/test/SemaCXX/
anonymous-union.cpp
167
union { int **
ctxPtr
; void **voidPtr; };
Completed in 207 milliseconds