代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/137311/5825893
c jmemnobs.c
/*
* jmemnobs.c
*
* Copyright (C) 1992-1996, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/136865/5842097
c jmemnobs.c
/*
* jmemnobs.c
*
* Copyright (C) 1992-1996, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/136815/5856789
c jmemnobs.c
/*
* jmemnobs.c
*
* Copyright (C) 1992-1996, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/136571/5868346
c multi_dec.c
/************************************************************************
* *
* multi_dec.c Test opendivx decoding by several
www.eeworm.com/read/136041/5875647
entries
/list.h/1.1/Thu Jul 11 10:55:30 2002//
/malloc-ecos.c/1.2/Thu Jan 9 23:00:07 2003//
/fs-ecos.c/1.8/Tue Jan 21 23:00:07 2003//
/jffs2port.h/1.3/Tue Jan 21 23:00:07 2003//
/os-ecos.h/1.5/Tue Jan 21 23:
www.eeworm.com/read/135582/5884805
c jmemnobs.c
/*
* jmemnobs.c
*
* Copyright (C) 1992-1996, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/135153/5887697
in config.in
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
#
mainmenu_name "BusyBox Configuration"
mainmenu_option next_comment
comment 'BusyBox general
www.eeworm.com/read/133772/5901065
h slab.h
#ifndef __LINUX_SLAB_H__
#define __LINUX_SLAB_H__
#include
#include /* Don't ask. Linux headers are a mess. */
#define kmalloc(x, y) malloc(x)
#define kfree(x) free(
www.eeworm.com/read/133772/5901559
c decompress.c
//==========================================================================
//
// decompress.c
//
// RedBoot decompress support
//
//==================================================
www.eeworm.com/read/133299/5906078
c strdup.c
#include
#include
#include
#include
char *strdup(const char *inStr)
{
char *outStr = NULL;
if (inStr == NULL) {
return NULL;
}
outStr =