gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:Vmalloc from t2ex/t2ex_source/t2ex/load/src/ldr_elf.c (0.00 seconds)
t2ex
t2ex_source/t2ex/load/src/ldr_elf.c - 40.4KB - 1,085 lines
149:         n = hdr->e_shentsize * hdr->e_shnum;
150:         shdr_buf = Vmalloc(n);
151:         if ( shdr_buf == NULL ) { er = EX_NOEXEC; goto err_ret1; }
296: n = hdr->e_phentsize * hdr->e_phnum; 297: phdr_buf = Vmalloc(n); 298: if ( phdr_buf == NULL ) { er = EX_NOMEM; goto err_ret1; }
339: n = hdr->e_shentsize * hdr->e_shnum; 340: shdr_buf = Vmalloc(n); 341: if ( shdr_buf == NULL ) { er = EX_NOMEM; goto err_ret1; }
386: n = hdr->e_phentsize * hdr->e_phnum; 387: phdr_buf = Vmalloc(n); 388: if ( phdr_buf == NULL ) { er = EX_NOMEM; goto err_ret1; }
542: /* Read relocation information */ 543: reloc = Vmalloc(rtblsz); 544: if ( reloc == NULL ) { er = EX_NOMEM; goto err_ret1; }
697: if ( ahi_info == NULL) { 698: ahi_info = Vmalloc( sizeof( Ahi_Info) * AHI_INFO_UNIT); 699: if ( ahi_info == NULL) { er = EX_NOMEM; goto err_ret2; }
964: n = eli->symtbl_size; 965: symtbl = Vmalloc(n); 966: if ( symtbl == NULL ) { er = EX_NOMEM; goto err_ret1; }