代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/38039/1095473
mnu loop_fill.mnu
LOOP#FILL
# remove the # sign and enter foreign help string in this line
Fillet
Create a fillet corner motion
# remove the # sign and enter foreign help string in this line
Loop
Create a loop corner
www.eeworm.com/read/38039/1099349
mnu loop_fill.mnu
LOOP#FILL 吏蛾à
# remove the # sign and enter foreign help string in this line
Fillet 蛾à
Create a fillet corner motion
www.eeworm.com/read/483857/1274661
v costas_loop.v
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 09:54:01 08/07/2007
// Design Name:
/
www.eeworm.com/read/473760/1396892
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
www.eeworm.com/read/473760/1396893
txt loop2.txt
{ 循环不变式外提优化的测试程序,有过程调用情形}
program pp
var integer i,n,m,j,k;
array [1..10] of integer a;
procedure q();
begin
write(100)
end
begin
i:=0;
j:=0;
k:=0;
while k
www.eeworm.com/read/473760/1396895
txt loop3.txt
{ 循环不变式外提优化的测试程序1,测试地址加外提}
program pp
var integer i,n,m,j,k,r;
array [1..10] of integer a;
begin
i:=0;
j:=0;
k:=0;
while k
www.eeworm.com/read/472233/1416706
js loop-sum.js
var count = 6000000;
var sum = 0;
for (var i = 0; i < count; i++) {
sum = i + count;
}
www.eeworm.com/read/470720/1444350
c loop1.c
// Verify that loop optimization takes into account the exception edge
// and does not increment I before the call.
// { dg-do run }
// { dg-options "-O2" }
extern "C" void abort();
static void bar(c
www.eeworm.com/read/470720/1445225
c loop2.c
// Build don't link:
// Special g++ Options: -O
class foo {
public:
operator const char*() const { return a; }
char *a;
};
class bar {
public:
~bar();
void operator++(int);
bool b() const;