Home
last modified time | relevance | path

Searched refs:GetNumAvailableBytes (Results 1 – 17 of 17) sorted by relevance

/external/lzma/CS/7zip/Compress/LZ/
DIMatchFinder.cs14 UInt32 GetNumAvailableBytes(); in GetNumAvailableBytes() method
DLzBinTree.cs77 public new UInt32 GetNumAvailableBytes() { return base.GetNumAvailableBytes(); } in GetNumAvailableBytes() method in SevenZip.Compression.LZ.BinTree
DLzInWindow.cs122 public UInt32 GetNumAvailableBytes() { return _streamPos - _pos; } in GetNumAvailableBytes() method in SevenZip.Compression.LZ.InWindow
/external/lzma/Java/SevenZip/Compression/LZ/
DInWindow.java122 public int GetNumAvailableBytes() { return _streamPos - _pos; } in GetNumAvailableBytes() method in InWindow
/external/lzma/C/
DLzFind.h97 Mf_GetNumAvailableBytes_Func GetNumAvailableBytes; member
DLzmaEnc.c819 p->numAvail = p->matchFinder.GetNumAvailableBytes(p->matchFinderObj); in ReadMatchDistances()
1753 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0) in LzmaEnc_CodeOneBlock()
1764 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) != 0) in LzmaEnc_CodeOneBlock()
1875 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0) in LzmaEnc_CodeOneBlock()
2111 return p->matchFinder.GetNumAvailableBytes(p->matchFinderObj); in LzmaEnc_GetNumAvailableBytes()
DLzFind.c739 vTable->GetNumAvailableBytes = (Mf_GetNumAvailableBytes_Func)MatchFinder_GetNumAvailableBytes; in MatchFinder_CreateVTable()
DLzFindMt.c762 vTable->GetNumAvailableBytes = (Mf_GetNumAvailableBytes_Func)MatchFinderMt_GetNumAvailableBytes;
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
DLzFind.h98 Mf_GetNumAvailableBytes_Func GetNumAvailableBytes; member
DLzmaEnc.c820 p->numAvail = p->matchFinder.GetNumAvailableBytes(p->matchFinderObj); in ReadMatchDistances()
1754 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0) in LzmaEnc_CodeOneBlock()
1765 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) != 0) in LzmaEnc_CodeOneBlock()
1876 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0) in LzmaEnc_CodeOneBlock()
2112 return p->matchFinder.GetNumAvailableBytes(p->matchFinderObj); in LzmaEnc_GetNumAvailableBytes()
DLzFind.c740 vTable->GetNumAvailableBytes = (Mf_GetNumAvailableBytes_Func)MatchFinder_GetNumAvailableBytes; in MatchFinder_CreateVTable()
/external/chromium_org/third_party/lzma_sdk/
DLzFind.h97 Mf_GetNumAvailableBytes_Func GetNumAvailableBytes; member
DLzmaEnc.c819 p->numAvail = p->matchFinder.GetNumAvailableBytes(p->matchFinderObj); in ReadMatchDistances()
1753 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0) in LzmaEnc_CodeOneBlock()
1764 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) != 0) in LzmaEnc_CodeOneBlock()
1875 if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0) in LzmaEnc_CodeOneBlock()
2111 return p->matchFinder.GetNumAvailableBytes(p->matchFinderObj); in LzmaEnc_GetNumAvailableBytes()
DLzFind.c739 vTable->GetNumAvailableBytes = (Mf_GetNumAvailableBytes_Func)MatchFinder_GetNumAvailableBytes; in MatchFinder_CreateVTable()
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java562 int numAvailableBytes = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum()
839 int numAvailableBytesFull = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum()
1085 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1101 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1213 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs562 UInt32 numAvailableBytes = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum()
839 UInt32 numAvailableBytesFull = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum()
1087 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1103 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1215 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
/external/chromium_org/third_party/brotli/src/
Dots-lzma.patch2872 + vTable->GetNumAvailableBytes = (Mf_GetNumAvailableBytes_Func)MatchFinder_GetNumAvailableBytes;
3724 + p->numAvail = p->matchFinder.GetNumAvailableBytes(p->matchFinderObj);
4658 + if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0)
4669 + if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) != 0)
4780 + if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0)
5016 + return p->matchFinder.GetNumAvailableBytes(p->matchFinderObj);
5476 + Mf_GetNumAvailableBytes_Func GetNumAvailableBytes;