代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/166734/5473165
c alloc.c
#include "c.h"
struct block {
struct block *next;
char *limit;
char *avail;
};
union align {
long l;
char *p;
double d;
int (*f)(void);
};
union header {
struct block b;
union a
www.eeworm.com/read/163883/5506812
h alloc.h
/*
* Copyright (c) 1999
* Boris Fomitchev
*
* This material is provided "as is", with absolutely no warranty expressed
* or implied. Any use is at your own risk.
*
* Permission to use o
www.eeworm.com/read/163883/5506870
h alloc.h
/*
* Copyright (c) 1996,1997
* Silicon Graphics Computer Systems, Inc.
*
* Copyright (c) 1999
* Boris Fomitchev
*
* This material is provided "as is", with absolutely no warranty expres
www.eeworm.com/read/163883/5506978
pthread_alloc
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Copyright (c) 1996,1997
* Silicon Graphics Computer Systems, Inc.
*
* Copyright (c) 1997
* Moscow Center for SPARC Technology
www.eeworm.com/read/163844/5507836
c alloc.c
/*
* File: alloc.c
* Purpose: generic malloc() and free() engine
*
* Notes: 99% of this code stolen/borrowed from the K&R C
* examples.
*
*/
#include "src/init/m5282evb.h"
#inc
www.eeworm.com/read/162868/5512801
c alloc.c
#include
#include
#define MAGIC (Header *)1111
typedef long Align;
union header {
struct {
union header *ptr;
unsigned size;
} s;
www.eeworm.com/read/350097/3135029
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/349580/3143005
cpp alloc.cpp
// Copyright (C) 2004-2005 Anders Logg.
// Licensed under the GNU LGPL Version 2.1.
//
// First added: 2004-12-21
// Last changed: 2005
#include
#include
usin
www.eeworm.com/read/349580/3143026
h alloc.h
// Copyright (C) 2004-2005 Anders Logg.
// Licensed under the GNU LGPL Version 2.1.
//
// First added: 2004-12-21
// Last changed: 2005
#ifndef __ALLOC_H
#define __ALLOC_H
#include
www.eeworm.com/read/342088/3240306
h _alloc.h
typedef struct cell_hdr
{
struct cell_hdr *next;
void *EndAddr;
int size;
#ifdef DEBUG
unsigned int InUse;
#endif
} CELL_HDR;
extern CELL_HDR *__FreeList;
#define _BND 1
#define