gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:Vrealloc from t2ex (0.00 seconds)
t2ex
t2ex_source/lib/libtk/src_t2ex/malloc.c - 2.6KB - 89 lines
77: #else
78:         return Vrealloc(ptr, size);
79: #endif
t2ex_source/t2ex/fs/fimp/src/fimp_fat_local.h - 23.2KB - 504 lines
65: #define fimp_calloc(n, i)       Vcalloc(n, i)
66: #define fimp_realloc(p, n)      Vrealloc(p, n)
67: #define fimp_free(p)            Vfree(p)
t2ex_source/t2ex/load/src/ldr_elf.c - 40.4KB - 1,085 lines
705:                         if( ahi_infomax <= ahi_infonext){
706:                                 ahi_infotmp = Vrealloc( ahi_info, sizeof( Ahi_Info) * ( ahi_infomax + AHI_INFO_UNIT));
707:                                 if ( ahi_infotmp == NULL ) { er = EX_NOMEM; goto err_ret2; }