代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/206632/5005005
c alloc.c
/*++
Copyright (c) 1997-2000 Microsoft Corporation. All rights reserved.
Module Name:
alloc.c
Abstract:
This file handles the creation/destruction of all FSDMGR data
struc
www.eeworm.com/read/205824/5017057
c alloc.c
/* $OpenBSD: alloc.c,v 1.9 2004/05/04 20:28:40 deraadt Exp $ */
/* Memory allocation... */
/*
* Copyright (c) 1995, 1996, 1998 The Internet Software Consortium.
* All rights reserved.
*
www.eeworm.com/read/205824/5019671
c alloc.c
/*
* Unit test suite for memory allocation functions.
*
* Copyright 2002 Geoffrey Hausheer
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of
www.eeworm.com/read/199657/5075579
h alloc.h
/* alloc.h
Definitions for the object management API protocol memory allocation... */
/*
* Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1996-2003 by Internet
www.eeworm.com/read/195341/5111608
c alloc.c
#
/*
*/
#include "../param.h"
#include "../systm.h"
#include "../filsys.h"
#include "../conf.h"
#include "../buf.h"
#include "../inode.h"
#include "../user.h"
/*
* iinit is called once (from main)
www.eeworm.com/read/195341/5111848
3 alloc.3
.th ALLOC III 3/1/74
.sh NAME
alloc, free \*- core allocator
.sh SYNOPSIS
.ft B
.nf
char *alloc(size)
.s3
free(ptr)
char *ptr;
.fi
.ft R
.sh DESCRIPTION
.it Alloc
and
.it free
provide a simple general
www.eeworm.com/read/195341/5112027
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/195341/5112097
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/195013/5122230
c alloc.c
/*
* linux/fs/hpfs/alloc.c
*
* Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
*
* HPFS bitmap operations
*/
#include "hpfs_fn.h"
/*
* Check if a sector is allocated in bitma
www.eeworm.com/read/191923/5160823
cpp alloc.cpp
// Common/Alloc.cpp
#include "StdAfx.h"
#ifndef WIN32
#include
#endif
#include "Alloc.h"
// #include "NewHandler.h"
void *MyAlloc(size_t size)
{
return ::malloc(size);
}