代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/186388/5233320

h xm-next.h

/* malloc does better with chunks the size of a page. */ #define OBSTACK_CHUNK_SIZE (getpagesize ())
www.eeworm.com/read/473584/6846760

h clustalw.h

/*#include "/us1/user/julie/dmalloc/malloc.h"*/ /*********************CLUSTALW.H*********************************************/ /**********************************************************************
www.eeworm.com/read/195195/8168951

h clustalw.h

/*#include "/us1/user/julie/dmalloc/malloc.h"*/ /*********************CLUSTALW.H*********************************************/ /**********************************************************************
www.eeworm.com/read/432799/8573217

cpp 4-1.cpp

#include #include #define list_init_size 100 typedef struct { int * elem; int length; }sstable; void Initlist_seq(sstable &l) { int n; l.elem=(int*) malloc(list_in
www.eeworm.com/read/430124/8765059

c fft.c

#include "FFT.h" #include #include void InitializePoly(poly* p, int m, int* co) { int i; p->MaxExp = m; p->Coefficient = (int*)malloc(sizeof(int) * (m + 1)); for(i
www.eeworm.com/read/284617/8913197

h sph_common.h

#ifndef _SPH_COMMON_H_ #define _SPH_COMMON_H_ #include "glg.h" #define SPH_MALLOC(x) malloc((x)) // #define PRINT_N_INTERACTIONS //#define PRINT_DIST #define INITIAL_GRID_CAPACITY 60 //
www.eeworm.com/read/175317/9552352

c mexgramsvmtrain.c

#include #include #include #include #include "svm.h" #include "mex.h" #define Malloc(type,n) (type *)malloc((n)*sizeof(type)) /* Input Arguments */ #define
www.eeworm.com/read/175317/9552354

cpp mexgramsvmtrain.cpp

#include #include #include #include #include "svm.h" #include "mex.h" #define Malloc(type,n) (type *)malloc((n)*sizeof(type)) /* Input Arguments */ #define
www.eeworm.com/read/358933/10175048

cpp bianli2.cpp

#include // #include //等效于malloc.h #include"malloc.h" #include"iostream.h" typedef struct btree { int data; struct btree *left; struct btree *right; }BTR; void crea
www.eeworm.com/read/454943/7381130

cpp mysvm.cpp

#include #include #include #include #include "svm.h" #include using namespace std; #define Malloc(type,n) (type *)malloc((n)*sizeof(type)) void ex