代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/109651/15552928
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/109477/15556505
h malloc.h
#ifndef _LINUX_MALLOC_H
#define _LINUX_MALLOC_H
#warning linux/malloc.h is deprecated, use linux/slab.h instead.
#include
#endif /* _LINUX_MALLOC_H */
www.eeworm.com/read/106670/15630759
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/106611/15632744
cpp malloc.cpp
//
// A shared memory management module, using virtual memory mapped to a memory
// file. Adapted from a UNIX-based malloc routine originally conceived by
// William L. Sebok, obtained from UUNET c
www.eeworm.com/read/105179/15675797
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
*
www.eeworm.com/read/105179/15676060
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(__FILE__
www.eeworm.com/read/105103/15677892
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/104342/15697885
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
*
www.eeworm.com/read/104056/15710973
c malloc.c
/* Work around bug on some systems where malloc (0) fails.
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it und