代码搜索结果

找到约 10,000 项符合 Memory 的代码

memory.c

# #include "defs.h" #include freeinit(fl, size) struct Freelist *fl; int size; { fl -> head = (struct Freenode *) NULL; fl -> nodesize = size; } char *getfree(fl) struct Freelist *fl; { in

memory.h

/* memory.h Memory manipulation functions Copyright (c) Borland International 1991 All Rights Reserved. */ #include

memory.c

#include extern char *calloc(unsigned int,int); extern int free(char *); char *safe_calloc(n,size) int n,size; { char *space; space = calloc((unsigned)n,(unsigned)size); if (

memory.c

#include "./pFDTD.h" char ***char_3d_memory(int imax,int jmax,int kmax); float *float_1d_memory(int imax); float ***float_3d_memory(int imax,int jmax,int kmax); /* input dielectric structure *