代码搜索:Block

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

代码结果 10,000
www.eeworm.com/read/374865/9381052

c block.c

/* ***************************************************************************** * COPYRIGHT AND WARRANTY INFORMATION * * Copyright 2003, Advanced Audio Video Coding Standard, Part II * * DISCLA
www.eeworm.com/read/374865/9381094

h block.h

/* ***************************************************************************** * COPYRIGHT AND WARRANTY INFORMATION * * Copyright 2003, Advanced Audio Video Coding Standard, Part II * * DISCLA
www.eeworm.com/read/374865/9381160

c block.c

/* ***************************************************************************** * COPYRIGHT AND WARRANTY INFORMATION * * Copyright 2003, Advanced Audio Video Coding Standard, Part II * * DISCLA
www.eeworm.com/read/178690/9388489

h block.h

// libTorrent - BitTorrent library // Copyright (C) 2005-2006, Jari Sundell // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public L
www.eeworm.com/read/178690/9388550

cc block.cc

// libTorrent - BitTorrent library // Copyright (C) 2005-2006, Jari Sundell // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public L
www.eeworm.com/read/374228/9415409

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/374116/9420764

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/374116/9420768

c block.c

/* block.c */ #include "block.h" //返回当前在空闲块栈顶的空闲块号 int get_blk(FILE *fp) { struct fs_super super;
www.eeworm.com/read/177609/9444145

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/373250/9467599

m block.m

function sub = block(blocks, block_sizes) % BLOCK Return a vector of subscripts corresponding to the specified blocks. % sub = block(blocks, block_sizes) % % e.g., block([2 5], [2 1 2 1 2]) = [3