代码搜索:Block

找到约 10,000 项符合「Block」的源代码

代码结果 10,000
www.eeworm.com/read/309215/13678925

c block.c

#include "tdestr.h" #include "common.h" #include "tdefunc.h" #include "define.h" int mark_block( WINDOW *window ) { int type; int num; long lnum; register file_infos *file; /*
www.eeworm.com/read/308191/13706198

c block.c

/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE
www.eeworm.com/read/308043/13710692

h block.h

/*! ************************************************************************ * \file block.h * * \brief * definitions for block decoding functions * * \author * Inge Lille-Langoy
www.eeworm.com/read/308043/13710733

c block.c

/*! *********************************************************************** * \file * block.c * * \brief * Block functions * * \author * Main contributors (see co
www.eeworm.com/read/308043/13710764

h block.h

/*! ************************************************************************ * \file block.h * * \brief * constant arrays for single block processing * * \author * Inge Lille-
www.eeworm.com/read/308043/13710820

c block.c

/*! ************************************************************************************* * \file block.c * * \brief * Process one block * * \author * Main contributors (see co
www.eeworm.com/read/307680/13717398

h block.h

/* block.h */ #ifndef _BLOCK_H #define _BLOCK_H 0 #include "disk.h" int get_blk(FILE *fp); int free_blk(FILE *fp, int blk_no); #endif /* _BLOCK_H */
www.eeworm.com/read/307680/13717401

c block.c

/* block.c */ #include "block.h" /* return: block numbers, and return -1 if free blocks is nil */ int get_blk(FILE *fp) { struct fs_super super; fseek( fp, sizeof(struct fs_boot),
www.eeworm.com/read/307658/13717872

v block.v

module block(c,b,a,clk); output c,b; input clk,a; reg c,b; always @(posedge clk) begin b=a; c=b; end endmodule
www.eeworm.com/read/306749/13738803

v block.v

module block(c,b,a,clk); output c,b; input clk,a; reg c,b; always @(posedge clk) begin b=a; c=b; end endmodule