代码搜索:malloc

找到约 10,000 项符合「malloc」的源代码

代码结果 10,000
www.eeworm.com/read/139903/5796079

cpp memcheck.cpp

//: C10:MemCheck.cpp {O} // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Memory allocation tester #
www.eeworm.com/read/139514/5798627

h mallocvar.h

/* These are some dynamic memory allocation facilities. They are essentially an extension to C, as they do allocations with a cognizance of C variables. You can use them to make C read more
www.eeworm.com/read/139332/5802338

inc pool_construct.inc

// Copyright (C) 2000 Stephen Cleary // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // /
www.eeworm.com/read/139332/5802340

inc pool_construct_simple.inc

// Copyright (C) 2000 Stephen Cleary // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // /
www.eeworm.com/read/137654/5822515

c calloc.c

/*----------------------------------------------------------------------------- CALLOC.C is part of the C51 Compiler package from Keil Software. Copyright (c) 1995-2002 Keil Software. All rights re
www.eeworm.com/read/136989/5828305

cpp util.cpp

// util.cpp,v 1.5 1998/07/31 23:36:46 gonzo Exp #include "util.h" ACE_RCSID(stress_testing, util, "util.cpp,v 1.5 1998/07/31 23:36:46 gonzo Exp") URL::URL(char *input_buf) { char *buffer
www.eeworm.com/read/136824/5847918

h mymalloc.h

/**************************************************************************** * mymalloc.h - malloc wrapping functions con logging * * Funciones de uso general * * (c) Copyright 2000 Sabara
www.eeworm.com/read/136812/5857240

c calloc.c

#if !defined(lint) && defined(SCCSIDS) static char sccsid[] = "@(#)calloc.c 1.1 92/07/30 SMI"; /* from UCB 4.1 80/12/21 */ #endif /* * calloc - allocate and clear memory block */ #define CHARPERINT
www.eeworm.com/read/136812/5861391

h util.h

/* @(#)util.h 1.1 92/07/30 (C) 1985 Sun Microsystems, Inc. */ #define EOS '\0' #ifndef NULL # define NULL ((char *) 0) #endif #define MALLOC(object_type) ((object_type *) malloc(sizeof(object_t
www.eeworm.com/read/136072/5874908

c alloc.c

/* alloc.c * * Written by Erik Andersen * LGPLv2 * * Parts of the memalign code were stolen from malloc-930716. */ #define _GNU_SOURCE #include #include