代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/249566/12487960

v usb_loop.v

`define Tgate 1 `timescale 1ns/10ps module TestUSB( RESET_,USB_WR_,USB_AS_,USB_DS_,USB_INT_,USB_D,SDRAM_CS_,FLASH_CE_); input RESET_; output USB_INT_; input USB_WR_,USB_AS_,USB_DS_; i
www.eeworm.com/read/335362/12534686

c loop.poll.c

#include "call.h" #include #define BUFFSIZE 512 /* * Copy everything from stdin to "remfd", * and everything from "remfd" to stdout. */ void loop(int remfd) { int bol, n, nread; cha
www.eeworm.com/read/335362/12535247

c loop.select.c

#include "opend.h" #include #include void loop(void) { int i, n, maxfd, maxi, listenfd, clifd, nread; char buf[MAXLINE]; uid_t uid; fd_set rset, allset; FD_ZERO(&al
www.eeworm.com/read/335362/12535249

c loop.poll.c

#include "opend.h" #include #if !defined(BSD) && !defined(MACOS) #include #endif void loop(void) { int i, maxi, listenfd, clifd, nread; char buf[MAXLINE]; uid_t uid; s
www.eeworm.com/read/335286/12541192

v loop1.v

module loop1; integer i; initial for(i=0;i
www.eeworm.com/read/335286/12541215

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/335286/12541217

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/147330/12564228

exe tcp_loop.exe

www.eeworm.com/read/334200/12618037

c net_loop.c

/* Copyright (C) 1996-1997 Id Software, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free So
www.eeworm.com/read/146694/12618111

cpp loop_con.cpp

//loop_con.cpp #include #include void main() { int n,sum=0; for (;;) //永为true { cout > n; if (n==0) break; //当输入0时退出for(;;)