Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IA64.cpp « Branch « Compress « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d57916c874dc9f6baf51900c9fc74c819152698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// IA64.cpp

#include "StdAfx.h"
#include "IA64.h"

#include "../../../../C/Compress/Branch/BranchIA64.c"

UInt32 CBC_IA64_Encoder::SubFilter(Byte *data, UInt32 size)
{
  return ::IA64_Convert(data, size, _bufferPos, 1);
}

UInt32 CBC_IA64_Decoder::SubFilter(Byte *data, UInt32 size)
{
  return ::IA64_Convert(data, size, _bufferPos, 0);
}