代码搜索:pcode

找到约 332 项符合「pcode」的源代码

代码结果 332
www.eeworm.com/read/259580/11781014

cpp compress.cpp

// LZW compression #include #include #include "hashChains.h" using namespace std; // constants const DIVISOR = 4099, // hash function DIVISOR MAX_CODES =
www.eeworm.com/read/258097/11884848

c languageutil.c

#include "user_init.h" #include "LanguageUtil.h" #ifdef SUPPORT_FONT_UTIL #ifndef DVDRELEASE #include "global.h" #define FONT_UTIL_DBG 1 #endif #ifdef FONT_UTIL_DBG //#define F
www.eeworm.com/read/154189/11984135

m 4-8.m

pcode LJD; %%生成p码文件,加快执行速度 pcode CHZH; pcode HJ; pcode deBoor; x0=[0 2 2 4 6 8 10]; %%赋初始值 y0=[0 2 -1 0 -2 -3 0]; z0=[0 -2 -1 0 1 2 1]; k=3; n0=length(x0);
www.eeworm.com/read/154189/11984154

m 4-6.m

pcode LJD2; %%生成p码文件,加快执行速度 pcode JCHZH; pcode Ji2; pcode HJ; pcode deBoor; x0=[0 2 2 4 6 8 10]; %%赋初始值 y0=[0 2 -1 0 -2 -3 0]; z0=[0 -2 -1 0 1 2 1]; n0=length(x0)-1
www.eeworm.com/read/154186/11984184

m 4-7.m

pcode HJ; %%生成p码文件,加快执行速度 pcode deBoor; x=[0 2 2 4 6 8 10]; %%赋初始值 y=[0 2 -1 0 -2 -3 0]; z=[0 -2 -1 0 1 2 1]; k=3; n=length(x); u=HJ(n,k,x,y,z); %%
www.eeworm.com/read/195003/8179589

h uigb14.h

#ifndef _GUI_GB14_H_ #define _GUI_GB14_H_ #include #include #include #include void guiShowGB14Word(HNDL handle, const char *pCode,int x,int
www.eeworm.com/read/393924/8255201

al math.al

.CSEG ;PCODE: $00000000 VOL: 0 ;PCODE: $00000001 VOL: 0 ld r26,y+ ;PCODE: $00000002 VOL: 0 ld r30,y+ ;PCODE: $00000003 VOL: 0 cp r26,r30 ;PCODE: $00000004 VOL: 0 brlt
www.eeworm.com/read/367645/9738946

m psearch.m

function psearch(sube1) global frames pdmin pdmax pcbsize pcode pgain TRUE FALSE global shiftrange szsubf sub_cnt bpb intp pdlyindx pdelay frange prev del_intv % For the first sub-frame, which
www.eeworm.com/read/248192/12590063

c lzwhuff.c

#include #include #include #include #include #include #define BOOL int #define MAX_CODES 4096 #define TRUE 1 #define FALSE 0
www.eeworm.com/read/300703/13898636

cpp haffman_code.cpp

#include "string.h" #include "iomanip.h" #include "math.h" #include"iostream.h" #define MAX_NODE 128 #define MAX_WEIGHT 1000 typedef struct { char ch; int weight; //出现次数 float fr