代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/366065/9834817
3 alloc.3
'\"
'\" Copyright (c) 1995-1996 Sun Microsystems, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
'
www.eeworm.com/read/365074/9880097
h alloc.h
/*alloc.h:内存管理模块的接口*/
#ifndef ALLOC_H
#define ALLOC_H
#define NEW(p,a) (p = allocate(sizeof(*(p)),(a)))
#define NEW0(p,a) (memset(NEW(p,a),0,sizeof(*(p))))
enum {PERM=0, FUNC, STMT};
void *allocat
www.eeworm.com/read/365074/9880119
c alloc.c
/*alloc.c: 对内存进行分配管理*/
#include "cmm.h"
#include "alloc.h"
struct block {
struct block *next;
char *limit;
char *avail;
};
union align {
int i;
char *p;
void (*func)(void);
};
union header{
www.eeworm.com/read/365033/9880992
h alloc.h
www.eeworm.com/read/365033/9881186
h alloc.h
www.eeworm.com/read/364910/9888432
h alloc.h
//==========================================================================;
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUD
www.eeworm.com/read/364910/9888438
cpp alloc.cpp
//==========================================================================;
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUD
www.eeworm.com/read/363449/9950678
h alloc.h
/* alloc.h
memory management functions and variables.
Copyright (c) 1987, 1991 by Borland International
All Rights Reserved.
*/
#if !defined(__ALLOC_H)
#define __ALLOC_H
#i
www.eeworm.com/read/165080/10077375
h alloc.h
/* alloc.h
memory management functions and variables.
Copyright (c) Borland International 1987,1988,1990
All Rights Reserved.
*/
#if !defined(__ALLOC)
#define __ALLOC
#define
www.eeworm.com/read/163075/10176800
h alloc.h
#if !defined(_ALLOC_)
#define _ALLOC_
float **allocate_2d_float(int N,int M,char zero);
void free_2d_float(float **a,int N);
double **allocate_2d_double(int N,int M,char zero);
void