代码搜索:realloc
找到约 1,059 项符合「realloc」的源代码
代码结果 1,059
www.eeworm.com/read/190666/5173063
c realloc.c
// Build don't link:
extern "C" void realloc();
class bug {
public:
void realloc(int foo,int bar);
};
void f() {
bug c;
c.realloc(50,50);
}
www.eeworm.com/read/178760/5312872
c realloc.c
/*
* realloc.c - dynamic memory allocation
*
* written by Vangelis Rokas, 2004 (vrokas@otenet.gr)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of
www.eeworm.com/read/167046/5470949
c realloc.c
/*
* libc/stdlib/malloc/realloc.c -- realloc function
*
* Copyright (C) 2002 NEC Corporation
* Copyright (C) 2002 Miles Bader
*
* This file is subject to the terms and condit
www.eeworm.com/read/167046/5470961
c realloc.c
/*
This is a version (aka dlmalloc) of malloc/free/realloc written by
Doug Lea and released to the public domain. Use, modify, and
redistribute this code without permission or acknowledgement i
www.eeworm.com/read/163821/5509085
c realloc.c
/*
* libc/stdlib/malloc/realloc.c -- realloc function
*
* Copyright (C) 2002 NEC Corporation
* Copyright (C) 2002 Miles Bader
*
* This file is subject to the terms and condit
www.eeworm.com/read/163821/5509092
c realloc.c
/* malloc.c - C standard library routine.
Copyright (c) 1989, 1993 Michael J. Haertel
You may redistribute this library under the terms of the
GNU Library General Public License (version 2 o
www.eeworm.com/read/162614/5519723
c realloc.c
// { dg-do assemble }
extern "C" void realloc();
class bug {
public:
void realloc(int foo,int bar);
};
void f() {
bug c;
c.realloc(50,50);
}
www.eeworm.com/read/340665/3269637
c realloc.c
/* dummy file to override one object in stdlib directory */
www.eeworm.com/read/340665/3270963
c realloc.c
#ifdef MALLOC_PROVIDED
int _dummy_calloc = 1;
#else
/* realloc.c -- a wrapper for realloc_r. */
#include
#include
#include
#include
#ifndef _REENT_ONLY
_P