本文整理汇总了Python中pyndn.util.common.Common.murmurHash3Uint32方法的典型用法代码示例。如果您正苦于以下问题:Python Common.murmurHash3Uint32方法的具体用法?Python Common.murmurHash3Uint32怎么用?Python Common.murmurHash3Uint32使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyndn.util.common.Common
的用法示例。
在下文中一共展示了Common.murmurHash3Uint32方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _update
# 需要导入模块: from pyndn.util.common import Common [as 别名]
# 或者: from pyndn.util.common.Common import murmurHash3Uint32 [as 别名]
def _update(self, plusOrMinus, key):
"""
Update the entries in _hashTable.
:param int plusOrMinus: The amount to update the count.
:param int key: The key for computing the entry.
"""
bucketsPerHash = int(len(self._hashTable) / InvertibleBloomLookupTable.N_HASH)
for i in range(InvertibleBloomLookupTable.N_HASH):
startEntry = i * bucketsPerHash
h = Common.murmurHash3Uint32(i, key)
entry = self._hashTable[startEntry + (h % bucketsPerHash)]
entry._count += plusOrMinus
entry._keySum ^= key
entry._keyCheck ^= Common.murmurHash3Uint32(
InvertibleBloomLookupTable.N_HASHCHECK, key)
示例2: isPure
# 需要导入模块: from pyndn.util.common import Common [as 别名]
# 或者: from pyndn.util.common.Common import murmurHash3Uint32 [as 别名]
def isPure(self):
"""
:rtype: bool
"""
if self._count == 1 or self._count == -1:
# Debug: Convert to
check = Common.murmurHash3Uint32(
InvertibleBloomLookupTable.N_HASHCHECK, self._keySum)
return self._keyCheck == check
return False