代码搜索:alloc

找到约 10,000 项符合「alloc」的源代码

代码结果 10,000
www.eeworm.com/read/191923/5160832

h alloc.h

// Common/Alloc.h #ifndef __COMMON_ALLOC_H #define __COMMON_ALLOC_H #include void *MyAlloc(size_t size); void MyFree(void *address); void *BigAlloc(size_t size); void BigFree(v
www.eeworm.com/read/191923/5160991

h _alloc.h

/* * * Copyright (c) 1996,1997 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1997 * Moscow Center for SPARC Technology * * Copyright (c) 1999 * Boris Fomitchev * * This mater
www.eeworm.com/read/190666/5181943

h alloc.h

// Backward-compat support -*- C++ -*- // Copyright (C) 2001 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute
www.eeworm.com/read/189477/5192712

h alloc.h

#ifndef _ALLOC_H #define _ALLOC_H #ifdef __cplusplus extern "C" { #endif void *malloc(size_t __size); void free(void *__block); #ifdef __cplusplus } #endif #endif
www.eeworm.com/read/183395/5256259

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
www.eeworm.com/read/183395/5256262

c alloc.c

#include #include #include #include /* #define DEBUG */ #ifdef DEBUG #define calloc xcalloc #define malloc xmalloc #define realloc xrealloc #d
www.eeworm.com/read/180437/5284630

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/180137/5289165

h alloc.h

/* alloc.h */ typedef unsigned SIZE_T; /* Like malloc and realloc, but don't return if no memory is available. */ extern UNIV xmalloc P((SIZE_T)); extern UNIV xrealloc P((UNIV, SIZE_T));
www.eeworm.com/read/179911/5300139

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/179311/5306252

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