代码搜索:compressor
找到约 1,378 项符合「compressor」的源代码
代码结果 1,378
www.eeworm.com/read/244146/12883207
cpp compressor.cpp
#include "Compressor.h"
struct ltstr {
bool operator() (const size_t h1, const size_t h2) const {
return (h1 < h2);
}
};
void Compressor::doTemporalCompression() {
//cou
www.eeworm.com/read/137298/5826069
dpr compressor.dpr
program Compressor;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
www.eeworm.com/read/137298/5826083
dpr compressor.dpr
program Compressor;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
www.eeworm.com/read/136989/5827699
h compressor.h
// Compressor.h,v 1.6 2003/08/19 15:08:26 schmidt Exp
#ifndef COMPRESSOR_H
#define COMPRESSOR_H
#include "Protocol_Task.h"
#include "CompressorBase.h"
class Compressor : public Protocol_T
www.eeworm.com/read/136989/5827713
cpp compressor.cpp
// Compressor.cpp,v 1.8 2003/08/19 15:08:26 schmidt Exp
#include "ZlibCompressor.h"
#include "Compressor.h"
#include "ace/SOCK_Stream.h"
#include
Compressor::Compressor(AlgorithmCo
www.eeworm.com/read/132821/5909222
el compressor.el
(progn
(load "../l1")
(load "../h1")
(load "components")
)
;(setq l (comp_4_2 '((a1 b1 ) (a2 b2 c2 d2 ))))
;(print-list l)
(defun comp_4_2 (l)
(let ((out '())
(comp '())
(lastco
www.eeworm.com/read/117567/6101440
java compressor.java
package ranab.jar;
import java.io.*;
import ranab.util.*;
/**
* This is tha abstract base class of all the file compressors.
*
* @author Rana Bhattachary
www.eeworm.com/read/100926/6264071
h compressor.h
// Compressor.h,v 1.5 1999/02/14 19:29:09 jcej Exp
#ifndef COMPRESSOR_H
#define COMPRESSOR_h
#include "Protocol_Task.h"
/* A reallly dumb compression object. (It actually adds 3 bytes to
www.eeworm.com/read/100926/6264083
cpp compressor.cpp
// Compressor.cpp,v 1.7 2000/04/09 18:24:24 jcej Exp
#include "Compressor.h"
#include "ace/SOCK_Stream.h"
Compressor::Compressor( void )
: Protocol_Task()
{
;
}
Compressor: