代码搜索:Block

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

代码结果 10,000
www.eeworm.com/read/371792/9536271

wav block.wav

www.eeworm.com/read/175483/9545103

c block.c

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

cpp block.cpp

// block.cpp -- use a block statement #include int main() { using namespace std; cout
www.eeworm.com/read/366448/9813335

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/366250/9822762

h block.h

/********************************************************************** * Software Copyright Licensing Disclaimer * * This software module was originally developed by contributors to the * cou
www.eeworm.com/read/366250/9822859

c block.c

/********************************************************************** * Software Copyright Licensing Disclaimer * * This software module was originally developed by contributors to the * cou
www.eeworm.com/read/366250/9822933

h block.h

/********************************************************************** * Software Copyright Licensing Disclaimer * * This software module was originally developed by contributors to the * cou
www.eeworm.com/read/366250/9823033

c block.c

/********************************************************************** * Software Copyright Licensing Disclaimer * * This software module was originally developed by contributors to the * cou
www.eeworm.com/read/365783/9847917

c block.c

#include #include #include int main() { char block[1024]; int in, out; int nread; in = open("file.in", O_RDONLY); out = open("file.out", O_WR
www.eeworm.com/read/169221/9874976

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