Home
last modified time | relevance | path

Searched refs:rehash (Results 1 – 6 of 6) sorted by relevance

/toolchain/binutils/binutils-2.25/gold/
Dsystem.h71 #define reserve_unordered_map(map, n) ((map)->rehash(n))
85 #define reserve_unordered_map(map, n) ((map)->rehash(n))
Dconfigure.ac596 # Use of ::std::tr1::unordered_map::rehash causes undefined symbols
598 AC_CACHE_CHECK([whether ::std::tr1::unordered_map::rehash is usable.],
602 void bar() { ::std::tr1::unordered_map<int, int> x; x.rehash(10); }
606 [Define if ::std::tr1::unordered_map::rehash is usable])
Dstringpool.cc79 this->string_set_.rehash(this->string_set_.size() + n); in reserve()
Dconfig.in181 /* Define if ::std::tr1::unordered_map::rehash is usable */
/toolchain/binutils/binutils-2.25/bfd/
Decoff.c2827 unsigned int *rehash, in ecoff_armap_hash() argument
2839 *rehash = (hash & (size - 1)) | 1; in ecoff_armap_hash()
2948 unsigned int hash, rehash, srch; in _bfd_ecoff_slurp_armap() local
2954 hash = ecoff_armap_hash (stringbase + name_offset, &rehash, count, in _bfd_ecoff_slurp_armap()
2960 for (srch = (hash + rehash) & (count - 1); in _bfd_ecoff_slurp_armap()
2962 srch = (srch + rehash) & (count - 1)) in _bfd_ecoff_slurp_armap()
3102 unsigned int hash, rehash = 0; in _bfd_ecoff_write_armap() local
3119 hash = ecoff_armap_hash (*map[i].name, &rehash, hashsize, hashlog); in _bfd_ecoff_write_armap()
3125 for (srch = (hash + rehash) & (hashsize - 1); in _bfd_ecoff_write_armap()
3127 srch = (srch + rehash) & (hashsize - 1)) in _bfd_ecoff_write_armap()
[all …]
DChangeLog-20072389 * ecoff.c (_bfd_ecoff_write_armap): Initialise rehash.