代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/114226/15063172

h fft.h

#ifndef __FFT_H__ #define __FFT_H__ /** * Pi for fft, float type. */ #define PI 3.14159265358979323846 /* Complex type. */ typedef struct { float rex, imx; } Complex; /** *
www.eeworm.com/read/211015/15188757

cpp 2_6.cpp

#include void main(void) { int n, right_digit, newnum = 0; cout > n; cout
www.eeworm.com/read/210370/15200214

sql 得到sql中的数据库目录.sql

/*--得到数据库的文件目录 @dbname 指定要取得目录的数据库名 如果指定的数据不存在,返回安装SQL时设置的默认数据目录 如果指定NULL,则返回默认的SQL备份目录名 --邹建 2003.10(引用请保留此信息)--*/ /*--调用示例 select 数据库文件目录=dbo.f_getdbpath('tempdb') ,[默认SQL SE
www.eeworm.com/read/206291/15297010

c bitrev.c

/* bitrev.c - bit reverse of a B-bit integer n */ #define two(x) (1
www.eeworm.com/read/167185/5462182

makefile

# This material contains proprietary software of Entropic Speech, Inc. # Any reproduction, distribution, or publication without the the prior # written permission of Entropic Speech, Inc. is
www.eeworm.com/read/167185/5463067

3 longreverse.3

.TH LONG_REVERSE 3\-ESPS 8/11/93 .PP See \fIreverse\fR.
www.eeworm.com/read/167185/5463115

3 shortreverse.3

.TH SHORT_REVERSE 3\-ESPS 8/11/93 .PP See \fIreverse\fR.
www.eeworm.com/read/162614/5527293

c acc2.c

/* Tail call optimizations would reverse the order of multiplications in func(). */ double func (const double *array) { double d = *array; if (d == 1.0) return d; else return d * fu
www.eeworm.com/read/162614/5528155

c 20020706-2.c

// Contributed by Alexandre Oliva // From Red Hat case 106165. typedef unsigned short (FUNC_P) (void *, unsigned char *, unsigned short); void crashIt(int id, FUNC_P *func, unsig
www.eeworm.com/read/159853/5580368

c xtoa.c

#include #include // maximum string buffer needed, plus one for a minus sign when negative #define MAX_LENGTH 32+1 #define XTOA(prefix, type) \ char *prefix##toa(char* buf, ty