/third_party/vixl/src/aarch64/ |
D | instructions-aarch64.cc | 49 return CanTakeSVEMovprfx(Hash(form), movprfx); in CanTakeSVEMovprfx() 71 case Hash("cdot_z_zzzi_s"): in CanTakeSVEMovprfx() 72 case Hash("sdot_z_zzzi_s"): in CanTakeSVEMovprfx() 73 case Hash("sudot_z_zzzi_s"): in CanTakeSVEMovprfx() 74 case Hash("udot_z_zzzi_s"): in CanTakeSVEMovprfx() 75 case Hash("usdot_z_zzzi_s"): in CanTakeSVEMovprfx() 79 case Hash("cdot_z_zzzi_d"): in CanTakeSVEMovprfx() 80 case Hash("sdot_z_zzzi_d"): in CanTakeSVEMovprfx() 81 case Hash("udot_z_zzzi_d"): in CanTakeSVEMovprfx() 85 case Hash("fmlalb_z_zzzi_s"): in CanTakeSVEMovprfx() [all …]
|
D | simulator-aarch64.cc | 1997 form_hash_ = Hash(form.c_str()); in Simulator() 2012 case Hash("match_p_p_zz"): in Simulator() 2015 case Hash("nmatch_p_p_zz"): in Simulator() 2036 case Hash("whilerw_p_rr"): in Simulator() 2039 case Hash("whilewr_p_rr"): in Simulator() 2057 VIXL_ASSERT(form_hash_ == Hash("ext_z_zi_con")); in Simulator() 2076 case Hash("histseg_z_zz"): in Simulator() 2088 case Hash("pmul_z_zz"): in Simulator() 2106 VIXL_ASSERT((form_hash_ == Hash("mul_z_zzi_d")) || in Simulator() 2107 (form_hash_ == Hash("mul_z_zzi_h")) || in Simulator() [all …]
|
/third_party/skia/third_party/externals/tint/src/utils/ |
D | hash_test.cc | 26 EXPECT_EQ(Hash(123), Hash(123)); in TEST() 27 EXPECT_NE(Hash(123), Hash(321)); in TEST() 28 EXPECT_EQ(Hash(123, 456), Hash(123, 456)); in TEST() 29 EXPECT_NE(Hash(123, 456), Hash(456, 123)); in TEST() 30 EXPECT_NE(Hash(123, 456), Hash(123)); in TEST() 31 EXPECT_EQ(Hash(123, 456, false), Hash(123, 456, false)); in TEST() 32 EXPECT_NE(Hash(123, 456, false), Hash(123, 456)); in TEST() 33 EXPECT_EQ(Hash(std::string("hello")), Hash(std::string("hello"))); in TEST() 34 EXPECT_NE(Hash(std::string("hello")), Hash(std::string("world"))); in TEST() 38 EXPECT_EQ(Hash(std::vector<int>({})), Hash(std::vector<int>({}))); in TEST() [all …]
|
/third_party/json/tests/thirdparty/Fuzzer/test/ |
D | SimpleHashTest.cpp | 16 uint32_t Hash = 0x12039854; in simple_hash() local 18 Hash += Data[i]; in simple_hash() 19 Hash += (Hash << 10); in simple_hash() 20 Hash ^= (Hash >> 6); in simple_hash() 22 Hash += (Hash << 3); in simple_hash() 23 Hash ^= (Hash >> 11); in simple_hash() 24 Hash += (Hash << 15); in simple_hash() 25 return Hash; in simple_hash() 32 uint32_t Hash = simple_hash(&Data[0], Size - 4); in LLVMFuzzerTestOneInput() local 34 if (Hash != Want) in LLVMFuzzerTestOneInput() [all …]
|
/third_party/rust/crates/syn/src/gen/ |
D | hash.rs | 7 use std::hash::{Hash, Hasher}; 10 impl Hash for Abi { 20 impl Hash for AngleBracketedGenericArguments { 31 impl Hash for Arm { 45 impl Hash for AssocConst { 57 impl Hash for AssocType { 69 impl Hash for AttrStyle { 86 impl Hash for Attribute { 97 impl Hash for BareFnArg { 109 impl Hash for BareVariadic { [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | CachedHashString.h | 32 uint32_t Hash; variable 39 CachedHashStringRef(StringRef S, uint32_t Hash) in CachedHashStringRef() argument 40 : P(S.data()), Size(S.size()), Hash(Hash) { in CachedHashStringRef() 47 uint32_t hash() const { return Hash; } in hash() 77 uint32_t Hash; 91 : P(EmptyOrTombstonePtr), Size(0), Hash(0) { 104 CachedHashString(StringRef S, uint32_t Hash) 105 : P(new char[S.size()]), Size(S.size()), Hash(Hash) { 112 : Size(Other.Size), Hash(Other.Hash) { 127 : P(Other.P), Size(Other.Size), Hash(Other.Hash) { [all …]
|
/third_party/node/lib/internal/crypto/ |
D | hash.js | 10 Hash: _Hash, 60 function Hash(algorithm, options) { class 61 if (!(this instanceof Hash)) 62 return new Hash(algorithm, options); 76 ObjectSetPrototypeOf(Hash.prototype, LazyTransform.prototype); 77 ObjectSetPrototypeOf(Hash, LazyTransform); 79 Hash.prototype.copy = function copy(options) { 84 return new Hash(this[kHandle], options); 87 Hash.prototype._transform = function _transform(chunk, encoding, callback) { 92 Hash.prototype._flush = function _flush(callback) { [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | Hash.cpp | 57 uint32_t Hash = 0xb170a1bf; in hashStringV2() local 65 Hash += Item; in hashStringV2() 66 Hash += (Hash << 10); in hashStringV2() 67 Hash ^= (Hash >> 6); in hashStringV2() 71 Hash += Item; in hashStringV2() 72 Hash += (Hash << 10); in hashStringV2() 73 Hash ^= (Hash >> 6); in hashStringV2() 76 return Hash * 1664525U + 1013904223U; in hashStringV2()
|
/third_party/typescript/tests/baselines/reference/ |
D | declarationsForIndirectTypeAliasReference.symbols | 3 Hash, 4 >Hash : Symbol(Hash, Decl(b.ts, 0, 8)) 12 interface Hash<T> { 13 >Hash : Symbol(Hash, Decl(b.ts, 3, 2)) 21 type StringHash = Hash<string>; 23 >Hash : Symbol(Hash, Decl(b.ts, 3, 2)) 25 interface StringHash2 extends Hash<string> {} 27 >Hash : Symbol(Hash, Decl(b.ts, 3, 2))
|
D | declarationsForIndirectTypeAliasReference.js | 5 Hash, 9 interface Hash<T> { 13 type StringHash = Hash<string>; 15 interface StringHash2 extends Hash<string> {} 57 export { Hash, StringHash, StringHash2 }; 58 interface Hash<T> { 61 type StringHash = Hash<string>; 62 interface StringHash2 extends Hash<string> {
|
D | taggedPrimitiveNarrowing.types | 2 type Hash = string & { __hash: true }; 3 >Hash : string & { __hash: true; } 7 function getHashLength(hash: Hash): number { 8 >getHashLength : (hash: Hash) => number 9 >hash : Hash 14 >hash : Hash 24 >hash : Hash
|
D | declarationsForIndirectTypeAliasReference.types | 3 Hash, 4 >Hash : any 12 interface Hash<T> { 17 type StringHash = Hash<string>; 18 >StringHash : Hash<string> 20 interface StringHash2 extends Hash<string> {}
|
/third_party/rust/crates/memchr/src/memmem/ |
D | rabinkarp.rs | 55 let mut hash = Hash::from_bytes_fwd(&haystack[..needle.len()]); in find_with() 86 Hash::from_bytes_rev(&haystack[haystack.len() - needle.len()..]); in rfind_with() 107 hash: Hash, 119 let mut nh = NeedleHash { hash: Hash::new(), hash_2pow: 1 }; in forward() 134 let mut nh = NeedleHash { hash: Hash::new(), hash_2pow: 1 }; in reverse() 147 fn eq(&self, hash: Hash) -> bool { in eq() 155 pub(crate) struct Hash(u32); struct 157 impl Hash { impl 159 pub(crate) fn new() -> Hash { in new() 160 Hash(0) in new() [all …]
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
D | enum_explicit_type.rs | 9 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 15 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 21 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 27 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 32 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 37 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 42 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 48 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 57 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
D | issue-493_1_0.rs | 42 impl<T> ::std::hash::Hash for __BindgenUnionField<T> { 52 #[derive(Debug, Default, Copy, Clone, Hash, PartialEq, Eq)] 60 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 78 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 83 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 89 #[derive(Debug, Default, Copy, Clone, Hash, PartialEq, Eq)] 105 #[derive(Debug, Default, Copy, Clone, Hash, PartialEq, Eq)] 114 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 119 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 133 #[derive(Debug, Default, Copy, Clone, Hash, PartialEq, Eq)] [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeHashing.h | 33 hash_code Hash; member 83 ::memcpy(Hash.data(), H.data(), 8); in GloballyHashedType() 85 std::array<uint8_t, 8> Hash; member 87 bool empty() const { return *(const uint64_t*)Hash.data() == 0; } in empty() 184 return Val.Hash; 189 if (LHS.Hash != RHS.Hash) 204 return *reinterpret_cast<const unsigned *>(Val.Hash.data()); 209 return LHS.Hash == RHS.Hash; 217 write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8); 225 for (uint8_t B : V.Hash) {
|
/third_party/rust/crates/cxx/syntax/ |
D | map.rs | 2 use std::hash::Hash; 13 use std::hash::Hash; 40 K: Copy + Hash + Eq, 59 Q: ?Sized + Hash + Eq, in contains_key() 67 Q: ?Sized + Hash + Eq, in get() 87 use std::hash::Hash; 101 K: Hash + Eq, 110 Q: ?Sized + Hash + Eq, in contains_key() 118 Q: ?Sized + Hash + Eq, in get() 131 Q: ?Sized + Hash + Eq, in remove() [all …]
|
D | set.rs | 10 use std::hash::Hash; 19 T: Hash + Eq, 39 Q: ?Sized + Hash + Eq, in contains() 47 Q: ?Sized + Hash + Eq, in get() 75 use std::hash::Hash; 83 T: Hash + Eq, 96 Q: ?Sized + Hash + Eq, in contains() 104 Q: ?Sized + Hash + Eq, in get()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/ |
D | hash_test.cc | 49 using absl::Hash; 65 using is_hashable = std::is_default_constructible<absl::Hash<T>>; 80 EXPECT_EQ(absl::Hash<TypeParam>{}(n), in TYPED_TEST_P() 81 absl::Hash<std::tuple<TypeParam>>{}(std::tuple<TypeParam>(n))); in TYPED_TEST_P() 157 size_t hash = absl::Hash<void*>()(data.get() + i * align); in TEST() 489 absl::Hash<PiecewiseHashTester> hash; in TEST() 503 absl::Hash<DummyFooBar>()(DummyFooBar{})); in TEST() 606 struct IsHashCallable<T, absl::void_t<decltype(std::declval<absl::Hash<T>>()( 618 EXPECT_TRUE(std::is_default_constructible<absl::Hash<int>>::value); in TEST() 619 EXPECT_TRUE(std::is_copy_constructible<absl::Hash<int>>::value); in TEST() [all …]
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/git/ |
D | git.go | 47 type Hash [20]byte type 49 func (h Hash) String() string { return hex.EncodeToString(h[:]) } 52 func ParseHash(s string) Hash { 54 h := Hash{} 136 func CheckoutRemoteCommit(path, url string, commit Hash) error { argument 157 func CheckoutCommit(path string, commit Hash) error { argument 167 func FetchRefHash(ref, url string) (Hash, error) { 170 return Hash{}, err 176 Hash Hash member 202 …Exec(gitTimeout, exe, "", nil, "log", "--pretty=format:"+prettyFormat, fmt.Sprintf("%v^", cl.Hash)) [all …]
|
/third_party/node/src/crypto/ |
D | crypto_hash.cc | 28 Hash::Hash(Environment* env, Local<Object> wrap) : BaseObject(env, wrap) { in Hash() function in node::crypto::Hash 32 void Hash::MemoryInfo(MemoryTracker* tracker) const { in MemoryInfo() 37 void Hash::GetHashes(const FunctionCallbackInfo<Value>& args) { in GetHashes() 55 void Hash::Initialize(Environment* env, Local<Object> target) { in Initialize() 61 Hash::kInternalFieldCount); in Initialize() 77 void Hash::RegisterExternalReferences(ExternalReferenceRegistry* registry) { in RegisterExternalReferences() 88 void Hash::New(const FunctionCallbackInfo<Value>& args) { in New() 91 const Hash* orig = nullptr; in New() 108 Hash* hash = new Hash(env, args.This()); in New() 120 bool Hash::HashInit(const EVP_MD* md, Maybe<unsigned int> xof_md_len) { in HashInit() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypeHashing.cpp | 37 ScalarTraits<BinaryRef>::output(GH.Hash, Ctx, OS); in output() 42 return ScalarTraits<BinaryRef>::input(Scalar, Ctx, GH.Hash); in input() 77 SmallString<8> Hash; in toDebugH() local 79 Hash.clear(); in toDebugH() 80 raw_svector_ostream OS(Hash); in toDebugH() 81 H.Hash.writeAsBinary(OS); in toDebugH() 82 assert((Hash.size() == 8) && "Invalid hash size!"); in toDebugH() 83 cantFail(Writer.writeFixedString(Hash)); in toDebugH()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | hash_function_defaults.h | 66 using Hash = absl::Hash<T>; member 74 return absl::Hash<absl::string_view>{}(v); in operator() 77 return absl::Hash<absl::Cord>{}(v); in operator() 99 using Hash = StringHash; member 113 struct Hash { 117 return absl::Hash<const T*>{}(HashEq::ToPtr(ptr)); 150 using hash_default_hash = typename container_internal::HashEq<T>::Hash;
|
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
D | rsa_pss.c | 32 const EVP_MD *Hash, const unsigned char *EM, in RSA_verify_PKCS1_PSS() argument 35 return RSA_verify_PKCS1_PSS_mgf1(rsa, mHash, Hash, NULL, EM, sLen); in RSA_verify_PKCS1_PSS() 39 const EVP_MD *Hash, const EVP_MD *mgf1Hash, in RSA_verify_PKCS1_PSS_mgf1() argument 54 mgf1Hash = Hash; in RSA_verify_PKCS1_PSS_mgf1() 56 hLen = EVP_MD_get_size(Hash); in RSA_verify_PKCS1_PSS_mgf1() 121 if (!EVP_DigestInit_ex(ctx, Hash, NULL) in RSA_verify_PKCS1_PSS_mgf1() 148 const EVP_MD *Hash, int sLen) in RSA_padding_add_PKCS1_PSS() argument 150 return RSA_padding_add_PKCS1_PSS_mgf1(rsa, EM, mHash, Hash, NULL, sLen); in RSA_padding_add_PKCS1_PSS() 155 const EVP_MD *Hash, const EVP_MD *mgf1Hash, in RSA_padding_add_PKCS1_PSS_mgf1() argument 165 mgf1Hash = Hash; in RSA_padding_add_PKCS1_PSS_mgf1() [all …]
|
/third_party/openssl/crypto/rsa/ |
D | rsa_pss.c | 32 const EVP_MD *Hash, const unsigned char *EM, in RSA_verify_PKCS1_PSS() argument 35 return RSA_verify_PKCS1_PSS_mgf1(rsa, mHash, Hash, NULL, EM, sLen); in RSA_verify_PKCS1_PSS() 39 const EVP_MD *Hash, const EVP_MD *mgf1Hash, in RSA_verify_PKCS1_PSS_mgf1() argument 54 mgf1Hash = Hash; in RSA_verify_PKCS1_PSS_mgf1() 56 hLen = EVP_MD_get_size(Hash); in RSA_verify_PKCS1_PSS_mgf1() 121 if (!EVP_DigestInit_ex(ctx, Hash, NULL) in RSA_verify_PKCS1_PSS_mgf1() 148 const EVP_MD *Hash, int sLen) in RSA_padding_add_PKCS1_PSS() argument 150 return RSA_padding_add_PKCS1_PSS_mgf1(rsa, EM, mHash, Hash, NULL, sLen); in RSA_padding_add_PKCS1_PSS() 155 const EVP_MD *Hash, const EVP_MD *mgf1Hash, in RSA_padding_add_PKCS1_PSS_mgf1() argument 165 mgf1Hash = Hash; in RSA_padding_add_PKCS1_PSS_mgf1() [all …]
|