HomeSort by relevance Sort by last modified time
    Searched refs:nbucket (Results 1 - 11 of 11) sorted by null

  /external/elfutils/src/
elfcmp.c 683 const size_t nbucket = hash1[0]; \
685 if (data1->d_size != (2 + nbucket + nchain) * sizeof hash1[0] \
686 || hash2[0] != nbucket || hash2[1] != nchain) \
690 const Hash_Word *const chain1 = &bucket1[nbucket]; \
692 const Hash_Word *const chain2 = &bucket2[nbucket]; \
698 for (size_t i = 0; i < nbucket; ++i) \
strip.c 1421 Elf32_Word nbucket = bucket[0]; local
1475 Elf64_Xword nbucket = bucket[0]; local
    [all...]
elflint.c 1914 Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0]; local
1955 Elf64_Xword nbucket = ((Elf64_Xword *) data->d_buf)[0]; local
2265 Elf32_Word nbucket = hasharr[0]; local
2282 Elf64_Xword nbucket = hasharr[0]; local
    [all...]
readelf.c 2542 Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0]; local
2584 Elf64_Xword nbucket = ((Elf64_Xword *) data->d_buf)[0]; local
2625 Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0]; local
    [all...]
unstrip.c 448 const size_t nbucket = old_hash[0]; \
451 const Hash_Word *const old_chain = &old_bucket[nbucket]; \
452 assert (onent == 2 + nbucket + nchain); \
454 const size_t nent = 2 + nbucket + nsym; \
457 Hash_Word *const new_chain = &new_bucket[nbucket]; \
459 new_hash[0] = nbucket; \
461 for (size_t i = 0; i < nbucket; ++i) \
    [all...]
ldgeneric.c 4053 size_t nbucket = 0; local
    [all...]
  /bionic/linker/
linker.h 113 unsigned nbucket; member in struct:soinfo
dlfcn.c 259 nbucket: 1,
linker.c 388 name, si->name, si->base, hash, hash % si->nbucket);
389 n = hash % si->nbucket;
391 for(n = si->bucket[hash % si->nbucket]; n != 0; n = si->chain[n]){
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 604 uint32_t& nbucket = word_array[0]; local
607 nbucket = getHashBucketCount(symtabIdx, false);
611 uint32_t* chain = (bucket + nbucket);
614 bzero((void*)bucket, nbucket);
621 size_t bucket_pos = hash_func(name) % nbucket;
629 size_t bucket_pos = hash_func(name) % nbucket;
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 399 uint32_t& nbucket = word_array[0]; local
402 nbucket = getHashBucketCount(symtabIdx, false);
406 uint32_t* chain = (bucket + nbucket);
409 bzero((void*)bucket, nbucket);
415 size_t bucket_pos = hash_func(name) % nbucket;

Completed in 957 milliseconds