代码搜索:realloc
找到约 1,059 项符合「realloc」的源代码
代码结果 1,059
www.eeworm.com/read/298657/3861288
c vec_malloc.c
/*
FUNCTION
, , ---manage vector memory
INDEX
vec_malloc
INDEX
vec_realloc
INDEX
vec_free
INDEX
_vec_malloc_r
INDEX
_vec_realloc_r
INDEX
_vec_free_r
AN
www.eeworm.com/read/279968/4130456
c vec_malloc.c
/*
FUNCTION
, , ---manage vector memory
INDEX
vec_malloc
INDEX
vec_realloc
INDEX
vec_free
INDEX
_vec_malloc_r
INDEX
_vec_realloc_r
INDEX
_vec_free_r
AN
www.eeworm.com/read/147331/5732078
am makefile.am
## Process this file with automake to generate Makefile.in
AUTOMAKE_OPTIONS = cygnus
# hack: putting $(newlib_basedir)/libm/common into INCLUDES forces automake
# to output a definition for newlib_b
www.eeworm.com/read/124347/6051539
am makefile.am
## Process this file with automake to generate Makefile.in
AUTOMAKE_OPTIONS = cygnus
# hack: putting $(newlib_basedir)/libm/common into INCLUDES forces automake
# to output a definition for newlib_b
www.eeworm.com/read/121258/14762697
htm typedlocalheap.h.htm
/////////////////////////////////////////////////////////////////////
// Class Creator Version 2.0.000 Copyrigth (C) Poul A. Costinsky 1994
//////////////////////////////////////////////////////////
www.eeworm.com/read/123021/6787466
h typedlocalheap.h
/////////////////////////////////////////////////////////////////////
// Class Creator Version 2.0.000 Copyrigth (C) Poul A. Costinsky 1994
//////////////////////////////////////////////////////////
www.eeworm.com/read/111979/15497526
htm typedlocalheap.h.htm
/////////////////////////////////////////////////////////////////////
// Class Creator Version 2.0.000 Copyrigth (C) Poul A. Costinsky 1994
//////////////////////////////////////////////////////////
www.eeworm.com/read/108242/6183926
c malloc.c
/**********************************************************/
/*
/* This was file READ_ME
/*
/**********************************************************/
/*
PROGRAM
malloc(), free(), realloc()
www.eeworm.com/read/389922/2529896
c malloc.c
/**********************************************************/
/*
/* This was file READ_ME
/*
/**********************************************************/
/*
PROGRAM
malloc(), free(), realloc()
www.eeworm.com/read/209211/4983801
c util.c
#include "all.h"
void*
erealloc(void *a, int n)
{
a = realloc(a, n);
if(a==nil)
sysfatal("realloc: %r");
return a;
}
char*
estrdup(char *s)
{
s = strdup(s);
if(s == nil)
sysfatal("strdup: %