Searched refs:zwc (Results 1 – 1 of 1) sorted by relevance
172 static size_t ZWRAP_freeCCtx(ZWRAP_CCtx* zwc) in ZWRAP_freeCCtx() argument174 if (zwc==NULL) return 0; /* support free on NULL */ in ZWRAP_freeCCtx()175 ZSTD_freeCStream(zwc->zbc); in ZWRAP_freeCCtx()176 ZWRAP_customFree(zwc, zwc->customMem); in ZWRAP_freeCCtx()183 ZWRAP_CCtx* zwc; in ZWRAP_createCCtx() local192 zwc = (ZWRAP_CCtx*)ZWRAP_customCalloc(sizeof(ZWRAP_CCtx), customMem); in ZWRAP_createCCtx()193 if (zwc == NULL) return NULL; in ZWRAP_createCCtx()194 zwc->allocFunc = *strm; in ZWRAP_createCCtx()195 customMem.opaque = &zwc->allocFunc; in ZWRAP_createCCtx()196 zwc->customMem = customMem; in ZWRAP_createCCtx()[all …]