代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/341225/12098377
pas encode.pas
unit Encode;
interface
function Encrypt(const str: string): string;
function Decrypt(const str: string): string;
implementation
{#### 加密解密}
const
fSeedA = 56789;/// 常量 ,
fS
www.eeworm.com/read/254882/12114266
txt encode.txt
NAME
encode - encode video and/or speech files
SYNOPSIS
encode [options...]
DESCRIPTION
This demo uses the Codec Engine to encode data from peripheral device
drivers to f
www.eeworm.com/read/254882/12114275
cfg encode.cfg
/* ============================================================================
* Copyright (c) Texas Instruments Incorporated 2005
*
* Use of this software is controlled by the terms and con
www.eeworm.com/read/254882/12114322
h encode.h
/*
* encode.h
*
* ============================================================================
* Copyright (c) Texas Instruments Inc 2005
*
* Use of this software is controlled by the terms and
www.eeworm.com/read/152018/12151143
m encode.m
function encode()
% encode an image
% sig--------image signal
% re_sig--------reform image signal--fit to VQ
% siz_word---the size of codeword
% siz_book---the size of codebook
%
www.eeworm.com/read/151841/12171044
f encode.f
******************************************************************
*
* ENCODE Version 54
*
******************************************************************
*
* Quantize LPC parameters for tra
www.eeworm.com/read/151841/12171144
c encode.c
/******************************************************************
*
* ENCODE Version 48
*
******************************************************************
*
* Quantize LPC parameters for tr
www.eeworm.com/read/340078/12182950
m encode.m
function [EncodeData] = encode( SourceData, BakG )
[m k] = size( BakG );
EncodeData(1:k) = SourceData;
for i=1:m
EncodeData(k+i) = mod( BakG(i,:)*SourceData',2 );
end
www.eeworm.com/read/253801/12199273
c encode.c
/*
* encode.c
*
* CCITT ADPCM encoder
*
* Usage : encode [-3|4|5] [-a|u|l] < infile > outfile
*/
#include
#include "g72x.h"
/*
* Pack output codes into bytes and write t
www.eeworm.com/read/151253/12225814
txt encode.txt
-- Hamming Encoder
-- A 4-bit Hamming Code encoder using concurrent assignments.
-- The output vector is connected to the individual parity bits using an aggregate assignment.
-- download from: w