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

  /prebuilts/go/darwin-x86/src/runtime/
vdso_linux.go 58 // vdsoBloomSizeScale is a scaling factor for gnuhash tables which are uint32 indexed,
133 var hash, gnuhash *[vdsoHashSize]uint32
149 gnuhash = (*[vdsoHashSize]uint32)(unsafe.Pointer(p))
157 if info.symstrings == nil || info.symtab == nil || (hash == nil && gnuhash == nil) {
165 if gnuhash != nil {
167 nbucket := gnuhash[0]
168 info.symOff = gnuhash[1]
169 bloomSize := gnuhash[2]
170 info.bucket = gnuhash[4+bloomSize*uint32(vdsoBloomSizeScale):][:nbucket]
171 info.chain = gnuhash[4+bloomSize*uint32(vdsoBloomSizeScale)+nbucket:
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
vdso_linux.go 58 // vdsoBloomSizeScale is a scaling factor for gnuhash tables which are uint32 indexed,
133 var hash, gnuhash *[vdsoHashSize]uint32
149 gnuhash = (*[vdsoHashSize]uint32)(unsafe.Pointer(p))
157 if info.symstrings == nil || info.symtab == nil || (hash == nil && gnuhash == nil) {
165 if gnuhash != nil {
167 nbucket := gnuhash[0]
168 info.symOff = gnuhash[1]
169 bloomSize := gnuhash[2]
170 info.bucket = gnuhash[4+bloomSize*uint32(vdsoBloomSizeScale):][:nbucket]
171 info.chain = gnuhash[4+bloomSize*uint32(vdsoBloomSizeScale)+nbucket:
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 725 size_t gnuhash = 0; local
788 gnuhash = 5 * 4 + config().targets().bitclass() / 8;
791 gnuhash = (4 + nbucket + hashed_sym_cnt) * 4;
792 gnuhash += (1U << getGNUHashMaskbitslog2(hashed_sym_cnt)) / 8;
832 file_format->getGNUHashTab().setSize(gnuhash);
    [all...]

Completed in 105 milliseconds