Searched refs:hash (Results 76 - 88 of 88) sorted by relevance

1234

/haiku/src/add-ons/kernel/network/protocols/udp/
H A Dudp.cpp40 // hash is required when holding the DomainSupport's lock.
114 // endpoint hash (and it is bound and
144 static size_t _Mix(size_t hash) argument
147 return (hash & 0x000007FF) ^ (hash & 0x003FF800) >> 11
148 ^ (hash & 0xFFC00000UL) >> 22;
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareVolume.cpp75 uint32 hash = (uint32)directoryID; local
76 hash = 31 * hash + (uint32)(directoryID >> 32);
77 hash = 31 * hash + string_hash(name);
78 return hash;
/haiku/src/kits/tracker/
H A DIconCache.cpp47 // already calculated hash value
136 // clean up a bit to leave the hash table entry in an initialized state
1572 size_t hash = HashString(typeAndSignature.type, 0); local
1575 hash = HashString(typeAndSignature.signature, hash);
1577 return hash;
/haiku/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dmkntfs.c2365 u1 = le32_to_cpu(((SDH_INDEX_KEY*)key1)->hash);
2366 u2 = le32_to_cpu(((SDH_INDEX_KEY*)key2)->hash);
2562 idx_entry_sdh->key.sdh.hash = sds_header->hash;
2566 sdh_data->hash = sds_header->hash;
2583 sii_data->hash = sds_header->hash;
H A Dsd.c418 sds->hash = const_cpu_to_le32(0xF80312F0);
513 sds->hash = const_cpu_to_le32(0xB32451);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dext2.h786 uint32 hash; member in struct:ext2_xattr_header
815 uint32 hash; member in struct:ext2_xattr_entry
/haiku/src/kits/app/
H A DMessage.cpp392 // initializing the hash table to -1 because 0 is a valid index
787 uint32 hash = _HashName(oldEntry) % fHeader->hash_table_size; local
788 int32* nextField = &fHeader->hash_table[hash];
800 hash = _HashName(newEntry) % fHeader->hash_table_size;
801 nextField = &fHeader->hash_table[hash];
1661 uint32 hash = _HashName(name) % fHeader->hash_table_size;
1662 int32 nextField = fHeader->hash_table[hash];
1705 uint32 hash = _HashName(name) % fHeader->hash_table_size; local
1706 int32* nextField = &fHeader->hash_table[hash];
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/dev/de/
H A Dif_de.c3062 unsigned hash; local
3065 * hash-perfect mode. When we get too many multicasts for perfect
3066 * filtering with these chips, we need to switch into hash-only
3076 * go into hash perfect mode (512 bit multicast
3077 * hash and one perfect hardware).
3086 hash = tulip_mchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
3087 sp[hash >> 4] |= htole32(1 << (hash & 0xF));
3090 * No reason to use a hash if we are going to be
3094 hash
[all...]
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php852 window.location.hash = anchor;
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.cpp247 uint32 hash = reinterpret_cast<addr_t>(fInfo); local
248 hash = hash * 19 + StringUtils::HashValue(fInfo->Expression());
250 return hash;
/haiku/src/tests/system/kernel/cache/
H A Dblock_cache_test.cpp192 cached_block* block = (cached_block*)hash_lookup(gCache->hash, &number);
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregcomp.c2748 int32_t hash = elem_hash ((const char *) name, name_len);
2749 int32_t elem = hash % table_size;
2752 int32_t second = hash % (table_size - 2) + 1;
2757 if (symb_table[2 * elem] == hash
2739 int32_t hash = elem_hash ((const char *) name, name_len); local
/haiku/headers/cpp/
H A Dstl_rope.h2506 __STL_TEMPLATE_NULL struct hash<crope> struct
2518 __STL_TEMPLATE_NULL struct hash<wrope> struct

Completed in 191 milliseconds

1234