代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/181930/9224916
c svd.c
#include "stdio.h"
#include "stdlib.h"
#include "mpi.h"
#include "math.h"
#include "string.h"
#define E 0.0001
#define intsize sizeof(int)
#define floatsize sizeof(float)
#define A(x,y) A[x*col+y]
www.eeworm.com/read/181930/9225089
c single.c
#include "stdio.h"
#include "stdlib.h"
#include "mpi.h"
#include "math.h"
#include "string.h"
#define E 0.0001
#define intsize sizeof(int)
#define floatsize sizeof(float)
#define A(x,y) A[x*col+y]
#de
www.eeworm.com/read/377683/9265692
test rtree3.test
# 2008 Feb 19
#
# 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 forgiveness for yourself
www.eeworm.com/read/377683/9265767
c os.c
/*
** 2005 November 29
**
** 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 forgivene
www.eeworm.com/read/181160/9272198
c copy.c
#include
#include "mpi.h"
#include "mpptest.h"
#ifdef HAVE_STDLIB_H
#include
#endif
#ifdef HAVE_STRING_H
#include /* for memcpy */
#endif
/*
Test of
www.eeworm.com/read/180601/9301110
c fillheap.c
#include
#include
void main(void)
{
char *buffer1, *buffer2, *buffer3;
int i, state;
buffer1 = malloc(100);
buffer2 = malloc(200);
buffer3 = malloc(300)
www.eeworm.com/read/376627/9311722
c 单链表2.c
#include
#include
struct node{
int key;
struct node *next;
};
void creat_link(struct node *);
main()
{
struct node *head=NULL;
creat_li
www.eeworm.com/read/180072/9320869
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/376114/9330688
c fillheap.c
#include
#include
void main(void)
{
char *buffer1, *buffer2, *buffer3;
int i, state;
buffer1 = malloc(100);
buffer2 = malloc(200);
buffer3 = malloc(300)
www.eeworm.com/read/178172/9416756
h imem.h
/* Integer Version 2.0, RD, 15.1.93 imem.h */
#ifndef _IMEM_H
#define _IMEM_H
#include
#if defined(__STDC__) || defined(__MWERKS__)
#include
#else
#include
#endif
E