代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/132069/5921233
c buffers.c
/* ***** BEGIN LICENSE BLOCK *****
* Version: RCSL 1.0/RPSL 1.0
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
*
* The contents of this file, and the
www.eeworm.com/read/132069/5921271
c buffers.c
/* ***** BEGIN LICENSE BLOCK *****
* Version: RCSL 1.0/RPSL 1.0
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
*
* The contents of this file, and the
www.eeworm.com/read/131315/5930976
c realloc.c
#include
#include
void *
__fix_realloc(p, n)
void *p;
size_t n;
{
return (p == 0 ? malloc(n) : realloc(p, n));
}
www.eeworm.com/read/131315/5932191
c dirprt.c
/* @(#)dirprt.c 1.2 90/01/03 NFS Rev 2 Testsuite
* 1.2 Lachman ONC Test Suite source";
*/
#include
#ifndef major
#include
#endif
#ifdef SVR3
#include
#else
#in
www.eeworm.com/read/131315/5935382
h protos.h
/*
* protos.h -- function prototypes for when the headers don't have them.
*/
/*
* Copyright (C) 1991, 1992, the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implement
www.eeworm.com/read/131315/5935790
sh isc_3_2_2.sh
set `echo $libswanted | sed -e 's/ x / /' -e 's/ PW / /' -e 's/ malloc / /'`
libswanted="inet malloc $*"
doio_cflags='ccflags="$ccflags -DENOTSOCK=103"'
tdoio_cflags='ccflags="$ccflags -DENOTSOCK=103"
www.eeworm.com/read/131315/5936245
h xm-next.h
#include "xm-m68k.h"
/* malloc does better with chunks the size of a page. */
#define OBSTACK_CHUNK_SIZE (getpagesize ())
www.eeworm.com/read/131315/5937753
c realloc.c
#include
#include
void *
__fix_realloc(p, n)
void *p;
size_t n;
{
return (p == 0 ? malloc(n) : realloc(p, n));
}
www.eeworm.com/read/131315/5937947
c realloc.c
#include
#include
void *
__fix_realloc(p, n)
void *p;
size_t n;
{
return (p == 0 ? malloc(n) : realloc(p, n));
}
www.eeworm.com/read/131315/5938747
c keymaps.c
/* keymaps.c -- Functions and keymaps for the GNU Readline library. */
/* Copyright (C) 1988, 1989, 1991 Free Software Foundation, Inc.
This file is part of GNU Readline, a library for reading li