代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/161054/5563284
c malloc.c
/*
*----------------------------------------------------------------------
* T-Kernel
*
* Copyright (C) 2004-2006 by Ken Sakamura. All rights reserved.
* T-Kernel is distributed under th
www.eeworm.com/read/159825/5580579
h malloc.h
/*
A version of malloc/free/realloc written by Doug Lea and released to the
public domain. Send questions/comments/complaints/performance data
to dl@cs.oswego.edu
* VERSION 2.6.6 Sun Mar
www.eeworm.com/read/159825/5580847
h malloc.h
#ifndef _LINUX_MALLOC_H
#define _LINUX_MALLOC_H
#include
#ifdef DEBUG_KMALLOC
#undef kmalloc
#undef kfree
extern void * kmalloc(size_t size, int priority);
extern void kfre
www.eeworm.com/read/158865/5593269
h malloc.h
/* malloc.h -- Public #include File (module.h template V1.0)
Copyright (C) 1995 Free Software Foundation, Inc.
Contributed by James Craig Burley.
This file is part of GNU Fortran.
GNU Fortran
www.eeworm.com/read/158865/5593325
c malloc.c
/* malloc.c -- Implementation File (module.c template V1.0)
Copyright (C) 1995 Free Software Foundation, Inc.
Contributed by James Craig Burley.
This file is part of GNU Fortran.
GNU Fortran i
www.eeworm.com/read/155856/5618510
c malloc.c
/*-----------------------------------------------------------------------------
MALLOC.C is part of the C51 Compiler package from Keil Software.
Copyright (c) 1995-2002 Keil Software. All rights re
www.eeworm.com/read/475955/6770971
c malloc.c
#include
#include
void main(void)
{
char *string;
int *int_values;
float *float_values;
if ((string = (char *) malloc(50)))
printf("Successfully alloc
www.eeworm.com/read/474523/6811610
h malloc.h
/*
* malloc.h
*
* Support for programs which want to use malloc.h to get memory management
* functions. Unless you absolutely need some of these functions and they are
* not in the ANSI headers y
www.eeworm.com/read/473712/6833836
h malloc.h
www.eeworm.com/read/473341/6851347
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
*