Searched refs:g_Alloc (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/lzma_sdk/
H A DLzmaLib.c13 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; variable
37 NULL, &g_Alloc, &g_Alloc);
45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaLib.c14 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; variable
38 NULL, &g_Alloc, &g_Alloc);
46 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
/external/lzma/C/
H A DLzmaLib.c13 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; variable
37 NULL, &g_Alloc, &g_Alloc);
45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
H A DLzma86Dec.c26 ISzAlloc g_Alloc = { SzAlloc, SzFree }; local
45 src + 1, LZMA_PROPS_SIZE, LZMA_FINISH_ANY, &status, &g_Alloc);
H A DLzma86Enc.c20 ISzAlloc g_Alloc = { SzAlloc, SzFree }; local
85 NULL, &g_Alloc, &g_Alloc);
H A DXzEnc.c23 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; variable
463 RINOK(Xz_AddIndexRecord(xz, block.unpackSize, seqSizeOutStream.processed - padSize, &g_Alloc));
477 Lzma2WithFilters_Construct(&lzmaf, &g_Alloc, &g_BigAlloc);
483 Xz_Free(&xz, &g_Alloc);
495 Xz_Free(&xz, &g_Alloc);
/external/lzma/C/Util/Lzma/
H A DLzmaUtil.c23 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; variable
128 RINOK(LzmaDec_Allocate(&state, header, LZMA_PROPS_SIZE, &g_Alloc));
130 LzmaDec_Free(&state, &g_Alloc);
142 enc = LzmaEnc_Create(&g_Alloc);
163 res = LzmaEnc_Encode(enc, outStream, inStream, NULL, &g_Alloc, &g_Alloc);
166 LzmaEnc_Destroy(enc, &g_Alloc, &g_Alloc);
/external/lzma/CPP/7zip/Compress/
H A DLzmaEncoder.cpp21 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; member in namespace:NCompress::NLzma
26 _encoder = LzmaEnc_Create(&g_Alloc);
34 LzmaEnc_Destroy(_encoder, &g_Alloc, &g_BigAlloc);
139 SRes res = LzmaEnc_Encode(_encoder, &outWrap.p, &inWrap.p, progress ? &progressWrap.p : NULL, &g_Alloc, &g_BigAlloc);
H A DLzma2Encoder.cpp28 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; member in namespace:NCompress::NLzma2
33 _encoder = Lzma2Enc_Create(&g_Alloc, &g_BigAlloc);
H A DLzma2Decoder.cpp36 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; member in namespace:NCompress::NLzma2
40 Lzma2Dec_Free(&_state, &g_Alloc);
47 RINOK(SResToHRESULT(Lzma2Dec_Allocate(&_state, prop[0], &g_Alloc)));
H A DLzmaDecoder.cpp39 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; member in namespace:NCompress::NLzma
43 LzmaDec_Free(&_state, &g_Alloc);
65 RINOK(SResToHRESULT(LzmaDec_Allocate(&_state, prop, size, &g_Alloc)));
/external/lzma/C/Util/7z/
H A D7zMain.c23 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; variable
29 Buf_Free(dest, &g_Alloc);
30 return Buf_Create(dest, size, &g_Alloc);
154 Buf_Free(&buf, &g_Alloc);
170 Buf_Free(&buf, &g_Alloc);
183 Buf_Free(&buf, &g_Alloc);
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp36 static ISzAlloc g_Alloc = { SzAlloc, SzFree }; variable
318 ~CXzsCPP() { Xzs_Free(&p, &g_Alloc); }
335 SRes res = Xzs_ReadBackward(&xzs.p, &lookStream.s, &_startPosition, &openWrap.p, &g_Alloc);
495 res = XzUnpacker_Create(&xzu.p, &g_Alloc);

Completed in 100 milliseconds