代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/391623/8394607

c cannon.c

#include #include #include #include #include #include /* 全局变量声明 */ float **A, **B, **C; /* 总矩阵,C = A * B */ float *a, *
www.eeworm.com/read/291494/8413264

h ydirectenv.h

/* * YAFFS: Yet another Flash File System . A NAND-flash specific file system. * * Copyright (C) 2002-2007 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Ch
www.eeworm.com/read/189219/8484419

c tshm.c

#include #include #include #include "ourhdr.h" #define ARRAY_SIZE 40000 #define MALLOC_SIZE 100000 #define SHM_SIZE 100000 #define SHM_MODE (SHM_R | SHM_W) /* u
www.eeworm.com/read/290380/8486481

c heapwalk.c

#include #include void main(void) { char *buffer1, *buffer2, *buffer3; struct heapinfo node = { NULL, 0, 0}; buffer1 = malloc(100); buffer2 = malloc(200);
www.eeworm.com/read/390009/8489674

c 第二章实例源程序allocate.c

/* FILE: ALLOCATE.C */ #define PRIVATE static /* Used to hide identifiers from BIND */ #define BLKSIZ 80 /* Size of allocation block */ #define STKSIZ 1000 /* Bytes reserved for stack *
www.eeworm.com/read/290033/8510340

h ydirectenv.h

/* * YAFFS: Yet another Flash File System . A NAND-flash specific file system. * * Copyright (C) 2002-2007 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Ch
www.eeworm.com/read/389459/8518280

c hello.c

#include #include #include char *hello1,*hello2; void memory_use() { hello1 = (char *)malloc(32); strcpy(hello1, "hello world"); hello2 = (char *)malloc(strlen(hel
www.eeworm.com/read/289518/8546716

cpp main.cpp

/* * This program is used to registrate two images */ #include "main.h" void main() // int argc; // char **argv; { char* inputfilename,*referfilename,*targetfilename; /* filename */ FILE *infPt
www.eeworm.com/read/188087/8573641

c cannon.c

#include #include #include #include #include #include /* 全局变量声明 */ float **A, **B, **C; /* 总矩阵,C = A * B */ float *a, *
www.eeworm.com/read/431013/8713462

c testm.c

/*****************************************************/ /*****************************************************/ /*PAGE Includes and data structures */ #include #include #incl