代码搜索:malloc

找到约 10,000 项符合「malloc」的源代码

代码结果 10,000
www.eeworm.com/read/119349/14832216

y drop.y

%{ #include #include #include #include #include "struct.h" #include "error.h" /*#include "wbexe.c"*/ /*里面有语法树显示,初步语义检查,数据字典显示*/ char sql[256];
www.eeworm.com/read/219939/14859154

h ydirectenv.h

/* * YAFFS: Yet another FFS. A NAND-flash specific file system. * ydirectenv.h: Environment wrappers for direct. * * Copyright (C) 2002 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar E
www.eeworm.com/read/219502/14878431

cpp algo0209.cpp

Status ListInsert_L(LinkList &L, int i, ElemType e) { // 算法2.9 // 在带头结点的单链线性表L的第i个元素之前插入元素e LinkList p,s; p = L; int j = 0; while (p && j < i-1) { // 寻找第i-1个结点 p = p->next;
www.eeworm.com/read/117961/14892683

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/218565/14915424

cpp shm_test.cpp

#include "ace/MMAP_Memory_Pool.h" #include "ace/Shared_Memory_Pool.h" #include #include "ace/Malloc.h" #include "ace/Malloc_T.h" #define DATA_SIZE 100 #define MESSAGE1 "Hiya
www.eeworm.com/read/117532/14916937

c 多项式的加法 .c

#include #include typedef struct polyn { int xi_data; int zhi_data; struct polyn *next; }polyn; polyn *create() { polyn *head,*p1,*p2; int n=0; head=NULL;
www.eeworm.com/read/217300/14970044

c xmalloc.c

void * xmalloc(size_t size) { register uoid * value = malloc(size); if (value == 0) err_exit ("virtual memory exhausted"); return value; }
www.eeworm.com/read/215124/15073510

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/214991/15079467

c multi_dec.c

/************************************************************************ * * * multi_dec.c Test opendivx decoding by several
www.eeworm.com/read/212470/15156008

c bigint.c

#include "BigInt.h" #include #include #include #include #include //小素数表 const static int PrimeTable[550]= { 3, 5, 7, 11, 13