Home
last modified time | relevance | path

Searched refs:_hash (Results 1 – 25 of 36) sorted by relevance

12

/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java14 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/
DLzBinTree.cs14 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/
Ddevice_spec.py132 self._hash = hash(self.to_string())
398 return self._hash
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
429 self._as_string, self._hash = None, None
432 if self._hash is None:
433 self._hash = hash(self.to_string())
434 return self._hash
/external/freetype/src/cache/
Dftccache.h214 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/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJavaType.java37 protected final int _hash; field in JavaType
81 _hash = raw.getName().hashCode() + additionalHash; in JavaType()
95 _hash = base._hash; in JavaType()
583 public final int hashCode() { return _hash; } in hashCode()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DBaseLocale.java27 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()
DAsciiUtil.java166 private int _hash; field in AsciiUtil.CaseInsensitiveKey
170 _hash = AsciiUtil.toLowerString(key).hashCode(); in CaseInsensitiveKey()
186 return _hash; in hashCode()
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
DBaseLocale.java31 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()
DAsciiUtil.java173 private int _hash; field in AsciiUtil.CaseInsensitiveKey
177 _hash = AsciiUtil.toLowerString(key).hashCode(); in CaseInsensitiveKey()
193 return _hash; in hashCode()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeBindings.java437 private final int _hash; field in TypeBindings.AsKey
442 _hash = hash; in AsKey()
446 public int hashCode() { return _hash; } in hashCode()
455 if ((_hash == other._hash) && (_raw == other._raw)) { in equals()
/external/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.h32 IHashCalc *_hash;
45 void InitCRC() { _hash->InitForNewFile(); } in InitCRC()
318 _hashStreamSpec->_hash = hash; in SetHashMethods()
/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/
Dconcatkdf.py71 def _hash(self): member in ConcatKDFHash
79 self._hash, self._otherinfo)
/external/clang/test/SemaCXX/
Dcxx11-user-defined-literals.cpp124 template<char...Cs> constexpr unsigned operator"" _hash() { in operator ""_hash()
127 static_assert(0x1234_hash == 0x103eff5e, "");
/external/llvm-project/clang/test/SemaCXX/
Dcxx11-user-defined-literals.cpp124 template<char...Cs> constexpr unsigned operator"" _hash() { in operator ""_hash()
127 static_assert(0x1234_hash == 0x103eff5e, "");
/external/arm-trusted-firmware/include/drivers/auth/
Dauth_mod.h80 .hash = &sp_pkg##n##_hash \
/external/lzma/CPP/7zip/UI/FileManager/
DExtractCallback.h321 _hashStreamSpec->_hash = hash; in SetHashMethods()
/external/python/mock/mock/tests/
Dtestmagicmethods.py191 def _hash(s): function
193 mock.__hash__ = _hash
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestmagicmethods.py161 def _hash(s): function
163 mock.__hash__ = _hash
/external/python/cpython3/Doc/library/
Dcollections.abc.rst303 The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value
307 ``__hash__ = Set._hash``.
/external/python/parse_type/tasks/_vendor/
Dpath.py955 def _hash(self, hash_name): member in Path
974 return self._hash(hash_name).digest()
984 return self._hash(hash_name).hexdigest()
Dpathlib.py699 return self._hash
701 self._hash = hash(tuple(self._cparts))
702 return self._hash
/external/python/cffi/cffi/
Dbackend_ctypes.py1024 return self._hash
1026 self._hash = hash(self())
1027 return self._hash
/external/python/cpython3/Lib/
Dpathlib.py780 return self._hash
782 self._hash = hash(tuple(self._cparts))
783 return self._hash
/external/python/cpython3/Lib/test/
Dtest_pprint.py56 self._hash = hash
70 return self._hash
/external/python/cpython2/Lib/
D_abcoll.py247 def _hash(self): member in Set

12