代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6242636
c malloc.c
#ifndef lint
static char *sccsid = "@(#)malloc.c 4.1 (ULTRIX) 7/2/90";
#endif lint
/************************************************************************
* *
* Copyright (c) 1985 by
www.eeworm.com/read/101082/6245485
3 malloc.3
.\" SCCSID: @(#)malloc.3 3.1 11/24/87
.TH malloc 3 RISC
.SH Name
malloc, free, realloc, calloc, alloca \- memory allocator
.SH Syntax
.nf
.B char *malloc(size)
.B unsigned size;
.PP
.B free(ptr)
.B vo
www.eeworm.com/read/101082/6247371
3 malloc.3
.\" SCCSID: @(#)malloc.3 8.1 9/11/90
.TH malloc 3 VAX
.SH Name
malloc, free, realloc, calloc, alloca \- memory allocator
.SH Syntax
.nf
.B #include
.PP
.B void *malloc(\fIsize\fP)
.B size_t
www.eeworm.com/read/273303/6281500
o malloc.o
www.eeworm.com/read/273303/6281551
h malloc.h
/*
* GeekOS memory allocation API
* Copyright (c) 2001, David H. Hovemeyer
* $Revision: 1.9 $
*
* This is free software. You are permitted to use,
* redistribute, and modif
www.eeworm.com/read/273303/6281667
c malloc.c
/*
* GeekOS memory allocation API
* Copyright (c) 2001, David H. Hovemeyer
* $Revision: 1.12 $
*
* This is free software. You are permitted to use,
* redistribute, and modi
www.eeworm.com/read/274660/6288485
c malloc.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/322905/6301093
c malloc.c
/*
* malloc.c --- a general purpose kernel memory allocator for Linux.
*
* Written by Theodore Ts'o (tytso@mit.edu), 11/29/91
*
* This routine is written to be as fast as possible, so that i
www.eeworm.com/read/322905/6301356
h malloc.h
#ifndef _LINUX_MALLOC_H
#define _LINUX_MALLOC_H
#include
#ifdef CONFIG_DEBUG_MALLOC
#define kmalloc(a,b) deb_kmalloc(__FILE__,__LINE__,a,b)
#define kfree_s(a,b) deb_kfree_s(_
www.eeworm.com/read/310703/6306506
c malloc.c
/*
* malloc.c --- a general purpose kernel memory allocator for Linux.
*
* Written by Theodore Ts'o (tytso@mit.edu), 11/29/91
*
* This routine is written to be as fast as possible, so that it
*