代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/162078/10341522

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/352714/10522677

c kernel_init.c

#include /* for boot_info */ #include /* for lmm_remove_free() */ #include /* for lprintf_kern() */ #include /* for install_user_segs() */ #i
www.eeworm.com/read/159851/10608492

makefile

# Makefile for compiling automatic thresholding programs # # Paul Rosin all: link_dynamic median4 dummy link_dynamic: link_dynamic.c malloc_image.o cc -o link_dynamic link_dynamic.c malloc_image.o
www.eeworm.com/read/351657/10632927

c cannon.c

#include #include #include #include #include #include /* 全局变量声明 */ float **A, **B, **C; /* 总矩阵,C = A * B */ float *a, *b, *c, *t
www.eeworm.com/read/159184/10684152

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/350922/10696673

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/350637/10725986

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/350547/10732680

c heapoperate.c

//*************************************************************************** // //文件名: HeapOperate.c //程序语言: C //功能: 堆空间操作 //说明: 无 //完成日期: 2005-4-12 //修改日期: 2006-2-5 //作者: 张斯聪 //版本: 1
www.eeworm.com/read/276309/10748702

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/419541/10863345

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 *