代码搜索:alloc

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

代码结果 10,000
www.eeworm.com/read/163075/10176824

c alloc.c

#include #include "macros.h" float **allocate_2d_float(int N,int M,char zero) { int i; float **mymat; mymat=(float **)malloc(N*sizeof(float *)); check_ptr(mymat,"allocat
www.eeworm.com/read/358412/10189573

h alloc.h

www.eeworm.com/read/162272/10320701

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 hereb
www.eeworm.com/read/425797/10322037

h alloc.h

www.eeworm.com/read/162028/10344011

h alloc.h

/* * alloc.h -- memory allocation defines for cluster * * $Header: /usr/src/local/conn/cluster/RCS/alloc.h,v 1.8 1993/01/20 19:00:40 stolcke Exp $ * $Log: alloc.h,v $ * Revision 1.8 1993/01/20
www.eeworm.com/read/162028/10344054

c alloc.c

/* * alloc.c -- Memory allocation utilities for cluster * * $Log: alloc.c,v $ * Revision 1.8 1993/01/20 19:00:40 stolcke * triangular matrix stuff no longer needed * * Revision 1.7 1993/01/
www.eeworm.com/read/280060/10357783

h alloc.h

/* alloc.h memory management functions and variables. Copyright (c) 1987, 1992 by Borland International All Rights Reserved. */ #if !defined(__ALLOC_H) #define __ALLOC_H #i
www.eeworm.com/read/354066/10392608

h alloc.h

/* alloc.h memory management functions and variables. Copyright (c) 1987, 1992 by Borland International All Rights Reserved. */ #if !defined(__ALLOC_H) #define __ALLOC_H #i
www.eeworm.com/read/353619/10434786

c alloc.c

/* * alloc.c * Copyright (C) 2000-2003 Michel Lespinasse * Copyright (C) 1999-2000 Aaron Holtzman * * This file is part of mpeg2dec, a free MPEG-2 vid
www.eeworm.com/read/279387/10442183

c alloc.c

/**************************************************************************** * The following functions dynamically allocate memory, * * initialize memory and free memory.