代码搜索:realloc

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

代码结果 1,059
www.eeworm.com/read/363486/2918158

c ftsystem.c

// TetiSoft: Modified to avoid fopen() fclose() fread() fseek() ftell() // malloc() realloc() and free() which can't be used in an amiga // shared run-time library linked with libinit.o #include
www.eeworm.com/read/159001/5589396

c ftsystem.c

// TetiSoft: Modified to avoid fopen() fclose() fread() fseek() ftell() // malloc() realloc() and free() which can't be used in an amiga // shared run-time library linked with libinit.o #include
www.eeworm.com/read/292919/8324825

c client.c

#include "calld.h" static void client_alloc(void) /* alloc more entries in the client[] array */ { int i; if (client == NULL) client = malloc(NALLOC * sizeof(Client)); else client = realloc
www.eeworm.com/read/392544/8336330

c client.c

#include "calld.h" static void client_alloc(void) /* alloc more entries in the client[] array */ { int i; if (client == NULL) client = malloc(NALLOC * sizeof(Client)); else client = realloc
www.eeworm.com/read/269691/11082974

c client.c

#include "calld.h" static void client_alloc(void) /* alloc more entries in the client[] array */ { int i; if (client == NULL) client = malloc(NALLOC * sizeof(Client)); else client = realloc
www.eeworm.com/read/335362/12534295

c client.c

#include "calld.h" static void client_alloc(void) /* alloc more entries in the client[] array */ { int i; if (client == NULL) client = malloc(NALLOC * sizeof(Client)); else client = realloc
www.eeworm.com/read/103960/15715514

c client.c

#include "calld.h" static void client_alloc(void) /* alloc more entries in the client[] array */ { int i; if (client == NULL) client = malloc(NALLOC * sizeof(Client)); else client = realloc
www.eeworm.com/read/100585/15870553

c client.c

#include "calld.h" static void client_alloc(void) /* alloc more entries in the client[] array */ { int i; if (client == NULL) client = malloc(NALLOC * sizeof(Client)); else client = realloc
www.eeworm.com/read/184772/9077018

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/377683/9265436

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] = "";