代码搜索:optimize
找到约 6,026 项符合「optimize」的源代码
代码结果 6,026
www.eeworm.com/read/18228/781734
tdf scfifo_peq.tdf
--scfifo ADD_RAM_OUTPUT_REGISTER="ON" DEVICE_FAMILY="Cyclone II" LPM_NUMWORDS=256 LPM_SHOWAHEAD="OFF" lpm_width=16 lpm_widthu=8 OPTIMIZE_FOR_SPEED=5 OVERFLOW_CHECKING="ON" UNDERFLOW_CHECKING="ON" USE_
www.eeworm.com/read/18434/788121
tdf scfifo_eaq.tdf
--scfifo DEVICE_FAMILY=Stratix LPM_NUMWORDS=16 LPM_SHOWAHEAD=OFF lpm_width=8 OPTIMIZE_FOR_SPEED=5 OVERFLOW_CHECKING=ON UNDERFLOW_CHECKING=ON USE_EAB=ON aclr clock data empty full q rdreq usedw wrreq A
www.eeworm.com/read/18434/788181
tdf scfifo_nbq.tdf
--scfifo DEVICE_FAMILY=Stratix LPM_NUMWORDS=16 LPM_SHOWAHEAD=OFF lpm_width=10 OPTIMIZE_FOR_SPEED=5 OVERFLOW_CHECKING=ON UNDERFLOW_CHECKING=ON USE_EAB=ON aclr clock data empty full q rdreq usedw wrreq
www.eeworm.com/read/32279/882088
tdf scfifo_0mv.tdf
--scfifo ADD_RAM_OUTPUT_REGISTER="ON" DEVICE_FAMILY="Stratix" LPM_NUMWORDS=32 LPM_SHOWAHEAD="OFF" lpm_width=8 lpm_widthu=5 OPTIMIZE_FOR_SPEED=5 OVERFLOW_CHECKING="ON" UNDERFLOW_CHECKING="ON" USE_EAB="
www.eeworm.com/read/38039/1093317
mnu reqlocs.mnu
REQD#LOCS 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
www.eeworm.com/read/39267/1125106
tdf scfifo_0mv.tdf
--scfifo ADD_RAM_OUTPUT_REGISTER="ON" DEVICE_FAMILY="Stratix" LPM_NUMWORDS=32 LPM_SHOWAHEAD="OFF" lpm_width=8 lpm_widthu=5 OPTIMIZE_FOR_SPEED=5 OVERFLOW_CHECKING="ON" UNDERFLOW_CHECKING="ON" USE_EAB="
www.eeworm.com/read/466222/1513910
tdf scfifo_eaq.tdf
--scfifo DEVICE_FAMILY=Stratix LPM_NUMWORDS=16 LPM_SHOWAHEAD=OFF lpm_width=8 OPTIMIZE_FOR_SPEED=5 OVERFLOW_CHECKING=ON UNDERFLOW_CHECKING=ON USE_EAB=ON aclr clock data empty full q rdreq usedw wrreq A
www.eeworm.com/read/466222/1513942
tdf scfifo_nbq.tdf
--scfifo DEVICE_FAMILY=Stratix LPM_NUMWORDS=16 LPM_SHOWAHEAD=OFF lpm_width=10 OPTIMIZE_FOR_SPEED=5 OVERFLOW_CHECKING=ON UNDERFLOW_CHECKING=ON USE_EAB=ON aclr clock data empty full q rdreq usedw wrreq
www.eeworm.com/read/240162/4588070
c string-asm-1-lib.c
extern int inside_main;
extern const char *p;
char *
my_strstr (const char *s1, const char *s2)
{
__SIZE_TYPE__ len = strlen (s2);
#ifdef __OPTIMIZE__
/* If optimizing, we should be called only
www.eeworm.com/read/233448/4681892
c strcspn.c
extern int inside_main;
__SIZE_TYPE__
strcspn (const char *s1, const char *s2)
{
const char *p, *q;
#ifdef __OPTIMIZE__
if (inside_main)
abort();
#endif
for (p = s1; *p; p++)
for (q =