代码搜索:realloc

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

代码结果 1,059
www.eeworm.com/read/134009/5895847

al realloc.al

# NOTE: Derived from ../../lib/POSIX.pm. # Changes made here will be lost when autosplit again. # See AutoSplit.pm. package POSIX; #line 464 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/r
www.eeworm.com/read/133772/5899785

c realloc.c

//================================================================= // // realloc.c // // Testcase for C library realloc() // //====================================================
www.eeworm.com/read/131315/5930708

3 realloc.3

.\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are per
www.eeworm.com/read/131315/5930976

c realloc.c

#include #include void * __fix_realloc(p, n) void *p; size_t n; { return (p == 0 ? malloc(n) : realloc(p, n)); }
www.eeworm.com/read/131315/5937753

c realloc.c

#include #include void * __fix_realloc(p, n) void *p; size_t n; { return (p == 0 ? malloc(n) : realloc(p, n)); }
www.eeworm.com/read/131315/5937947

c realloc.c

#include #include void * __fix_realloc(p, n) void *p; size_t n; { return (p == 0 ? malloc(n) : realloc(p, n)); }
www.eeworm.com/read/128447/5990279

c realloc.c

//================================================================= // // realloc.c // // Testcase for C library realloc() // //==========================================================
www.eeworm.com/read/126411/6017624

c realloc.c

/* Change the size of a block allocated by `malloc'. Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc. Written May 1989 by Mike Haertel. This library is free software; you can
www.eeworm.com/read/125688/6023835

c realloc.c

/* * Copyright (c) 1994-1995, 1998, 1999 University of Utah and the Flux Group. * All rights reserved. * * This file is part of the Flux OSKit. The OSKit is free software, also known * as "open
www.eeworm.com/read/124347/6051180

c realloc.c

/* dummy file to override one object in stdlib directory */