代码搜索:optimize
找到约 6,026 项符合「optimize」的源代码
代码结果 6,026
www.eeworm.com/read/38039/1094452
mnu mfg_info.mnu
MFG#INFO
# remove the # sign and enter foreign help string in this line
NC#Seq#Info
Display NC Sequence info.
# remove the # sign and enter foreign help string in this line
Optimize#Info
Get current
www.eeworm.com/read/38039/1097172
mnu reqlocs.mnu
REQD#LOCS
#
Select
Select location through which all autorouted cables must pass.
#
Optimize
System finds shortest paths with at least one common location for cables.
#
Put#On#Wire
System finds short
www.eeworm.com/read/490329/1202653
bat copycommonsrc.bat
..\..\devtools\bin\perl ..\..\..\bin\makedirhier.pl \ihvtest1\src\common
copy ..\..\common\cstringhash.* \ihvtest1\src\common
copy ..\..\common\optimize.h \ihvtest1\src\common
www.eeworm.com/read/470720/1451453
c 20000922-1.c
extern void doit(int);
void
quick_doit(int x)
{
#ifdef __OPTIMIZE__
if (__builtin_constant_p (x)
&& x != 0)
asm volatile ("%0" : : "i#*X"(x));
else
#endif
doit(x);
}
www.eeworm.com/read/470693/1463399
c 20000922-1.c
extern void doit(int);
void
quick_doit(int x)
{
#ifdef __OPTIMIZE__
if (__builtin_constant_p (x)
&& x != 0)
asm volatile ("%0" : : "i#*X"(x));
else
#endif
doit(x);
}
www.eeworm.com/read/246409/4494417
pup makefile.pup
# Amiga powerUP (TM) Makefile
# makefile for libpng and SAS C V6.58/7.00 PPC compiler
# Copyright (C) 1998 by Andreas R. Kleinert
LIBNAME = libzip.a
CC = scppc
CFLAGS = NOSTKCHK NOSINT OPTIMIZE OPTG
www.eeworm.com/read/240162/4588041
c strcat.c
extern int inside_main;
extern void abort(void);
char *
strcat (char *dst, const char *src)
{
char *p = dst;
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
while (*p)
p++;
www.eeworm.com/read/240162/4588043
c stpcpy.c
extern int inside_main;
char *
stpcpy (char *dst, const char *src)
{
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
while (*src != 0)
*dst++ = *src++;
*dst = 0;
return dst;
}
www.eeworm.com/read/240162/4588046
c memmove.c
extern int inside_main;
void *
memmove (void *dst, const void *src, __SIZE_TYPE__ n)
{
char *dstp;
const char *srcp;
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
srcp = src;
www.eeworm.com/read/240162/4588048
c mempcpy.c
extern int inside_main;
void *
mempcpy (void *dst, const void *src, __SIZE_TYPE__ n)
{
const char *srcp;
char *dstp;
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
srcp = src;