代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/288542/8622850

c talloc.c

/** ** TALLOC.C ** ** lean_and_mean malloc()/free implementation ** by tom ehlert, te@drivesnapshot.de ** ** please be careful: ** ** this is only slightly tested and has NO ERRORCHECCKIN
www.eeworm.com/read/185659/8993778

y parser.y

%{ #include "compiler.h" #include void yyerror(char* msg) { CtkScanner::instance.error(msg); } %} %union { CtkToken* tok; CtkProgram* prog;
www.eeworm.com/read/181921/9226345

c 最小生成树.c

#include #include #define MAX 20 //定义节点容量 typedef struct //图结构 { int vexs[MAX];
www.eeworm.com/read/181921/9226354

c 最小生成树(prim).c

#include #include #define MAX 20 //定义节点容量 typedef struct //图结构 { int vexs[MAX];
www.eeworm.com/read/373050/9476295

h mess_mms_transfer.h

/*--------------------------------- Includes-------------------------------------*/ #include #include #include #include #include /*-
www.eeworm.com/read/169651/9848020

h lbnmem.h

/* * Operations on the usual buffers of bytes */ #ifndef BNSECURE #define BNSECURE 1 #endif /* * These operations act on buffers of memory, just like malloc & free. * One exception: it is not leg
www.eeworm.com/read/278019/10581552

c tclckalloc.c

#ifndef EXCLUDE_TCL /* * tclCkalloc.c -- * Interface to malloc and free that provides support for debugging problems * involving overwritten, double freeing memory and loss of memory. * *
www.eeworm.com/read/159920/10588857

c amalloc.c

/* AMALLOC - multi-dimensional malloc() Allocates a multidimensional array dynamically, at runtime, so that 1: its elements can be accessed using multiple indirection 2: it can be dealloca
www.eeworm.com/read/159045/10699289

cpp huffmancodec.cpp

#include "HuffmanCodec.h" #include #include CHuffmanCodec::CHuffmanCodec() { pCodecPar = NULL; HT = NULL; nNodeNum = 0; } CHuffmanCodec::~CHuffmanCodec
www.eeworm.com/read/440514/7688388

cpp 词法分析器.cpp

#include "define.h" #include #include #include #include FILE *fp; /*////////////////////////////////////////////////////////////////////////////// This