Home
last modified time | relevance | path

Searched refs:Xz_WriteVarInt (Results 1 – 4 of 4) sorted by relevance

/external/lzma/C/
DXzEnc.c77 if (XzBlock_HasPackSize(p)) pos += Xz_WriteVarInt(header + pos, p->packSize); in XzBlock_WriteHeader()
78 if (XzBlock_HasUnpackSize(p)) pos += Xz_WriteVarInt(header + pos, p->unpackSize); in XzBlock_WriteHeader()
84 pos += Xz_WriteVarInt(header + pos, f->id); in XzBlock_WriteHeader()
85 pos += Xz_WriteVarInt(header + pos, f->propsSize); in XzBlock_WriteHeader()
157 unsigned pos2 = Xz_WriteVarInt(buf, totalSize); in XzEncIndex_PreAlloc()
158 pos2 += Xz_WriteVarInt(buf + pos2, unpackSize); in XzEncIndex_PreAlloc()
177 unsigned pos = Xz_WriteVarInt(buf, totalSize); in XzEncIndex_AddIndexRecord()
178 pos += Xz_WriteVarInt(buf + pos, unpackSize); in XzEncIndex_AddIndexRecord()
199 unsigned pos = 1 + Xz_WriteVarInt(buf + 1, p->numBlocks); in XzEncIndex_WriteFooter()
DXz.c14 unsigned Xz_WriteVarInt(Byte *buf, UInt64 v) in Xz_WriteVarInt() function
DXz.h22 unsigned Xz_WriteVarInt(Byte *buf, UInt64 v);
DXzDec.c972 unsigned num = Xz_WriteVarInt(temp, packSize); in XzUnpacker_UpdateIndex()
973 num += Xz_WriteVarInt(temp + num, unpackSize); in XzUnpacker_UpdateIndex()
1131 p->indexPreSize = 1 + Xz_WriteVarInt(p->buf + 1, p->numBlocks); in XzUnpacker_Code()