代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/156614/11788474
c compr_rtime.c
/*
* JFFS2 -- Journalling Flash File System, Version 2.
*
* Copyright (C) 2001 Red Hat, Inc.
*
* Created by Arjan van de Ven
*
* The original JFFS, from which the design for
www.eeworm.com/read/156389/11806981
asm regsave.asm
.title "macro"
.sect "macro"
reg_restore .macro
popm ar7
popm ar6
popm ar5
popm ar4
popm ar3
popm ar2
popm ar1
popm ar0
POPM PMST ;Restore PMST register
POPM RSA ;Restore
www.eeworm.com/read/156387/11807105
asm regsave.asm
.title "macro"
.sect "macro"
reg_restore .macro
popm ar7
popm ar6
popm ar5
popm ar4
popm ar3
popm ar2
popm ar1
popm ar0
POPM PMST ;Restore PMST register
POPM RSA ;Restore
www.eeworm.com/read/345183/11829834
lst fmq.lst
A51 MACRO ASSEMBLER FMQ 05/28/2005 21:29:23 PAGE 1
MACRO ASSEMBLER A51 V6.12
OBJECT MODULE PLACED IN .\FMQ.OBJ
ASSEMBLER IN
www.eeworm.com/read/155592/11861909
tny sample.tny
{ Sample program
in TINY language -
computes factorial
}
read x; { input an integer }
if 0 < x then { don't compute if x
www.eeworm.com/read/342573/12011449
txt s.txt
read u;
read v; { input two integers }
if v=0 then v:=0 { do nothing }
else
repeat
temp := v;
v := u - u / v * v;
u := temp
until v=0.1
end ;
write u {output gcd of origina