代码搜索:COMPRESS
找到约 7,043 项符合「COMPRESS」的源代码
代码结果 7,043
www.eeworm.com/read/408971/11363257
vhd compress.vhd
-- -----------------------------------------------------------
--
-- Additional material to the book
-- Modeling and Simulation for RF System Design
--
--
-- THIS MODEL IS LICENSED TO YOU "AS IT IS"
www.eeworm.com/read/263177/11372717
c compress.c
// 本程序采用 Lempel-Ziv 压缩算法, 代码是根据
// Markus Franz Xaver Johannes Oberhumer 的 LZO 改写
// 而成, 所以算法上的问题请不要问我, 如果你对这个压缩算法有兴趣,
// 请拜访 LZO 的主页
// http://wildsau.idv.uni-linz.ac.at/mfx/lzo.html
/
www.eeworm.com/read/262693/11395175
dpr compress.dpr
program Compress;
uses
Forms,
UCompress in 'UCompress.pas' {frmCompress},
UCAniIcon in 'UCAniIcon.pas';
{$R *.res}
var Param:String;
i:Integer;
begin
Param:='';
for i:=1 to
www.eeworm.com/read/262693/11395177
res compress.res
www.eeworm.com/read/262693/11395201
dpr compress.dpr
program Compress;
uses
Forms,
UCompress in 'UCompress.pas' {frmCompress},
UCAniIcon in 'UCAniIcon.pas';
{$R *.res}
var Param:String;
i:Integer;
begin
Param:='';
for I := 1
www.eeworm.com/read/262693/11395206
res compress.res
www.eeworm.com/read/262693/11395211
dproj compress.dproj
{9b2101f3-d6d1-4ee6-b353-415c6648cb77}
Compress.dpr
www.eeworm.com/read/262693/11395238
exe compress.exe
www.eeworm.com/read/404706/11479829
c compress.c
/*
* Compress - data compression program
*/
#define min(a,b) ((a>b) ? b : a)
/* MAXPATHLEN - maximum length of a pathname we allow */
#define MAXPATHLEN 1024
/*
* machine variants whic
www.eeworm.com/read/404392/11485782