代码搜索:alloc

找到约 10,000 项符合「alloc」的源代码

代码结果 10,000
www.eeworm.com/read/10840/191003

h bp.h

#include #include #include #include #define BIGRND 32767 double drnd(); double dpn1(); double squash(double x); double *alloc_1d_dbl(int n); double
www.eeworm.com/read/11356/228351

h commands.h

#ifndef _COMMANDS_H #define _COMMANDS_H /* In n8250.c, amiga.c: */ int doasystat(int argc,char *argv[],void *p); int fp_attach (int argc,char *argv[],void *p); /* In alloc.c: */ int domem(in
www.eeworm.com/read/13787/283575

h commands.h

#ifndef _COMMANDS_H #define _COMMANDS_H /* In n8250.c, amiga.c: */ int doasystat(int argc,char *argv[],void *p); int fp_attach (int argc,char *argv[],void *p); /* In alloc.c: */ int domem(in
www.eeworm.com/read/15711/536002

h bp.h

#include #include #include #include #define BIGRND 32767 double drnd(); double dpn1(); double squash(double x); double *alloc_1d_dbl(int n); double
www.eeworm.com/read/16321/668994

c 144.c

/* 在BC31下编译 */ /* compile under Borland C++ 3.1 */ #include #include #include #include #include void main(int argc, char *argv[]) {
www.eeworm.com/read/16515/677072

c xcopy.c

#include #include #include #include #include #include #include #include void copy(void); void copyaction(void);
www.eeworm.com/read/16545/679419

c 158.c

/* 在BC31下编译 */ /* compile under Borland C++ 3.1 */ #include #include #include #include #include void main(int argc, char *argv[]) {
www.eeworm.com/read/37168/1069147

c-

/* 在BC31下编译 */ /* compile under Borland C++ 3.1 */ #include #include #include #include #include void main(int argc, char *argv[]) {
www.eeworm.com/read/480930/1309877

h atari_stram.h

#ifndef _M68K_ATARI_STRAM_H #define _M68K_ATARI_STRAM_H /* * Functions for Atari ST-RAM management */ /* public interface */ void *atari_stram_alloc(long size, const char *owner); void atari_stram
www.eeworm.com/read/470720/1451407

c 920410-1.c

int alloc_float(f) float f; { union { float f; int i; } u; u.f=f; return u.i&~1; } float c_float(int obj) { union { float f; int i; } u; u.i=obj;