Home
last modified time | relevance | path

Searched refs:hash_code (Results 1 - 25 of 48) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DHashing.h17 // -- 'hash_code' class is an opaque type representing the hash code for some
21 // to assume much about the internals of a hash_code. In particular, each
23 // hash_code for a given input. Thus their values are not stable to save or
34 // a single hash_code for their object. They should only logically be used
67 /// In order to obtain the hash_code for an object 'x':
70 /// llvm::hash_code code = hash_value(x);
72 class hash_code { class
76 /// \brief Default construct a hash_code.
78 hash_code() = default;
81 hash_code(size_ function in llvm::hash_code
[all...]
H A DAPFloat.h419 friend hash_code hash_value(const IEEEFloat &Arg);
591 hash_code hash_value(const IEEEFloat &Arg);
1074 friend hash_code hash_value(const APFloat &Arg);
1086 hash_code hash_value(const APFloat &Arg);
H A DAPInt.h29 class hash_code;
572 /// \brief Overload to compute a hash_code for an APInt value.
573 friend hash_code hash_value(const APInt &Arg);
1963 hash_code hash_value(const APInt &Arg);
H A DStringRef.h27 class hash_code;
894 /// \brief Compute a hash_code for a StringRef.
896 hash_code hash_value(StringRef S);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DHashing.h16 // -- 'hash_code' class is an opaque type representing the hash code for some
20 // to assume much about the internals of a hash_code. In particular, each
22 // hash_code for a given input. Thus their values are not stable to save or
33 // a single hash_code for their object. They should only logically be used
66 /// In order to obtain the hash_code for an object 'x':
69 /// llvm::hash_code code = hash_value(x);
71 class hash_code { class
75 /// Default construct a hash_code.
77 hash_code() = default;
80 hash_code(size_ function in llvm::hash_code
[all...]
H A DDenseMapInfo.h276 template <> struct DenseMapInfo<hash_code> {
277 static inline hash_code getEmptyKey() { return hash_code(-1); } in getEmptyKey()
278 static inline hash_code getTombstoneKey() { return hash_code(-2); } in getTombstoneKey()
279 static unsigned getHashValue(hash_code val) { return val; } in getHashValue()
280 static bool isEqual(hash_code LHS, hash_code RHS) { return LHS == RHS; } in isEqual()
H A DAPFloat.h402 friend hash_code hash_value(const IEEEFloat &Arg);
582 hash_code hash_value(const IEEEFloat &Arg);
682 friend hash_code hash_value(const DoubleAPFloat &Arg);
685 hash_code hash_value(const DoubleAPFloat &Arg);
1200 friend hash_code hash_value(const APFloat &Arg);
1212 hash_code hash_value(const APFloat &Arg);
H A DStringRef.h33 class hash_code;
916 /// Compute a hash_code for a StringRef.
918 hash_code hash_value(StringRef S);
/third_party/node/deps/v8/src/inspector/
H A Dstring-16.h69 std::swap(hash_code, other.hash_code); in swap()
82 if (!hash_code) { in hash()
83 for (char c : m_impl) hash_code = 31 * hash_code + c; in hash()
86 if (!hash_code) ++hash_code; in hash()
88 return hash_code; in hash()
114 mutable std::size_t hash_code = 0; member in v8_inspector::String16
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Dwrgif.c53 * hash_code[i] code of symbol in slot i, or 0 if empty slot
94 code_int *hash_code; /* => hash table of symbol codes */ member
171 /* It's sufficient to zero hash_code[] */ in clear_hash()
172 MEMZERO(dinfo->hash_code, HSIZE * sizeof(code_int)); in clear_hash()
204 if (dinfo->hash_code != NULL) in compress_init()
390 if (dest->hash_code[i] == 0) { in put_LZW_pixel_rows()
394 dest->hash_code[i] = dest->free_code++; /* add symbol to hashtable */ in put_LZW_pixel_rows()
402 dest->waiting_code = dest->hash_code[i]; in put_LZW_pixel_rows()
414 if (dest->hash_code[i] == 0) { in put_LZW_pixel_rows()
418 dest->hash_code[ in put_LZW_pixel_rows()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h26 friend hash_code hash_value(const Vector &);
100 inline hash_code hash_value(const Vector &V) {
123 friend hash_code hash_value(const Matrix &);
236 /// Return a hash_code for the given matrix.
237 inline hash_code hash_value(const Matrix &M) {
267 inline hash_code hash_value(const MDVector<Metadata> &V) {
284 inline hash_code hash_value(const MDMatrix<Metadata> &M) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h64 mutable hash_code HashVal = 0;
91 hash_code getComputedHash() const { in getComputedHash()
113 virtual hash_code getHashValue() const { return getOpcode(); } in getHashValue()
222 hash_code getHashValue() const override {
280 hash_code getHashValue() const override {
464 hash_code getHashValue() const override {
525 hash_code getHashValue() const override {
571 hash_code getHashValue() const override {
608 hash_code getHashValue() const override {
644 hash_code getHashValu
[all...]
/third_party/ffmpeg/libavcodec/
H A Dlzwenc.c151 * @param hash_code LZW code for bytes block
153 static inline void addCode(LZWEncodeState * s, uint8_t c, int hash_prefix, int hash_code) in addCode() argument
155 s->tab[hash_code].code = s->tabsize; in addCode()
156 s->tab[hash_code].suffix = c; in addCode()
157 s->tab[hash_code].hash_prefix = hash_prefix; in addCode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
H A DRegisterBankInfo.cpp267 static hash_code hashPartialMapping(unsigned StartIdx, unsigned Length, in hashPartialMapping()
273 hash_code
284 hash_code Hash = hashPartialMapping(StartIdx, Length, &RegBank); in getPartialMapping()
302 static hash_code
318 hash_code Hash = hashValueMapping(BreakDown, NumBreakDowns); in getValueMapping()
338 hash_code Hash = hash_combine_range(Begin, End); in getOperandsMapping()
373 static hash_code
391 hash_code Hash = in getInstructionMappingImpl()
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dbackward_references_enc.c286 uint32_t hash_code; in VP8LHashChainFill() local
314 hash_code = GetPixPairHash64(tmp); in VP8LHashChainFill()
315 chain[pos] = hash_to_first_index[hash_code]; in VP8LHashChainFill()
316 hash_to_first_index[hash_code] = pos++; in VP8LHashChainFill()
321 hash_code = GetPixPairHash64(argb + pos); in VP8LHashChainFill()
322 chain[pos] = hash_to_first_index[hash_code]; in VP8LHashChainFill()
323 hash_to_first_index[hash_code] = pos++; in VP8LHashChainFill()
/third_party/node/deps/v8/src/codegen/
H A Dassembler.h94 size_t hash_code() const { return hash_code_; } in hash_code() function in v8::internal::JumpOptimizationInfo
95 void set_hash_code(size_t hash_code) { hash_code_ = hash_code; } in set_hash_code() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DMergingTypeTableBuilder.h67 TypeIndex insertRecordAs(hash_code Hash, ArrayRef<uint8_t> &Record);
H A DTypeHashing.h33 hash_code Hash;
/third_party/f2fs-tools/fsck/
H A Ddir.c83 de->hash_code == namehash && in find_target_dentry()
209 de->hash_code = name_hash; in f2fs_update_dentry()
351 dent_blk->dentry[0].hash_code = 0; in make_empty_dir()
357 dent_blk->dentry[1].hash_code = 0; in make_empty_dir()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DGVNSink.cpp370 hash_code getHashValue() const override {
375 template <typename Function> hash_code getHashValue(Function MapFn) {
376 hash_code H =
497 hash_code H = exp->getHashValue([=](Value *V) { return lookupOrAdd(V); });
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DMachineOperand.h39 class hash_code;
721 friend hash_code hash_value(const MachineOperand &MO);
983 hash_code hash_value(const MachineOperand &MO);
H A DRegAllocPBQP.h93 friend hash_code hash_value(const AllowedRegVector &);
122 inline hash_code hash_value(const AllowedRegVector &OptRegs) { in hash_value()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DMergingTypeTableBuilder.cpp90 TypeIndex MergingTypeTableBuilder::insertRecordAs(hash_code Hash, in insertRecordAs()
H A DTypeHashing.cpp18 LocallyHashedType DenseMapInfo<LocallyHashedType>::Tombstone{hash_code(-1), {}};
/third_party/f2fs-tools/mkfs/
H A Df2fs_format.c1499 dent_blk->dentry[0].hash_code = 0; in f2fs_add_default_dentry_lpf()
1505 dent_blk->dentry[1].hash_code = 0; in f2fs_add_default_dentry_lpf()
1636 dent_blk->dentry[0].hash_code = 0; in f2fs_add_default_dentry_root()
1642 dent_blk->dentry[1].hash_code = 0; in f2fs_add_default_dentry_root()
1656 dent_blk->dentry[2].hash_code = cpu_to_le32(hash); in f2fs_add_default_dentry_root()

Completed in 58 milliseconds

12