代码搜索:optimize
找到约 6,026 项符合「optimize」的源代码
代码结果 6,026
www.eeworm.com/read/208246/15250343
kernelmodule makefile.kernelmodule
#
# Possible settings:
# _DEBUG_ will make the driver _verbose_ (via syslog KERN_DEBUG) , please let
# this switched on until we have version 1.0, we need the output in case
# of troubles
# C
www.eeworm.com/read/162614/5526757
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/162614/5526762
c stpcpy.c
extern void abort (void);
extern int inside_main;
char *
stpcpy (char *dst, const char *src)
{
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
while (*src != 0)
*dst++ = *src++;
www.eeworm.com/read/162614/5526763
c strpbrk.c
extern void abort (void);
extern int inside_main;
char *
strpbrk(const char *s1, const char *s2)
{
const char *p;
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
while (*s1)
{
www.eeworm.com/read/162614/5526769
c strcmp.c
extern void abort (void);
extern int inside_main;
int
strcmp (const char *s1, const char *s2)
{
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
while (*s1 != 0 && *s1 == *s2)
s1++,
www.eeworm.com/read/162614/5526772
c strchr.c
extern void abort (void);
extern int inside_main;
char *
strchr (const char *s, int c)
{
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
for (;;)
{
if (*s == c)
return (char
www.eeworm.com/read/162614/5526775
c strstr.c
extern void abort (void);
extern int inside_main;
char *
strstr(const char *s1, const char *s2)
{
const char *p, *q;
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
/* deliberately
www.eeworm.com/read/162614/5527589
c 20030216-1.c
void link_error (void);
const double one=1.0;
main ()
{
#ifdef __OPTIMIZE__
if ((int) one != 1)
link_error ();
#endif
return 0;
}
www.eeworm.com/read/393001/8315815
hpp test2.hpp
//
// MATLAB Compiler: 3.0
// Date: Tue Dec 16 10:40:04 2008
// Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
// "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ