代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/277562/4155143
c sip_transport_loop.c
/* $Id: sip_transport_loop.c 1317 2007-05-29 11:51:45Z bennylp $ */
/*
* Copyright (C) 2003-2007 Benny Prijono
*
* This program is free software; you can redistribute it an
www.eeworm.com/read/273525/4208900
ado _loop_jknife_fw.ado
*! version 1.0.1 03jan2005
program _loop_jknife_fw
version 9
syntax namelist(min=3) , ///
command(string asis) ///
express(string asis) ///
cmd1(string asis) ///
wvar(varname)
www.eeworm.com/read/273525/4209258
ado _loop_jknife2.ado
*! version 1.0.4 04jan2005
program _loop_jknife2
version 9
syntax namelist(min=6) , ///
command(string asis) ///
express(string asis) ///
cmd1(string asis) ///
wvar(varname) //
www.eeworm.com/read/273525/4209266
ado _loop_jknife_iw.ado
*! version 1.0.5 04jan2005
program _loop_jknife_iw
version 9
syntax namelist(min=6) , ///
command(string asis) ///
express(string asis) ///
cmd1(string asis) ///
wvar(varname)
www.eeworm.com/read/440906/1780261
c loop-3b.c
#include
int n = 0;
g (i)
{
n++;
}
f (m)
{
int i;
i = m;
do
{
g (i * 4);
i -= INT_MAX / 8;
}
while (i > 0);
}
main ()
{
f (INT_MAX/8*4);
if (n != 4)
www.eeworm.com/read/440906/1780379
c loop-3c.c
#include
void * a[255];
f (m)
{
int i;
int sh = 0x100;
i = m;
do
{
a[sh >>= 1] = ((unsigned)i
www.eeworm.com/read/440906/1780401
c loop-2d.c
int a[2];
f (b)
{
unsigned int i;
int *p;
for (p = &a[b], i = b; --i < ~0; )
*--p = i * 3 + (int)a;
}
main ()
{
a[0] = a[1] = 0;
f (2);
if (a[0] != (int)a || a[1] != (int)a + 3)
www.eeworm.com/read/440906/1780572
c loop-2c.c
int a[2];
__inline__ f (b, o)
{
unsigned int i;
int *p;
for (p = &a[b], i = b; --i < ~0; )
*--p = i * 3 + o;
}
g(int b)
{
f (b, (int)a);
}
main ()
{
a[0] = a[1] = 0;
g (2);
if (a[
www.eeworm.com/read/440906/1780598
c loop-2f.c
#include
#ifdef __unix__ /* ??? Is that good enough? */
#include
#include
#include
#include
#ifndef MAP_ANON
#ifdef MAP_ANONYMOUS
#define