代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/428147/8889870
c encode.c
/*
* encode.c
*
* CCITT ADPCM encoder
*
* Usage : encode [-3|4|5] [-a|u|l] < infile > outfile
*/
#include
#include
#include "g72x.h"
#include "pcm.h"
FILE *pInF
www.eeworm.com/read/284781/8899233
m encode.m
function cC=encode(C)
%初始变量
zeroseq=0;
zerocount=0;
j=1;
compC=[];
for m=1:length(C)
if (C(m)==0)&(zeroseq==0)
compC=[compC C(m)];
j=j+1;
zeroseq=1;
ze
www.eeworm.com/read/428036/8903281
c encode.c
/*$Source: /usr/home/dhesi/zoo/RCS/encode.c,v $*/
/*$Id: encode.c,v 1.41 91/07/09 01:39:47 dhesi Exp $*/
/*
Adapted from "ar" archiver written by Haruhiko Okumura.
*/
#include "options.h"
#i
www.eeworm.com/read/427960/8908465
cpp encode.cpp
/*
* Program to encode text using RSA public key.
*
* Note that an exponent of 3 must be used with extreme care!
*
* For example:-
* If the same message m is encrypted under 3 or m
www.eeworm.com/read/383950/8909197
c encode.c
/* ENCODE.C - Encode message blocks. */
/* Copyright (c) 2000, 2001 by Radford M. Neal
*
* Permission is granted for anyone to copy, use, or modify this program
* for purposes of research or edu
www.eeworm.com/read/383944/8909492
cpp encode.cpp
#include "LDPC_head.h"
#include
code *encode(struct matrix_bit *matrix, unsigned int *message)
{
code *code1;
unsigned int i;
unsigned int j;
unsigned int k;
code1=(stru
www.eeworm.com/read/427960/8909801
c encode.c
/*
* Program to encode text using RSA public key.
*
* *** For Demonstration use only *****
*
* Copyright (c) 1988-1997 Shamus Software Ltd.
*/
#include
#include "miracl
www.eeworm.com/read/186304/8946036
v encode.v
/*****************************************/
/** 8bit RISC MCU desing **/
/** encode module **/
/** BY yuzhijie **/
/** 2006.10.2
www.eeworm.com/read/284207/8954038
m encode.m
function cC=encode(C)
%初始变量
zeroseq=0;
zerocount=0;
j=1;
compC=[];
for m=1:length(C)
if (C(m)==0)&(zeroseq==0)
compC=[compC C(m)];
j=j+1;
zeroseq=1;
ze
www.eeworm.com/read/427229/8960301