/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 14 int[] _hash; field in BinTree 58 _hash[i] = kEmptyHashValue; in Init() 115 _hash = new int [_hashSizeSum = hs]; in Create() 150 int curMatch = _hash[kFixHashSize + hashValue]; in GetMatches() 153 int curMatch2 = _hash[hash2Value]; in GetMatches() 154 int curMatch3 = _hash[kHash3Offset + hash3Value]; in GetMatches() 155 _hash[hash2Value] = _pos; in GetMatches() 156 _hash[kHash3Offset + hash3Value] = _pos; in GetMatches() 179 _hash[kFixHashSize + hashValue] = _pos; in GetMatches() 278 _hash[hash2Value] = _pos; in Skip() [all …]
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 14 UInt32[] _hash; field in SevenZip.Compression.LZ.BinTree 58 _hash[i] = kEmptyHashValue; in Init() 115 _hash = new UInt32[_hashSizeSum = hs]; in Create() 150 UInt32 curMatch = _hash[kFixHashSize + hashValue]; in GetMatches() 153 UInt32 curMatch2 = _hash[hash2Value]; in GetMatches() 154 UInt32 curMatch3 = _hash[kHash3Offset + hash3Value]; in GetMatches() 155 _hash[hash2Value] = _pos; in GetMatches() 156 _hash[kHash3Offset + hash3Value] = _pos; in GetMatches() 179 _hash[kFixHashSize + hashValue] = _pos; in GetMatches() 278 _hash[hash2Value] = _pos; in Skip() [all …]
|
/external/tensorflow/tensorflow/python/framework/ |
D | device_spec.py | 131 self._hash = hash(self.to_string()) 393 return self._hash 404 self._as_string, self._hash = None, None 409 self._as_string, self._hash = None, None 414 self._as_string, self._hash = None, None 419 self._as_string, self._hash = None, None 424 self._as_string, self._hash = None, None 427 if self._hash is None: 428 self._hash = hash(self.to_string()) 429 return self._hash
|
/external/freetype/src/cache/ |
D | ftccache.h | 214 FT_Offset _hash = (FT_Offset)(hash); \ 223 _bucket = _pnode = FTC_NODE_TOP_FOR_HASH( _cache, _hash ); \ 233 if ( _node->hash == _hash && \ 243 _bucket = _pnode = FTC_NODE_TOP_FOR_HASH( _cache, _hash ); \ 279 error = FTC_Cache_NewNode( _cache, _hash, query, &_node ); \
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/ |
D | BaseLocale.java | 27 private transient volatile int _hash = 0; field in BaseLocale 127 int h = _hash; in hashCode() 142 _hash = h; in hashCode() 153 private volatile int _hash; // Default to 0 field in BaseLocale.Key 206 int h = _hash; in hashCode() 225 _hash = h; in hashCode()
|
D | AsciiUtil.java | 164 private int _hash; field in AsciiUtil.CaseInsensitiveKey 168 _hash = AsciiUtil.toLowerString(key).hashCode(); in CaseInsensitiveKey() 182 return _hash; in hashCode()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
D | BaseLocale.java | 31 private transient volatile int _hash = 0; field in BaseLocale 134 int h = _hash; in hashCode() 149 _hash = h; in hashCode() 160 private volatile int _hash; // Default to 0 field in BaseLocale.Key 216 int h = _hash; in hashCode() 235 _hash = h; in hashCode()
|
D | AsciiUtil.java | 173 private int _hash; field in AsciiUtil.CaseInsensitiveKey 177 _hash = AsciiUtil.toLowerString(key).hashCode(); in CaseInsensitiveKey() 193 return _hash; in hashCode()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | BaseLocale.java | 27 private transient volatile int _hash = 0; field in BaseLocale 130 int h = _hash; in hashCode() 145 _hash = h; in hashCode() 156 private volatile int _hash; // Default to 0 field in BaseLocale.Key 212 int h = _hash; in hashCode() 231 _hash = h; in hashCode()
|
D | AsciiUtil.java | 166 private int _hash; field in AsciiUtil.CaseInsensitiveKey 170 _hash = AsciiUtil.toLowerString(key).hashCode(); in CaseInsensitiveKey() 186 return _hash; in hashCode()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | ArchiveExtractCallback.h | 32 IHashCalc *_hash; 45 void InitCRC() { _hash->InitForNewFile(); } in InitCRC() 318 _hashStreamSpec->_hash = hash; in SetHashMethods()
|
D | ArchiveExtractCallback.cpp | 62 _hash->Update(data, size); in Write() 1541 _hashStreamSpec->_hash->Final(_item.IsDir, in SetOperationResult()
|
/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/ |
D | concatkdf.py | 71 def _hash(self): member in ConcatKDFHash 79 self._hash, self._otherinfo)
|
/external/clang/test/SemaCXX/ |
D | cxx11-user-defined-literals.cpp | 124 template<char...Cs> constexpr unsigned operator"" _hash() { in operator ""_hash() 127 static_assert(0x1234_hash == 0x103eff5e, "");
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | ExtractCallback.h | 321 _hashStreamSpec->_hash = hash; in SetHashMethods()
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 162 def _hash(s): function 164 mock.__hash__ = _hash
|
/external/python/cpython3/Doc/library/ |
D | collections.abc.rst | 295 The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value 299 ``__hash__ = Set._hash``.
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 191 def _hash(s): function 193 mock.__hash__ = _hash
|
/external/python/parse_type/tasks/_vendor/ |
D | path.py | 955 def _hash(self, hash_name): member in Path 974 return self._hash(hash_name).digest() 984 return self._hash(hash_name).hexdigest()
|
D | pathlib.py | 699 return self._hash 701 self._hash = hash(tuple(self._cparts)) 702 return self._hash
|
/external/python/cpython3/Lib/test/ |
D | test_pprint.py | 56 self._hash = hash 70 return self._hash
|
D | test_ordered_dict.py | 494 self._hash = hash 497 return self._hash
|
/external/python/cffi/cffi/ |
D | backend_ctypes.py | 1024 return self._hash 1026 self._hash = hash(self()) 1027 return self._hash
|
/external/python/cpython3/Lib/ |
D | pathlib.py | 760 return self._hash 762 self._hash = hash(tuple(self._cparts)) 763 return self._hash
|
/external/python/cpython2/Lib/ |
D | _abcoll.py | 247 def _hash(self): member in Set
|