Searched refs:realloc (Results 1 - 25 of 35) sorted by relevance

12

/ast/src/cmd/3d/
H A Dast.c106 #undef realloc macro
112 extern void* realloc(void*, size_t);
118 extern void* _ast_realloc(void* p, size_t n) { return realloc(p, n); }
/ast/src/lib/libtk/compat/
H A Dstdlib.h38 extern char * realloc _ANSI_ARGS_((char *ptr, unsigned int numBytes));
/ast/src/lib/libast/vmalloc/
H A Dmalloc.c36 #define realloc ______realloc macro
66 #undef realloc macro
67 #define realloc _ast_realloc macro
157 #undef realloc macro
169 #undef realloc macro
176 #define realloc _ast_realloc macro
530 extern Void_t* realloc(reg Void_t* data, reg size_t size) function
532 extern Void_t* realloc(data,size)
569 #undef realloc /* let the native realloc() tak macro
911 #undef realloc macro
912 #define realloc macro
1023 #undef realloc macro
1068 #define realloc macro
[all...]
H A Dvmhdr.h76 #undef realloc macro
91 #define _std_malloc 1 /* use native malloc/free/realloc */
324 #undef realloc macro
/ast/src/lib/libast/cdt/
H A Ddtdisc.c46 else return realloc(addr,size);
H A Dcdtlib.h178 extern Void_t* realloc _ARG_((Void_t*, size_t));
/ast/src/lib/libast/sfio/
H A Dsfresize.c53 if(s < f->size && (d = realloc(f->data, s)) )
H A Dsfexcept.c87 data = (uchar*)realloc((char*)f->data,size);
H A Dsfpopen.c82 if((n%16) == 0 && !(argv = (char**)realloc(argv,(n+16)*sizeof(char*))) )
/ast/src/cmd/mailx/
H A Dlocal.h149 #define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
/ast/src/lib/libvcodex/
H A Dvchdr.h96 extern Void_t* realloc _ARG_((Void_t*, size_t));
H A Dvcbuffer.c79 { if(!(n = (Vcbuffer_t*)realloc(b, sizeof(Vcbuffer_t)+size)) )
82 /**/DEBUG_PRINT(2,"realloc: file=%s ", b->file);
/ast/src/lib/libast/include/
H A Dvmalloc.h197 extern Void_t* realloc _ARG_(( Void_t*, size_t ));
246 #undef realloc macro
255 #define realloc(d,s) (_VMFL_(Vmregion), _ast_realloc((Void_t*)(d),(size_t)(s)) ) macro
268 #define realloc(d,s) (_VMFL_(Vmregion), realloc((Void_t*)(d),(size_t)(s)) )
282 #define realloc(d,s) (_VMFL_(Vmregion), _VMNM_(reallo,/,*,*,/,c)\
H A Dast.h204 #define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
205 #define oldof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)malloc(sizeof(t)*(n)+(x)))
/ast/src/lib/libast/astsa/
H A Dast.h91 #define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
92 #define oldof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)malloc(sizeof(t)*(n)+(x)))
H A Dsfstr.c40 if (!(p->beg = realloc(p->beg, n)))
/ast/src/lib/libast/stdio/
H A Dgetdelim.c71 if(!(s = (uchar*)realloc(s, n)) )
/ast/src/lib/libodelta/
H A Dmtchstring.c120 (char**)realloc(ind,(n_ind+ALPHA)*sizeof(char*));
/ast/src/cmd/tests/vmalloc/
H A Dtsafemalloc.c63 if(!(tdata->list[p] = realloc(tdata->list[p], size)) )
64 terror("Thread %d: failed to realloc(%d), total=%d",
/ast/src/lib/libast/disc/
H A Dsfdcdos.c70 if(!(dp->maptable=(struct map*)realloc((void*)dp->maptable,(dp->mapsize+1)*sizeof(struct map))))
188 dp->buff = realloc(dp->buff,count);
/ast/src/lib/libast/regex/
H A Dreginit.c389 * realloc(p,n) alloc(p,n)
409 return realloc(p, n);
/ast/src/lib/libdll/
H A Ddlfcn.c159 ld_info = realloc(ld_info, ld_info_size *= 2);
/ast/src/lib/libpp/
H A Dpplib.h384 #define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
744 #define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
759 extern void* realloc(void*, size_t);
/ast/src/cmd/kshlib/dbm_t/
H A Ddbm_t.c96 *buff = (char*)realloc(*buff,olds);
/ast/src/lib/libvcodex/Vcwindow/
H A Dvcwprefix.c238 { pf->seg = (Pfseg_t*)realloc(pf->seg, (pf->nseg+8)*sizeof(Pfseg_t));
420 { pfx->key = (Vchash_t*)realloc(pfx->key, dtsz*sizeof(Vchash_t));

Completed in 64 milliseconds

12