代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/126082/14446574
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/225739/14518428
c misc.c
/* $Id$ */
/* ----------------------------------------------------------------------- *
*
* Copyright 2001 H. Peter Anvin - All Rights Reserved
*
* This program is free software available u
www.eeworm.com/read/223339/14644795
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/223007/14664916
c a_client.c
/*
** A program that uses the less error-prone memory allocator.
*/
#include "alloc.h"
void
function()
{
int *new_memory;
/*
** Get space for a bunch of integers
*/
new_memory = MA
www.eeworm.com/read/122580/14682543
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/121010/14775328
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/120207/14809788
h put.h
/* PUT.H -- STDERR output routines, no malloc */
// calls _dos_write, returns number of bytes actually writen
unsigned doswrite(int handle, char far *s, unsigned len);
// displays ASCIIZ string
www.eeworm.com/read/119982/14815760
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/119678/14824541
c lssvmfile.c
#include "lssvmFILE.h"
int show=0;
int m,n, xdim, ydim, kl, ssv;
double *kernel_pars, gam;
double eps, fi_bound;
int n_kernel_pars,max_itr;
char* kernel_key;
int n_dyn_pars, *dyn_pars;
double *svX,
www.eeworm.com/read/119349/14832202
y new.y
%{
#include
#include
#include
#include
#include "struct.h"
#include "error.h"
/*#include "wbexe.c"*/ /*里面有语法树显示,初步语义检查,数据字典显示*/
char sql[256];