代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/229812/4744199
c _heapset.c
#include
#include
void main()
{
int heap_status;
char *buffer;
buffer = (char *)malloc( 80 );
malloc( 1024 );
free( buffer );
heap_status =
www.eeworm.com/read/340665/3269646
c mallstatsr.c
#include
void
_malloc_stats_r (struct _reent *ptr)
{
malloc_stats ();
}
www.eeworm.com/read/298657/3860796
c mallstatsr.c
#include
void
_malloc_stats_r (struct _reent *ptr)
{
malloc_stats ();
}
www.eeworm.com/read/279968/4129885
c mallstatsr.c
#include
void
_malloc_stats_r (struct _reent *ptr)
{
malloc_stats ();
}
www.eeworm.com/read/340665/3270256
c mallocr.c
#include
#ifdef DEFINE_MALLOC
_PTR
_malloc_r (struct _reent *r, size_t sz)
{
return malloc (sz);
}
#endif
#ifdef DEFINE_CALLOC
_PTR
_calloc_r (struct _reent *r, size_t a, size_t b)
{
www.eeworm.com/read/298657/3861192
c mallocr.c
#include
#ifdef DEFINE_MALLOC
_PTR
_malloc_r (struct _reent *r, size_t sz)
{
return malloc (sz);
}
#endif
#ifdef DEFINE_CALLOC
_PTR
_calloc_r (struct _reent *r, size_t a, size_t b)
{
www.eeworm.com/read/279968/4130289
c mallocr.c
#include
#ifdef DEFINE_MALLOC
_PTR
_malloc_r (struct _reent *r, size_t sz)
{
return malloc (sz);
}
#endif
#ifdef DEFINE_CALLOC
_PTR
_calloc_r (struct _reent *r, size_t a, size_t b)
{
www.eeworm.com/read/391748/8381824
m4 realloc.m4
# realloc.m4 serial 8
dnl Copyright (C) 2007 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dn
www.eeworm.com/read/390183/8479742
c vsnprintf.c
/*
* vsnprintf()
*
* Poor substitute for a real vsnprintf() function for systems
* that don't have them...
*/
#include "compiler.h"
#include
#include
#include
www.eeworm.com/read/429480/8806395
h base.h
#ifndef _BASE_H
#define _BASE_H 1
#include "SizeDef.h"
#ifndef BASE_INLINE
#define BASE_INLINE inline
#endif
#define NULL_PTR 0
#define NULL_HANDLE 0
#define FLAG_END 0
#define F