Searched refs:lzma2Props (Results 1 – 5 of 5) sorted by relevance
/external/lzma/CPP/7zip/Compress/ |
D | Lzma2Encoder.cpp | 37 HRESULT SetLzma2Prop(PROPID propID, const PROPVARIANT &prop, CLzma2EncProps &lzma2Props) in SetLzma2Prop() argument 44 lzma2Props.blockSize = prop.ulVal; in SetLzma2Prop() 46 lzma2Props.blockSize = prop.uhVal.QuadPart; in SetLzma2Prop() 52 … if (prop.vt != VT_UI4) return E_INVALIDARG; lzma2Props.numTotalThreads = (int)(prop.ulVal); break; in SetLzma2Prop() 54 RINOK(NLzma::SetLzmaProp(propID, prop, lzma2Props.lzmaProps)); in SetLzma2Prop() 63 CLzma2EncProps lzma2Props; in SetCoderProperties() local 64 Lzma2EncProps_Init(&lzma2Props); in SetCoderProperties() 68 RINOK(SetLzma2Prop(propIDs[i], coderProps[i], lzma2Props)); in SetCoderProperties() 70 return SResToHRESULT(Lzma2Enc_SetProps(_encoder, &lzma2Props)); in SetCoderProperties()
|
D | XzEncoder.cpp | 19 HRESULT SetLzma2Prop(PROPID propID, const PROPVARIANT &prop, CLzma2EncProps &lzma2Props); 184 return NLzma2::SetLzma2Prop(propID, prop, xzProps.lzma2Props); in SetCoderProp()
|
/external/lzma/C/ |
D | XzEnc.c | 485 Lzma2EncProps_Init(&p->lzma2Props); in XzProps_Init() 494 CLzma2EncProps tp = p->lzma2Props; in XzEncProps_Normalize_Fixed() 501 t1 = p->lzma2Props.numTotalThreads; in XzEncProps_Normalize_Fixed() 534 p->lzma2Props.numTotalThreads = t1; in XzEncProps_Normalize_Fixed() 541 p->lzma2Props.lzmaProps.reduceSize = p->blockSize; in XzEncProps_Normalize_Fixed() 543 Lzma2EncProps_Normalize(&p->lzma2Props); in XzEncProps_Normalize_Fixed() 545 t1 = p->lzma2Props.numTotalThreads; in XzEncProps_Normalize_Fixed() 576 p->lzma2Props.lzmaProps.reduceSize = p->reduceSize; in XzProps_Normalize() 579 if (p->lzma2Props.numTotalThreads <= 0) in XzProps_Normalize() 580 p->lzma2Props.numTotalThreads = p->numTotalThreads; in XzProps_Normalize() [all …]
|
D | XzEnc.h | 31 CLzma2EncProps lzma2Props; member
|
/external/lzma/CPP/7zip/Archive/ |
D | XzHandler.cpp | 1096 CLzma2EncProps &lzma2Props = xzProps.lzma2Props; in UpdateItems() local 1098 lzma2Props.lzmaProps.level = GetLevel(); in UpdateItems() 1115 xzProps.lzma2Props.blockSize = LZMA2_ENC_PROPS__BLOCK_SIZE__SOLID; in UpdateItems()
|