代码搜索:realloc

找到约 1,059 项符合「realloc」的源代码

代码结果 1,059
www.eeworm.com/read/324802/13243356

awk memleak.awk

# # This script looks for memory leaks by analyzing the output of "sqlite" # when compiled with the MEMORY_DEBUG=2 option. # /[0-9]+ malloc / { mem[$6] = $0 } /[0-9]+ realloc / { mem[$8] = "";
www.eeworm.com/read/136812/5857265

c mtest.c

#ifndef lint static char sccsid[] = "@(#)mtest.c 1.1 (Sun) 7/30/92"; #endif /* * a continuous test of random sequences of malloc(), free(), and realloc() */ #include #define LISTSIZE 25
www.eeworm.com/read/100043/6275014

c dlmalloc.c

/* * $Id: dlmalloc.c,v 1.2 1998/09/23 17:16:10 wessels Exp $ */ /* ---------- To make a malloc.h, start cutting here ------------ */ /* A version of malloc/free/realloc written by Doug Lea and
www.eeworm.com/read/492302/6421244

h tomcrypt_custom.h

#ifndef TOMCRYPT_CUSTOM_H_ #define TOMCRYPT_CUSTOM_H_ /* macros for various libc functions you can change for embedded targets */ #define XMALLOC malloc #define XREALLOC realloc #define XCALLOC cal
www.eeworm.com/read/492302/6421301

h tomcrypt_custom.h

#ifndef TOMCRYPT_CUSTOM_H_ #define TOMCRYPT_CUSTOM_H_ /* macros for various libc functions you can change for embedded targets */ #define XMALLOC malloc #define XREALLOC realloc #define XCALLOC cal
www.eeworm.com/read/158283/11627538

awk memleak.awk

# # This script looks for memory leaks by analyzing the output of "sqlite" # when compiled with the SQLITE_DEBUG=2 option. # /[0-9]+ malloc / { mem[$6] = $0 } /[0-9]+ realloc / { mem[$8] = "";
www.eeworm.com/read/157666/11674569

h tomcrypt_custom.h

#ifndef TOMCRYPT_CUSTOM_H_ #define TOMCRYPT_CUSTOM_H_ /* macros for various libc functions you can change for embedded targets */ #define XMALLOC malloc #define XREALLOC realloc #define XCALLOC cal
www.eeworm.com/read/157666/11674704

h tomcrypt_custom.h

#ifndef TOMCRYPT_CUSTOM_H_ #define TOMCRYPT_CUSTOM_H_ /* macros for various libc functions you can change for embedded targets */ #define XMALLOC malloc #define XREALLOC realloc #define XCALLOC cal
www.eeworm.com/read/157653/11676567

awk memleak.awk

# # This script looks for memory leaks by analyzing the output of "sqlite" # when compiled with the SQLITE_DEBUG=2 option. # /[0-9]+ malloc / { mem[$6] = $0 } /[0-9]+ realloc / { mem[$8] = "";
www.eeworm.com/read/156614/11788142

h malloc.h

/* A version of malloc/free/realloc written by Doug Lea and released to the public domain. Send questions/comments/complaints/performance data to dl@cs.oswego.edu * VERSION 2.6.6 Sun Mar 5 1