代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/493349/6401247
c daubechi.c
#ifndef MATH_H
#include
#endif
#include
/************************************************************************/
/* Daubechies smoothing filter H */
/* diffentation fi
www.eeworm.com/read/408502/11385103
cpp ibclient.cpp
// ibClient.cpp: implementation of the IibClient class.
//
//////////////////////////////////////////////////////////////////////
#include
#include "ibClient.h"
#include
www.eeworm.com/read/346287/11756148
cpp huffman.cpp
// Huffman.cpp: implementation of the Huffman class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include
#include
#if
www.eeworm.com/read/259422/11795014
c memwatch.c
/* This file was contributed by Peter Selinger and is copyrighted
under the GNU General Public License. */
/* The purpose of this file is to define alternative "malloc",
"realloc", and "free" m
www.eeworm.com/read/217366/14968325
cpp huffman.cpp
// Huffman.cpp: implementation of the Huffman class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include
#include
#if
www.eeworm.com/read/209211/4984034
c ialloc.c
#include "all.h"
void *ialloc(ulong n){
void *p;
if(p = malloc(n))
memset(p, 0, n);
return p;
}
www.eeworm.com/read/427042/1980566
ms
If you use the function that does an fopen inside the DLL, it's malloc
will be used and when the function is then written inside, more
hassles
....
think about it.
www.eeworm.com/read/100594/15870305
cpp cmalloc.cpp
/***
*malloc.h - declarations and definitions for memory allocation functions
*Purpose:
* Contains the function declarations for memory allocation functions.
*
****/
#pragma cmalloc
#include
www.eeworm.com/read/388513/8605136
cpp shuju.cpp
#include"shuju.h"
//#include
int *newbase;
int *q,*p,i,*pa,*pb,*pc,*pa_last,*pb_last;
Status InitList_Sq(SqList &L){
//构造一个空的线型表T
L.elem =(ElemType*)malloc(LIST_INIT_SIZE*sizeof(
www.eeworm.com/read/129182/14259948
c q.c
#include "q.h"
q_t *qtmalloc(int initl) {
//initl should be 64...
q_t *q;
q = (q_t *)malloc(sizeof(q_t));
q->front=0;
q->end=0;
q->len=0;
q->size = initl;
q->q = (void **)malloc(si