代码搜索:alloc

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

代码结果 10,000
www.eeworm.com/read/342248/12033177

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, or modify this program * f
www.eeworm.com/read/342248/12033214

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, or modify this program * for purposes of res
www.eeworm.com/read/342248/12033252

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, or modify this program * f
www.eeworm.com/read/342248/12033314

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, or modify this program * for purposes of res
www.eeworm.com/read/342248/12033335

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, or modify this program * f
www.eeworm.com/read/342248/12033369

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, or modify this program * for purposes of res
www.eeworm.com/read/342248/12033391

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, or modify this program * f
www.eeworm.com/read/152752/12089248

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/254249/12153550

h alloc.h

www.eeworm.com/read/340477/12155311

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/common/m5282evb.h" #i