代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/242657/4547357
cpp malloc.cpp
// $Id: Malloc.cpp 72205 2006-04-20 10:20:34Z jwillemsen $
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_string.h"
// Listing 1 code/ch17
#include "ace/MMAP_Memory_Pool.h"
#include "ace/Malloc_T.
www.eeworm.com/read/242657/4547363
bor malloc.bor
# Makefile for building the Malloc exe with Borland C++ Make
NAME = Malloc
NO_FULL_PATH=1
OBJFILES = \
$(OBJDIR)\Malloc.$(OBJ_EXT)
LFLAGS = \
-L"." \
-j"." \
www.eeworm.com/read/241253/4561146
c malloc.c
/* $Id: malloc.c,v 1.3 2003/08/04 13:36:21 pefo Exp $ */
/*
* Copyright (c) 2000-2002 Opsycon AB (www.opsycon.se)
*
* Redistribution and use in source and binary forms, with or without
* modifi
www.eeworm.com/read/241253/4561455
h malloc.h
/* $OpenBSD: malloc.h,v 1.24 1999/08/09 03:47:56 fgsch Exp $ */
/* $NetBSD: malloc.h,v 1.39 1998/07/12 19:52:01 augustss Exp $ */
/*
* Copyright (c) 1987, 1993
* The Regents of the University of Ca
www.eeworm.com/read/240943/4564635
h malloc.h
#ifndef _PT_MALLOC_H_
#define _PT_MALLOC_H_
#include
malloc_t pthread_malloc (size_t size);
int pthread_free (malloc_t ptr);
malloc_t pthread_realloc (malloc_t ptr,size_t size);
malloc_t
www.eeworm.com/read/240943/4565051
h malloc.h
#ifndef _MACHMALLOC_H_
#define _MACHMALLOC_H_
/* place holder so platforms may add malloc.h extensions */
#endif /* _MACHMALLOC_H_ */
www.eeworm.com/read/240162/4578834
h malloc.h
/* DO NOT EDIT THIS FILE.
It has been auto-edited by fixincludes from:
"fixinc/tests/inc/malloc.h"
This had to be done to correct non-standard usages in the
original, manufacturer sup
www.eeworm.com/read/239309/4602682
c malloc.c
/* The 15-410 C Library
* malloc.c
*
* Zachary Anderson(zra)
*/
#include "mm_malloc.h"
#include
#include /* for bzero */
/*
* Has the mm_malloc library been initialized y
www.eeworm.com/read/239309/4602686
c malloc.c
#include
void *malloc(size_t __size)
{
return _malloc(__size);
}
void *calloc(size_t __nelt, size_t __eltsize)
{
return _calloc(__nelt, __eltsize);
}
void *realloc(void *__buf, size_t