代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/236937/13990458

c jdialog.c

/* eXosip - This is the eXtended osip library. Copyright (C) 2002,2003,2004,2005,2006,2007 Aymeric MOIZARD - jack@atosc.org eXosip is free software; you can redistribute it and/or modify
www.eeworm.com/read/111394/15513860

c nict_fsm.c

/* The oSIP library implements the Session Initiation Protocol (SIP -rfc3261-) Copyright (C) 2001,2002,2003 Aymeric MOIZARD jack@atosc.org This library is free software; you can redistribute
www.eeworm.com/read/117726/14906905

c memlib.c

/* * memlib.c - a module that simulates the memory system. Needed because it * allows us to interleave calls from the student's malloc package * with the system's malloc pa
www.eeworm.com/read/117724/14907411

c memlib.c

/* * memlib.c - a module that simulates the memory system. Needed because it * allows us to interleave calls from the student's malloc package * with the system's malloc pa
www.eeworm.com/read/11175/209917

c zalloc.c

/*** zalloc - hoookable ztools allocator * * Modifications * 15-Dec-1988 mz Created */ #include char * (*tools_alloc) (unsigned) = (char * (*)(unsigned))malloc;
www.eeworm.com/read/16793/691032

notes

Platform-Specific Configuration and Operation Notes =================================================== 1. configure --without-gnu-malloc on: alpha running OSF/1, Linux, or NetBSD (malloc needs 8-
www.eeworm.com/read/242082/4556392

c zalloc.c

/*** zalloc - hoookable ztools allocator * * Modifications * 15-Dec-1988 mz Created */ #include char * (*tools_alloc) (unsigned) = (char * (*)(unsigned))malloc;
www.eeworm.com/read/234134/4661886

c zalloc.c

/*** zalloc - hoookable ztools allocator * * Modifications * 15-Dec-1988 mz Created */ #include char * (*tools_alloc) (unsigned) = (char * (*)(unsigned))malloc;
www.eeworm.com/read/232130/4705313

def win32.def

NAME MALLOC2 DESCRIPTION 'C++ Malloc Demo Chapter 2 (c)1993-1995 Microsoft Corp' CODE PRELOAD DISCARDABLE DATA PRELOAD MULTIPLE
www.eeworm.com/read/229812/4744298

c _msize.c

#include #include void main() { void *buffer; buffer = malloc( 999 ); printf( "Size of block is %u bytes\n", _msize( buffer ) ); }