Home | History | Annotate | Download | only in C

Lines Matching refs:props

27   S - Props

63 static SRes Lzma2Dec_GetOldProps(Byte prop, Byte *props)
69 props[0] = (Byte)LZMA2_LCLP_MAX;
70 props[1] = (Byte)(dicSize);
71 props[2] = (Byte)(dicSize >> 8);
72 props[3] = (Byte)(dicSize >> 16);
73 props[4] = (Byte)(dicSize >> 24);
79 Byte props[LZMA_PROPS_SIZE];
80 RINOK(Lzma2Dec_GetOldProps(prop, props));
81 return LzmaDec_AllocateProbs(&p->decoder, props, LZMA_PROPS_SIZE, alloc);
86 Byte props[LZMA_PROPS_SIZE];
87 RINOK(Lzma2Dec_GetOldProps(prop, props));
88 return LzmaDec_Allocate(&p->decoder, props, LZMA_PROPS_SIZE, alloc);