HomeSort by: relevance | last modified time | path
    Searched defs:customAlloc (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/
zstd.h 1794 typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction customFree; void* opaque; } ZSTD_customMem;
  /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)
2932 dctx = (ZSTDv07_DCtx*) customMem.customAlloc(customMem.opaque, sizeof(ZSTDv07_DCtx));
4136 if (!customMem.customAlloc && !customMem.customFree)
4139 if (!customMem.customAlloc || !customMem.customFree)
4142 { ZSTDv07_DDict* const ddict = (ZSTDv07_DDict*) customMem.customAlloc(customMem.opaque, sizeof(*ddict));
4143 void* const dictContent = customMem.customAlloc(customMem.opaque, dictSize);
4289 if (!customMem.customAlloc && !customMem.customFree)
4292 if (!customMem.customAlloc || !customMem.customFree
    [all...]

Completed in 28 milliseconds