Home
last modified time | relevance | path

Searched refs:kMul (Results 1 – 25 of 31) sorted by relevance

12

/external/libtextclassifier/util/hash/
Dfarmhash.h105 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in Hash128to64() local
106 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul; in Hash128to64()
108 uint64_t b = (Uint128High64(x) ^ a) * kMul; in Hash128to64()
110 b *= kMul; in Hash128to64()
129 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in Fingerprint() local
130 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul; in Fingerprint()
132 uint64_t b = (Uint128High64(x) ^ a) * kMul; in Fingerprint()
134 b *= kMul; in Fingerprint()
136 b *= kMul; in Fingerprint()
143 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in Fingerprint() local
[all …]
/external/tensorflow/tensorflow/core/platform/
Dfingerprint.h68 static const uint64 kMul = 0xc6a4a7935bd1e995ULL; in FingerprintCat64() local
69 uint64 result = fp1 ^ kMul; in FingerprintCat64()
70 result ^= internal::ShiftMix(fp2 * kMul) * kMul; in FingerprintCat64()
71 result *= kMul; in FingerprintCat64()
72 result = internal::ShiftMix(result) * kMul; in FingerprintCat64()
/external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
Dfuse_binary_into_preceding_affine.cc81 CHECK(mul_or_div_op->type == OperatorType::kMul || in FuseMulOrDivParamsIntoPrecedingAffine()
141 if (mul_or_div_op->type == OperatorType::kMul) { in FuseMulOrDivParamsIntoPrecedingAffine()
151 if (mul_or_div_op->type == OperatorType::kMul) { in FuseMulOrDivParamsIntoPrecedingAffine()
163 if (mul_or_div_op->type == OperatorType::kMul) { in FuseMulOrDivParamsIntoPrecedingAffine()
183 binary_op->type != OperatorType::kMul && in Run()
304 } else if (binary_op->type == OperatorType::kMul || in Run()
Dfuse_binary_into_following_affine.cc116 CHECK(mul_or_div_op->type == OperatorType::kMul || in FuseMulOrDivParamsIntoFollowingAffine()
141 if (mul_or_div_op->type == OperatorType::kMul) { in FuseMulOrDivParamsIntoFollowingAffine()
157 binary_op->type != OperatorType::kMul && in Run()
277 } else if (binary_op->type == OperatorType::kMul || in Run()
Dremove_trivial_binary.cc53 binary_op->type != OperatorType::kMul && in Run()
97 } else if (binary_op->type == OperatorType::kMul) { in Run()
Didentify_lstm.cc216 if (final_output_mul->type != OperatorType::kMul) { in Run()
242 if (!MatchOperatorInputs(*state_combine_add, *model, OperatorType::kMul, in Run()
243 &state_forget_mul, OperatorType::kMul, in Run()
Dresolve_constant_binary.cc138 } else if (binary_op->type == OperatorType::kMul) { in EvaluateBinaryOperatorOnConstantInputs()
196 binary_op->type != OperatorType::kMul && in Run()
Dresolve_tensorflow_tile.cc64 binary_op->type != OperatorType::kMul && in Run()
Dresolve_multiply_by_zero.cc57 if (mul_op->type != OperatorType::kMul) { in Run()
Didentify_l2_normalization.cc48 } else if (div_or_mul_op->type == OperatorType::kMul) { in Run()
Dquantize.cc50 type == OperatorType::kTanh || type == OperatorType::kMul || in SupportsQuantization()
Dpropagate_fixed_sizes.cc1378 case OperatorType::kMul: in Run()
/external/skqp/include/utils/
DSkRandom.h157 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()
172 kMul = 1664525, enumerator
/external/skia/include/utils/
DSkRandom.h157 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()
172 kMul = 1664525, enumerator
/external/skia/src/effects/
DSkDiscretePathEffect.cpp65 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()
78 kMul = 1664525, enumerator
/external/skqp/src/effects/
DSkDiscretePathEffect.cpp65 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()
78 kMul = 1664525, enumerator
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DHashing.h181 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local
182 uint64_t a = (low ^ high) * kMul; in hash_16_bytes()
184 uint64_t b = (high ^ a) * kMul; in hash_16_bytes()
186 b *= kMul; in hash_16_bytes()
/external/llvm/include/llvm/ADT/
DHashing.h181 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local
182 uint64_t a = (low ^ high) * kMul; in hash_16_bytes()
184 uint64_t b = (high ^ a) * kMul; in hash_16_bytes()
186 b *= kMul; in hash_16_bytes()
/external/vixl/src/aarch32/
Dconstants-aarch32.cc201 case kMul: in ToCString()
Dconstants-aarch32.h205 kMul, enumerator
/external/tensorflow/tensorflow/contrib/lite/toco/
Dmodel.h60 kMul, enumerator
523 MulOperator() : Operator(OperatorType::kMul) {}
/external/v8/src/interpreter/
Dbytecodes.cc235 case Bytecode::kMul: in IsStarLookahead()
/external/v8/src/debug/
Ddebug-evaluate.cc349 case Bytecode::kMul: in BytecodeHasNoSideEffect()
/external/tensorflow/tensorflow/contrib/lite/toco/tflite/
Doperator_test.cc328 SerializeAndDeserialize(GetOperator("MUL", OperatorType::kMul), op); in TEST_F()
Doperator.cc804 ops.emplace_back(new Mul(::tflite::BuiltinOperator_MUL, OperatorType::kMul)); in BuildOperatorList()

12