代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/264377/11318105
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/264377/11318107
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/407295/11422480
m kf_loop.m
%KF_LOOP Performs the prediction and update steps of the Kalman filter
% for a set of measurements.
%
% Syntax:
% [MM,PP] = KF_LOOP(X,P,H,R,Y,A,Q)
%
% In:
% X - Nx1 initial estimate f
www.eeworm.com/read/404859/11476981
bmp loop1.bmp
www.eeworm.com/read/403120/11522142
m costas_loop.m
function [y]=costas_loop(S_evolope,gama,beta,pn_code_i,pn_code_q)
%======================================================
%
www.eeworm.com/read/401363/11558606
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/400815/11568185
h loop_queue.h
#ifndef _LOOP_QUEUE_H_
#define _LOOP_QUEUE_H_
#include "typedefine.h"
#include "constant.h"
typedef ElemType QUEUE_ELEMENT_TYPE;
typedef struct LOOP_QUEUE{
QUEUE_ELEMENT_TYPE data[MAX_QUE
www.eeworm.com/read/400815/11568195
c loop_queue.c
#include "loop_queue.h"
#include
#include
PLOOP_QUEUE CreateLQueue()
{
PLOOP_QUEUE queue = (PLOOP_QUEUE)malloc(sizeof(LOOP_QUEUE));
if(NULL == queue)
{
printf("me