代码搜索:realloc
找到约 1,059 项符合「realloc」的源代码
代码结果 1,059
www.eeworm.com/read/266531/4272106
h platform.h
#ifndef YASLI_PLATFORM_H_
#define YASLI_PLATFORM_H_
// $Id: platform.h 754 2006-10-17 19:59:11Z syntheticpp $
// Most conservative
#define YASLI_HAS_EFFICIENT_MSIZE 0
#define YASLI_REALLOC_AFTER_N
www.eeworm.com/read/415809/11052274
h amd_flash.h
/* $Id: amd_flash.h,v 1.3 2002/10/08 01:46:33 nandy Exp $ */
#ifndef _VIVI_AMDFLASH_H_
#define _VIVI_AMDFLASH_H_
/* There's no limit. It exists only to avoid realloc. */
#define MAX_AMD_CHIPS 8
#d
www.eeworm.com/read/447298/7554761
h testoomlib.h
#ifndef TEST_OOM_LIB_H
#define TEST_OOM_LIB_H
#include
#ifdef HAVE_SYS_TYPES_H
#include
#endif
void* test_malloc (size_t bytes);
void* test_realloc (void *memor
www.eeworm.com/read/162614/5528595
c 20051216-1.c
/* PR rtl-optimization/25432 */
void *malloc (__SIZE_TYPE__);
void *realloc (void *, __SIZE_TYPE__);
struct A { double x, y; };
struct B { double x0, y0, x1, y1; };
struct C { int n_points; int dir;
www.eeworm.com/read/366702/2880208
c 20051216-1.c
/* PR rtl-optimization/25432 */
void *malloc (__SIZE_TYPE__);
void *realloc (void *, __SIZE_TYPE__);
struct A { double x, y; };
struct B { double x0, y0, x1, y1; };
struct C { int n_points; int dir;
www.eeworm.com/read/104056/15711372
changelog
2002-07-20 Jim Meyering
* jm-macros.m4: Require autoconf-2.53b.
Use new macros AC_FUNC_MALLOC and AC_FUNC_REALLOC,
in place of jm_-prefixed ones. Thanks, Akim!
* malloc.m
www.eeworm.com/read/314660/3630237
so alloc.so
m4_comment([$Id: alloc.so,v 1.12 2004/08/13 03:39:00 bostic Exp $])
m4_ref_title(Upgrading m4_db Applications,
[Release 3.3: DB-__GT__set_malloc, DB-__GT__set_realloc],,
upgrade.3.3/getswap,
www.eeworm.com/read/177819/9431336
changelog
2002-03-13 Bernhard Rosenkraenzer
* configure.in, m4/regex.m4, m4/malloc.m4, m4/realloc.m4:
Don't set LIBOBJS directly, autoconf 2.53 doesn't like it
* intl/*: Sync with gettex
www.eeworm.com/read/207008/15284204
man gc.man
.TH GC_MALLOC 1L "2 October 2003"
.SH NAME
GC_malloc, GC_malloc_atomic, GC_free, GC_realloc, GC_enable_incremental, GC_register_finalizer, GC_malloc_ignore_off_page, GC_malloc_atomic_ignore_off_page,
www.eeworm.com/read/180137/5290893
pl memanalyze.pl
#!/usr/bin/env perl
#
# Example input:
#
# MEM mprintf.c:1094 malloc(32) = e5718
# MEM mprintf.c:1103 realloc(e5718, 64) = e6118
# MEM sendf.c:232 free(f6520)
my $mallocs=0;
my $reallocs=0;
my $strdu