代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/129770/5970400

dat asslandat103.dat

LOOPE/LOOPZ 指令格式: LOOPE Label 或 LOOPZ Label 指令功能: 当ZF=1或比较结果相等时,CX/ECX减 1,当CX/ECX不等于0时,跳转到标号Label指定的目的操作数,否则执行下一条指令. 指令说明: 所有LOOP指令跳转到的指令地址应位于本指令地址范围的-128~127字节之内.
www.eeworm.com/read/129770/5970416

dat asslandat104.dat

LOOPNE/LOOPNZ 指令格式: LOOPNE Label 或 LOOPNZ Label 指令功能: 当ZF=0或比较结果相等时,CX/ECX减 1,当CX/ECX不等于0时,跳转到标号Label指定的目的操作数,否则执行下一条指令. 指令说明: 所有LOOP指令跳转到的指令地址应位于本指令地址范围的-128~127字节之内.
www.eeworm.com/read/128531/5985066

c idle.c

/* * Idle daemon for PowerPC. Idle daemon will handle any action * that needs to be taken when the system becomes idle. * * Originally Written by Cort Dougan (cort@cs.nmt.edu) * * iSeries suppo
www.eeworm.com/read/128531/5985842

s copy_page.s

/* Written 2003 by Andi Kleen, based on a kernel by Evandro Menezes */ #include /* Don't use streaming store because it's better when the target ends up in cache. */ /* Co
www.eeworm.com/read/127781/5996961

s clear_page.s

#include /* * Zero a page. * rdi page */ ENTRY(clear_page) xorl %eax,%eax movl $4096/128,%ecx movl $128,%edx loop: #define PUT(x) movq %rax,x*8(%rdi) PUT(0) PUT
www.eeworm.com/read/126765/6011863

c dhcpcshow.c

/* dhcpcShow.c - DHCP run-time client information display routines */ /* Copyright 1984 - 2001 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* modification history -------------------- 01
www.eeworm.com/read/125688/6023896

s memset.s

/* $NetBSD: memset.S,v 1.1 1997/10/06 00:38:33 mark Exp $ */ /* * Copyright (c) 1995 Mark Brinicombe. * All rights reserved. * * Redistribution and use in source and binary forms, with or without
www.eeworm.com/read/125532/6028017

java reflectiontest.java

package pl.test; import java.lang.reflect.*; /** * * @author ArtemRd * @version */ public class ReflectionTest { private static final int LOOP_SIZE = 10000000; /** Creates n
www.eeworm.com/read/125133/6032816

idel random.idel

\ Minimal Standard Random Number Generator \ Park & Miller, CACM 31(10), Oct 1988, 32 bit integer version. \ better constants, as proposed by Park. \ Adapted from the Scheme version by Ozan Yigit modi
www.eeworm.com/read/125133/6032842

idel fact.idel

def 0 1 main 5 fact u. '\n' emit 0 ; #include "udot.idel" def 1 1 fact 1 fact-loop ; def 2 1 fact-loop { n p -- n 0 = if p else n 1 - p n * fact-l