代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/237003/13983579
cpp loop22.cpp
// Generated code (makeloops.cpp) -- do not edit.
// In KAI C++ 3.2, restrict causes problems for copy propagation.
// Temporary fix: disable restrict
#define BZ_DISABLE_RESTRICT
#include
www.eeworm.com/read/237003/13983580
cpp loop21.cpp
// Generated code (makeloops.cpp) -- do not edit.
// In KAI C++ 3.2, restrict causes problems for copy propagation.
// Temporary fix: disable restrict
#define BZ_DISABLE_RESTRICT
#include
www.eeworm.com/read/237003/13983598
cpp loop16.cpp
// Generated code (makeloops.cpp) -- do not edit.
// In KAI C++ 3.2, restrict causes problems for copy propagation.
// Temporary fix: disable restrict
#define BZ_DISABLE_RESTRICT
#include
www.eeworm.com/read/237003/13983632
cpp loop14.cpp
// Generated code (makeloops.cpp) -- do not edit.
// In KAI C++ 3.2, restrict causes problems for copy propagation.
// Temporary fix: disable restrict
#define BZ_DISABLE_RESTRICT
#include
www.eeworm.com/read/237003/13983985
cpp loop1.cpp
/*
* This benchmark causes some versions of gcc to crash.
*/
#include
#include
#include
#include
BZ_USING_NAMESPACE(blitz
www.eeworm.com/read/133753/14026847
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(;;)
www.eeworm.com/read/132791/14072852
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/205100/15326515
txt loop1.txt
{ 循环不变式外提优化的测试程序1,测试外提}
program pp
var integer i,n,m,j,k;
array [1..10] of integer a;
begin
i:=0;
j:=0;
k:=0;
while k