代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/225994/14505272

h serverloop.h

/* $OpenBSD: serverloop.h,v 1.5 2001/06/27 02:12:53 markus Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland * A
www.eeworm.com/read/125223/14505639

c ex3.c

#include int counter0; int counter1; void job0 (void) _task_ 0 { os_create (1); /* mark task 1 as ready */ while (1) {
www.eeworm.com/read/124992/14520990

s ebfill16_opt.s

; ; Copyright (c) Microsoft Corporation. All rights reserved. ; ; ; Use of this source code is subject to the terms of the Microsoft end-user ; license agreement (EULA) under which you licensed
www.eeworm.com/read/225702/14523370

txt 4.txt

facet normal 9.107564e-001 5.688291e-002 4.090074e-001 outer loop vertex 8.610423e+002 2.688546e+003 1.143482e+003 vertex 8.571151e+002 2.696059e+003 1.151161e+003
www.eeworm.com/read/225702/14523388

txt 5.txt

facet normal -1.419153e-001 9.732544e-001 1.806538e-001 outer loop vertex 1.708812e+002 1.995170e+003 1.340019e+003 vertex 2.235473e+002 2.034725e+003 1.168293e+003
www.eeworm.com/read/225702/14523415

txt 3.txt

facet normal -9.895355e-001 -1.442894e-001 2.220446e-014 outer loop vertex 4.851937e+002 2.888992e+003 9.140260e+002 vertex 4.779200e+002 2.938875e+003 8.832664e+002
www.eeworm.com/read/225592/14532035

c c_main.c

#include #define uchar unsigned char /* this function define in ASM */ alien uchar get_val(uchar i); code uchar fchar[] = {1,2,3,4,5,6,7,8,9,10,11}; main() { uchar i,j; int
www.eeworm.com/read/124862/14532651

c minigame.c

#include "common.h" #include "gfxex.h" void dstreet(){ InitializeSprites(); const u16 u[10]={2,4,3,2,6,3,3,5,3,4,5,4};// attribute0 for upper ones is 0x200f const u16 d[6]={3}; // attribute
www.eeworm.com/read/124862/14532676

c func.c

#define __debug__ #include "demo.h" #include "common.h" #include "gfx\menu.h" //#include "gfx.h" #include "gfx\bg\nerv.h" #include "gfx\bg\1.h" #include "gfx\pal.h" #include "gfx\bg\title.h"
www.eeworm.com/read/225119/14555375

asm ex5.asm

MOV A,#00H LOOP: CALL INCA JMP LOOP INCA: ADD A,#01 RET END