OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:customFree
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/common/
allocations.h
48
if (customMem.
customFree
)
49
customMem.
customFree
(customMem.opaque, ptr);
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v07.c
68
typedef struct { ZSTDv07_allocFunction customAlloc; ZSTDv07_freeFunction
customFree
; void* opaque; } ZSTDv07_customMem;
2926
if (!customMem.customAlloc && !customMem.
customFree
)
2929
if (!customMem.customAlloc || !customMem.
customFree
)
2947
dctx->customMem.
customFree
(dctx->customMem.opaque, dctx);
4136
if (!customMem.customAlloc && !customMem.
customFree
)
4139
if (!customMem.customAlloc || !customMem.
customFree
)
4147
customMem.
customFree
(customMem.opaque, dictContent);
4148
customMem.
customFree
(customMem.opaque, ddict);
4149
customMem.
customFree
(customMem.opaque, dctx);
4156
customMem.
customFree
(customMem.opaque, dictContent)
[
all
...]
/src/external/bsd/zstd/dist/lib/decompress/
zstd_ddict.c
150
if ((!customMem.customAlloc) ^ (!customMem.
customFree
)) return NULL;
zstd_decompress.c
295
if ((!customMem.customAlloc) ^ (!customMem.
customFree
)) return NULL;
/src/external/bsd/zstd/dist/zlibWrapper/
zstd_zlibwrapper.c
143
if (customMem.
customFree
)
144
customMem.
customFree
(customMem.opaque, ptr);
188
customMem.
customFree
= ZWRAP_freeFunction;
548
customMem.
customFree
= ZWRAP_freeFunction;
/src/external/bsd/zstd/dist/lib/compress/
zstd_cwksp.h
701
if (ptr != NULL && customMem.
customFree
!= NULL) {
zstd_compress.c
118
if ((!customMem.customAlloc) ^ (!customMem.
customFree
)) return NULL;
332
if ((!customMem.customAlloc) ^ (!customMem.
customFree
)) return NULL;
5612
if ((!customMem.customAlloc) ^ (!customMem.
customFree
)) return NULL;
5672
if (!customMem.customAlloc ^ !customMem.
customFree
) return NULL;
zstdmt_compress.c
959
if ((cMem.customAlloc!=NULL) ^ (cMem.
customFree
!=NULL))
/src/external/bsd/zstd/dist/lib/
zstd.h
1870
typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction
customFree
; void* opaque; } ZSTD_customMem;
Completed in 61 milliseconds
Indexes created Fri Jun 12 00:25:51 UTC 2026