HomeSort by relevance Sort by last modified time
    Searched full:storage_needed (Results 1 - 5 of 5) sorted by null

  /external/honggfuzz/linux/
bfd.c 73 int storage_needed = bfd_get_symtab_upper_bound(bfdParams->bfdh); local
74 if (storage_needed <= 0) {
75 LOG_E("bfd_get_symtab_upper_bound() returned '%d'", storage_needed);
79 bfdParams->syms = (asymbol**)util_Malloc(storage_needed);
  /toolchain/binutils/binutils-2.27/bfd/
simple.c 183 int storage_needed; local
257 storage_needed = bfd_get_symtab_upper_bound (abfd);
258 symbol_table = (asymbol **) bfd_malloc (storage_needed);
262 storage_needed = 0;
syms.c 66 | long storage_needed;
71 | storage_needed = bfd_get_symtab_upper_bound (abfd);
73 | if (storage_needed < 0)
76 | if (storage_needed == 0)
79 | symbol_table = xmalloc (storage_needed);
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
dlltool.c 3458 long storage_needed; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
bfd.info     [all...]

Completed in 924 milliseconds