Searched refs:hashValue (Results 1 – 11 of 11) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 137 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/ |
D | LzBinTree.cs | 137 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/ |
D | bundleInstaller.js | 21 hashValue: "[PC preview] unknown hashValue", property 39 hashValue: "[PC preview] unknown hashValue", property
|
D | hapModuleInfo.js | 41 hashValue: "[PC preview] unknown mainElementName", property
|
/third_party/node/test/parallel/ |
D | test-crypto.js | 298 let hashValue = ''; 301 hashValue += data.toString('hex'); 305 assert.strictEqual(hashValue, assertionHash);
|
D | test-crypto-keygen.js | 1504 for (const hashValue of [123, true, {}, []]) { 1508 hashAlgorithm: hashValue 1515 common.invalidArgTypeHelper(hashValue)
|
/third_party/skia/third_party/externals/brotli/fetch-spec/ |
D | shared-brotli-fetch-spec.txt | 108 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/ |
D | http_curl.c | 289 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/ |
D | http_curl.c | 289 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/ |
D | IceOperand.h | 103 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
|
D | IceCfg.cpp | 459 size_t operator()(const Variable *Var) const { return Var->hashValue(); } in localCSE() 469 Result ^= Instr->getSrc(i)->hashValue(); in localCSE()
|