代码搜索:optimize
找到约 6,026 项符合「optimize」的源代码
代码结果 6,026
www.eeworm.com/read/162614/5516822
c ppc-spe.c
/* { dg-do compile { target powerpc-*-eabispe } } */
/* { dg-options "-mcpu=8540 -mabi=spe -O0" } */
/* (Test with -O0 so we don't optimize any of them away). */
#include
/* Test PowerPC S
www.eeworm.com/read/162614/5517082
c 20020531-1.c
/* PR optimization/6842
This testcase caused ICE when trying to optimize V8QI subreg of VOIDmode
CONST_DOUBLE. */
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -mm
www.eeworm.com/read/349338/3145152
hpp rarvm.hpp
#ifndef _RAR_VM_
#define _RAR_VM_
#define VM_STANDARDFILTERS
#ifndef SFX_MODULE
#define VM_OPTIMIZE
#endif
#define VM_MEMSIZE 0x40000
#define VM_MEMMASK (VM_MEMSIZE-1)
#
www.eeworm.com/read/340665/3280198
c ppc-spe.c
/* { dg-do compile { target powerpc-*-eabispe } } */
/* { dg-options "-mcpu=8540 -mabi=spe -O0" } */
/* (Test with -O0 so we don't optimize any of them away). */
#include
/* Test PowerPC S
www.eeworm.com/read/329013/3435092
makefile_cfmm
PRG = avr_cfmm
OBJ = main.o uart.o xitoa.o stime.o ff.o cfmm.o
MCU_TARGET = atmega64
OPTIMIZE = -Os -mcall-prologues
DEFS =
LIBS =
DEBUG =
www.eeworm.com/read/306178/3750464
c pigd.c
// pigd.c 拱猪 Daemon
//#pragma optimize all
#include
inherit F_DBASE;
string *suit_char = ({ "S", "H", "D", "C" });
string *suit_str = ({ "黑桃", "红心", "方块", "梅花" });
string *rank_char = ({ "2
www.eeworm.com/read/306178/3759834
h insert.h
//insert.c
#pragma optimize
#include
inherit F_CLEAN_UP;
int do_insert(string arg)
{
mapping cards;
string *dirs, dir;
int i;
if( !arg ) return notify_fail("你要插入什么?\n");
www.eeworm.com/read/449781/1673970
m chap5_2.m
%chap5_2.m
%GA(Generic Algorithm) Program is to optimize PID Parameters
clear all;
close all;
global rin yout timef
Size=30;
CodeL=3;
MinX(1)=zeros(1);
MaxX(1)=20*ones(1);
MinX(2)=zeros(1
www.eeworm.com/read/440906/1781842
c ppc-spe.c
/* { dg-do compile { target powerpc-*-eabispe } } */
/* { dg-options "-mcpu=8540 -mabi=spe -O0" } */
/* (Test with -O0 so we don't optimize any of them away). */
#include
/* Test PowerPC S
www.eeworm.com/read/435707/1861148
c memcpy.c
#include
#include
void *memcpy(void *dest, const void *s, size_t n)
{
void *d = dest;
uint32_t nn;
// It's not worth trying to optimize really short copies.
if (n < 16)