代码搜索:optimized

找到约 6,562 项符合「optimized」的源代码

代码结果 6,562
www.eeworm.com/read/162614/5530506

c bool-7.c

/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized" } */ int f(_Bool x) { int y; if (x != 1) y = 0; else y = 1; return y; } /* There should be no != 1. Though PHI-OPT
www.eeworm.com/read/162614/5530513

c sra-2.c

/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized --param sra-max-structure-size=32" } */ /* Test for SRA. */ typedef struct teststruct { double d; char f1; } teststruct; voi
www.eeworm.com/read/162614/5530610

c bool-3.c

/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized" } */ int f(_Bool x) { int y; if (!x) y = 0; else y = 1; return y; } /* There should be no == 0. Though PHI-OPT or
www.eeworm.com/read/161485/10404343

m perform_haar_transform.m

% perform_haar_transform - compute a wavelet haar transform % % y = perform_haar_transform(x,Jmin,dir); % % This is the optimized Mex version. % Use 'perform_haar_transform' for a Matlab impl
www.eeworm.com/read/349103/10851737

tcl cmpldes2.tcl

# # Tcl script file for second part of Chapter 9 # # Note: This script is run after the first compile completes. # # Remove any designs in memory # remove_design -all # # Read in the optimized design
www.eeworm.com/read/461728/7221221

m perform_haar_transform.m

% perform_haar_transform - compute a wavelet haar transform % % y = perform_haar_transform(x); % % This is the optimized Mex version. % Use 'perform_haar_transform' for a Matlab implementatio
www.eeworm.com/read/147766/5723049

s strlen.s

/* strlen.S: Sparc optimized strlen code * Hand optimized from GNU libc's strlen * Copyright (C) 1991,1996 Free Software Foundation * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) *