代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/295408/8166610
c svm-train.c
#include
#include
#include
#include
#include "svm.h"
#define Malloc(type,n) (type *)malloc((n)*sizeof(type))
void exit_with_help()
{
printf(
"Usage: svm-tr
www.eeworm.com/read/132657/14081899
cpp testmain.cpp
#include
#include
#include
#include
#include "svm.h"
#include
#define Malloc(type,n) (type *)malloc((n)*sizeof(type))
svm_result training(do
www.eeworm.com/read/204796/15333503
c svm-train.c
#include
#include
#include
#include
#include "svm.h"
#define Malloc(type,n) (type *)malloc((n)*sizeof(type))
void exit_with_help()
{
printf(
"Usage: svm-tr
www.eeworm.com/read/106962/15616604
c svm-train.c
#include
#include
#include
#include
#include "svm.h"
#define Malloc(type,n) (type *)malloc((n)*sizeof(type))
void exit_with_help()
{
printf(
"Usage: svm-tr
www.eeworm.com/read/104056/15710897
changelog
2002-07-20 Jim Meyering
* xmalloc.c: Adjust to work with new autoconf macros, AC_FUNC_MALLOC
and AC_FUNC_REALLOC: test #ifndef HAVE_MALLOC/HAVE_REALLOC.
* gettext.h: Upgra
www.eeworm.com/read/246401/12730047
c main6-3.c
#include
#include
#include /* malloc()等 */
#include /* INT_MAX等 */
#include /* EOF(=^Z或F6),NULL */
#include /* atoi() */
#include
www.eeworm.com/read/152814/5666441
h mibincl.h
/*
* mibincl.h
*/
#include
#include
#if HAVE_STDLIB_H
#include
#endif
#if HAVE_MALLOC_H
#include
#endif
#if TIME_WITH_SYS_TIME
# ifdef WIN32
# includ
www.eeworm.com/read/261765/11624950
h graphol.h
#include
#include
#include /* malloc()等 */
#include /* INT_MAX等 */
#include /* EOF(=^Z或F6),NULL */
#include /* atoi() */
#include
www.eeworm.com/read/240503/4573365
h stdlib.h
/* some things shouldn't be macros, get out your barf bag */
#ifndef _BSD_STDLIB_H
#define _BSD_STDLIB_H
#undef __MALLOC_0_RETURNS_NULL
#define __MALLOC_0_RETURNS_NULL
#include_next
#unde
www.eeworm.com/read/233448/4692489
c fail7-frag.c
#include
#include
#include
int main ()
{
char *foo;
char *bar;
foo = (char *)malloc (12);
bar = (char *)malloc (10);
memcpy(foo+1, bar+1, 10);
return 0;
}
/* { dg-outp