changeset 13904 | 99b265e0d1d0 |
parent 13903 | 5f819b90d479 |
child 13905 | b172a5d40eee |
13903:5f819b90d479 | 13904:99b265e0d1d0 |
---|---|
1 // IA64.cpp |
|
2 |
|
3 #include "StdAfx.h" |
|
4 #include "IA64.h" |
|
5 |
|
6 extern "C" |
|
7 { |
|
8 #include "../../../../C/Compress/Branch/BranchIA64.h" |
|
9 } |
|
10 |
|
11 UInt32 CBC_IA64_Encoder::SubFilter(Byte *data, UInt32 size) |
|
12 { |
|
13 return ::IA64_Convert(data, size, _bufferPos, 1); |
|
14 } |
|
15 |
|
16 UInt32 CBC_IA64_Decoder::SubFilter(Byte *data, UInt32 size) |
|
17 { |
|
18 return ::IA64_Convert(data, size, _bufferPos, 0); |
|
19 } |