代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/250662/12393187
c alloc.c
/*
** Implementation for a less error-prone memory allocator.
*/
#include
#include "alloc.h"
#undef malloc
void *
alloc( size_t size )
{
void *new_mem;
/*
** Ask for the re
www.eeworm.com/read/337040/12400863
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/337040/12401045
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/233414/14154559
h alloc.h
/* ALLOC.H - Interface to memory allocation procedure. */
/* Copyright (c) 1996 by Radford M. Neal
*
* Permission is granted for anyone to copy, use, modify, or distribute this
* program and acco
www.eeworm.com/read/233414/14154631
c alloc.c
/* ALLOC.C - Routine to allocate memory and complain if it doesn't work. */
/* Copyright (c) 1996 by Radford M. Neal
*
* Permission is granted for anyone to copy, use, modify, or distribute this
www.eeworm.com/read/131212/14156579
gif alloc.gif
www.eeworm.com/read/233041/14171486
h alloc.h
www.eeworm.com/read/231996/14212035
xml alloc.xml
Custom Allocation
Like GMP, PBC can be instructed to use custom memory allocation functions.
This must be done before any memory allocation is performed,
usually at the
www.eeworm.com/read/129814/14224070
c alloc.c
/*
* area-based allocation built on malloc/free
*/
#include "sh.h"
#ifdef TEST_ALLOC
# define shellf printf
# ifndef DEBUG_ALLOC
# define DEBUG_ALLOC
# endif /* DEBUG_ALLOC */
#endif /* TEST_ALLO
www.eeworm.com/read/230929/14267634