代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/198623/7919568
s alloc.s
/ storage allocator for use with C
/
/
/
/ hand-tooled from C compilation to modify save-return
/ so that it can be called from within the C save
/ when running with coroutines
/
/#
//*
/ * C storage
www.eeworm.com/read/198623/7919831
c alloc.c
#
/*
* C library -- alloc/free
*/
#define logical char *
struct fb {
logical size;
char *next;
};
int freelist[] {
0,
-1,
};
logical slop 2;
alloc(asize)
logical asize;
{
register logical s
www.eeworm.com/read/197919/7962072
h alloc.h
/*******dynamic memory allocation**********************/
complex *CMPLX_Vector(nh)
/* Allocates a complex vector with range [0...nh-1] */
int nh;
{
complex *v;
v=(complex *)malloc((unsigned)
www.eeworm.com/read/197653/7982096
h alloc.h
/*
* Copyright (c) 1996-1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby gra
www.eeworm.com/read/197653/7982521
pthread_alloc
/*
* Copyright (c) 1996
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted
www.eeworm.com/read/398260/7996634
h alloc.h
www.eeworm.com/read/247262/12670408
h alloc.h
www.eeworm.com/read/331180/12841569
c alloc.c
#include "db.h"
/* Allocate & initialize a DB structure, and all the buffers it needs */
DB *
_db_alloc(int namelen)
{
DB *db;
/* Use calloc, to init structure to zero */
if ( (db = calloc(1
www.eeworm.com/read/143631/12855673