代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/132807/5909378
s em_com.s
.sect .text; .sect .rom; .sect .data; .sect .bss
.define .com
! #bytes in ecx
.sect .text
.com:
mov ebx,esp
add ebx,4
sar ecx,2
1:
not (ebx)
add ebx,4
loop 1b
ret
www.eeworm.com/read/132312/5918287
java screenflowxmldao.java
/*
*/
package org.impact.stars.control.web;
import org.xml.sax.InputSource;
import org.w3c.dom.Element;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import or
www.eeworm.com/read/131315/5945399
sed math.sed
#
# @(#)math.sed 8.1 (Berkeley) 6/6/93
#
# Addition and multiplication in sed.
# ++ for a limited time only do (expr) too!!!
#
# Kevin S Braunsdorf, PUCC UNIX Group, ksb@cc.purdue.edu.
#
# Ex:
# echo
www.eeworm.com/read/130382/5957295
asm bni80386.asm
;;; Assembly primitives for bignum library, 80386 family, 32-bit code.
;;;
;;; $Id: bni80386.asm,v 1.3 1997/09/19 06:20:35 colin Exp $
;;;
;;; Several primitives are included here. Only bniMulAdd
www.eeworm.com/read/130382/5957343
c bni68020.c
/*
* bni68020.c - 32-bit bignum primitives for the 68020+ (0r 683xx) processors.
*
* Written by Colin Plumb
*
* $Id: bni68020.c,v 1.3 1997/05/13 01:18:46 mhw Exp $
*
* This was written f
www.eeworm.com/read/130382/5958011
asm bni80386.asm
;;; Assembly primitives for bignum library, 80386 family, 32-bit code.
;;;
;;; $Id: bni80386.asm,v 1.1 1997/12/14 11:30:22 wprice Exp $
;;;
;;; Several primitives are included here. Only bniMulAd
www.eeworm.com/read/130242/5962505
java temperaturetable.java
class TemperatureTable {
/* The Temperature Conversion Program by J M Bishop Aug 1996
* ---------------------------------- Java 1.1
* updated Apri
www.eeworm.com/read/130122/5964177
java loopable.java
package com.croftsoft.core.util.loop;
/*********************************************************************
* An object capable of implementing some task in a loop.
*
* @
www.eeworm.com/read/129770/5970194
dat codetc1.dat
goto 语句
功能:无条件转向语句
形式:goto 语句标号;
说明:语句标号用标识符表示,它的定名规则与变量名相同,即由字母、数字和下划线组成,其第一个字符必须为字母或下划线。不能用整数来做标号。例如:goto label_1;是合法的,而goto 123;是不合法的。结构化程序设计方法主张限制使用goto语句,因为滥用goto语将使程序流程无规律、可读性差。但也不是绝对 ...
www.eeworm.com/read/129250/5974581
asm bsort.asm
TITLE BubbleSort Procedure (BSort.asm)
; Sort an array of signed integers, using the Bubble
; sort algorithm. The main program is in B_main.asm.
; Last update: 9/10/01
INCLUD