代码搜索:Local

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

代码结果 10,000
www.eeworm.com/read/176251/9510641

bas pen.bas

#!/usr/local/bin/sbrun -g ' pen print "Use MemoPad key to exit" pen on while pen(0)=0:wend pset pen(4),pen(5) while 1 if pen(0) line pen(4),pen(5) fi wend pen off
www.eeworm.com/read/176251/9510648

bas var_test.bas

#!/usr/local/bin/sbrun -g ' Test vint = 1 vnum = 0.2 vadd = vint + vnum vstr = "Hello" vstradd = vstr + " " + vstr vxadd=1+vstr print "vint=";vint, "vnum=";vnum, "vadd=";vadd print "vstr=";vstr, "vst
www.eeworm.com/read/372371/9512267

h tunables.h

#ifndef VSF_TUNABLES_H #define VSF_TUNABLES_H /* Configurable preferences */ /* Booleans */ extern int tunable_anonymous_enable; /* Allow anon logins */ extern int tunable_local_enable;
www.eeworm.com/read/372070/9523225

h arch.h

/** ################################################################### ** ** (c) Freescale Semiconductor ** 2004 All Rights Reserved ** ** ** (c) Copyright UNIS, spol. s r.o. 1997-2
www.eeworm.com/read/371958/9528689

asm cmdline.asm

.PB main .PV buffer -256 #allocate local storage PUSHQ $FP MOV $FP,$SP LQI $R7,256 SUB $SP,$SP,$R7 #get the number of arguments LQI $R1,0 INT 5 MOV $R20,$R2 LQI $R1,20 INT 0 LQI
www.eeworm.com/read/371958/9528847

asm cmdline.asm

.PB main .PV buffer -256 #allocate local storage PUSHQ $FP MOV $FP,$SP LQI $R7,256 SUB $SP,$SP,$R7 #get the number of arguments LQI $R1,0 INT 5 MOV $R20,$R2 LQI $R1,20 INT 0 LQI
www.eeworm.com/read/371950/9529454

cpp main.cpp

/************************************************************************** 54. 求N个字符串的最长公共子串,N<=20,字符串长度不超过255。 例如:N=3,由键盘依次输入三个字符串为 What is local bus ? Name some local buses.
www.eeworm.com/read/371578/9547878

inc debug.inc

;----------------------------------------------------------------------------- ; ; Include file for VKDEBUG v1.1, September 2002. ; ;--------------------------------------------------
www.eeworm.com/read/175226/9555239

cpp list0503.cpp

// Listing 5.3 - demonstrates variables // scoped within a block #include void myFunc(); int main() { int x = 5; std::cout
www.eeworm.com/read/175135/9558455

cpp external.cpp

// external.cpp -- external variables #include using namespace std; // external variable double warming = 0.3; // function prototypes void update(double dt); void local(); int m