Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(816)

Side by Side Diff: third_party/lzma/v4_65/files/C/Bcj2.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /* Bcj2.h -- Converter for x86 code (BCJ2)
2 2008-10-04 : Igor Pavlov : Public domain */
3
4 #ifndef __BCJ2_H
5 #define __BCJ2_H
6
7 #include "Types.h"
8
9 /*
10 Conditions:
11 outSize <= FullOutputSize,
12 where FullOutputSize is full size of output stream of x86_2 filter.
13
14 If buf0 overlaps outBuf, there are two required conditions:
15 1) (buf0 >= outBuf)
16 2) (buf0 + size0 >= outBuf + FullOutputSize).
17
18 Returns:
19 SZ_OK
20 SZ_ERROR_DATA - Data error
21 */
22
23 int Bcj2_Decode(
24 const Byte *buf0, SizeT size0,
25 const Byte *buf1, SizeT size1,
26 const Byte *buf2, SizeT size2,
27 const Byte *buf3, SizeT size3,
28 Byte *outBuf, SizeT outSize);
29
30 #endif
OLDNEW
« no previous file with comments | « third_party/lzma/v4_65/files/C/Archive/7z/makefile.gcc ('k') | third_party/lzma/v4_65/files/C/Bcj2.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698