Home
last modified time | relevance | path

Searched refs:hashValue (Results 1 – 11 of 11) sorted by relevance

/third_party/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java137 int hashValue, hash2Value = 0, hash3Value = 0; in GetMatches() local
145 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask; in GetMatches()
148 hashValue = ((_bufferBase[cur] & 0xFF) ^ ((int)(_bufferBase[cur + 1] & 0xFF) << 8)); in GetMatches()
150 int curMatch = _hash[kFixHashSize + hashValue]; in GetMatches()
179 _hash[kFixHashSize + hashValue] = _pos; in GetMatches()
272 int hashValue; in Skip() local
282 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask; in Skip()
285 hashValue = ((_bufferBase[cur] & 0xFF) ^ ((int)(_bufferBase[cur + 1] & 0xFF) << 8)); in Skip()
287 int curMatch = _hash[kFixHashSize + hashValue]; in Skip()
288 _hash[kFixHashSize + hashValue] = _pos; in Skip()
/third_party/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs137 UInt32 hashValue, hash2Value = 0, hash3Value = 0; in GetMatches()
145 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask; in GetMatches()
148 hashValue = _bufferBase[cur] ^ ((UInt32)(_bufferBase[cur + 1]) << 8); in GetMatches()
150 UInt32 curMatch = _hash[kFixHashSize + hashValue]; in GetMatches()
179 _hash[kFixHashSize + hashValue] = _pos; in GetMatches()
272 UInt32 hashValue; in Skip()
282 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask; in Skip()
285 hashValue = _bufferBase[cur] ^ ((UInt32)(_bufferBase[cur + 1]) << 8); in Skip()
287 UInt32 curMatch = _hash[kFixHashSize + hashValue]; in Skip()
288 _hash[kFixHashSize + hashValue] = _pos; in Skip()
/third_party/jsframework/runtime/main/extend/systemplugin/napi/bundle/
DbundleInstaller.js21 hashValue: "[PC preview] unknown hashValue", property
39 hashValue: "[PC preview] unknown hashValue", property
DhapModuleInfo.js41 hashValue: "[PC preview] unknown mainElementName", property
/third_party/node/test/parallel/
Dtest-crypto.js298 let hashValue = '';
301 hashValue += data.toString('hex');
305 assert.strictEqual(hashValue, assertionHash);
Dtest-crypto-keygen.js1504 for (const hashValue of [123, true, {}, []]) {
1508 hashAlgorithm: hashValue
1515 common.invalidArgTypeHelper(hashValue)
/third_party/skia/third_party/externals/brotli/fetch-spec/
Dshared-brotli-fetch-spec.txt108 11. Let hashValue be the result of base64 decoding digest
110 12. If hashValue is not a valid base64 encoding, return a network error
114 compare this checksum for equality with hashValue. If the computed
115 checksum does not match hashValue, return a network error.
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dhttp_curl.c289 ASN1_OCTET_STRING *hashValue; member
365 ASN1_SIMPLE(HashAlgAndValue, hashValue, ASN1_OCTET_STRING)
504 n->hash_len = ASN1_STRING_length(hash->hashValue); in DEFINE_STACK_OF()
505 n->hash = os_memdup(ASN1_STRING_get0_data(hash->hashValue), in DEFINE_STACK_OF()
616 data = hash->hashValue->data; in i2r_HashAlgAndValue()
617 for (i = 0; i < hash->hashValue->length; i++) in i2r_HashAlgAndValue()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dhttp_curl.c289 ASN1_OCTET_STRING *hashValue; member
365 ASN1_SIMPLE(HashAlgAndValue, hashValue, ASN1_OCTET_STRING)
504 n->hash_len = ASN1_STRING_length(hash->hashValue); in DEFINE_STACK_OF()
505 n->hash = os_memdup(ASN1_STRING_get0_data(hash->hashValue), in DEFINE_STACK_OF()
616 data = hash->hashValue->data; in i2r_HashAlgAndValue()
617 for (i = 0; i < hash->hashValue->length; i++) in i2r_HashAlgAndValue()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceOperand.h103 virtual SizeT hashValue() const { in hashValue() function
167 SizeT hashValue() const override { return 0; } in hashValue() function
219 SizeT hashValue() const override { return std::hash<PrimType>()(Value); } in hashValue() function
841 SizeT hashValue() const override { return std::hash<SizeT>()(getIndex()); } in hashValue() function
DIceCfg.cpp459 size_t operator()(const Variable *Var) const { return Var->hashValue(); } in localCSE()
469 Result ^= Instr->getSrc(i)->hashValue(); in localCSE()