/external/libtextclassifier/util/hash/ |
D | farmhash.h | 105 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/ |
D | fingerprint.h | 68 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/ |
D | fuse_binary_into_preceding_affine.cc | 81 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()
|
D | fuse_binary_into_following_affine.cc | 116 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()
|
D | remove_trivial_binary.cc | 53 binary_op->type != OperatorType::kMul && in Run() 97 } else if (binary_op->type == OperatorType::kMul) { in Run()
|
D | identify_lstm.cc | 216 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()
|
D | resolve_constant_binary.cc | 138 } else if (binary_op->type == OperatorType::kMul) { in EvaluateBinaryOperatorOnConstantInputs() 196 binary_op->type != OperatorType::kMul && in Run()
|
D | resolve_tensorflow_tile.cc | 64 binary_op->type != OperatorType::kMul && in Run()
|
D | resolve_multiply_by_zero.cc | 57 if (mul_op->type != OperatorType::kMul) { in Run()
|
D | identify_l2_normalization.cc | 48 } else if (div_or_mul_op->type == OperatorType::kMul) { in Run()
|
D | quantize.cc | 50 type == OperatorType::kTanh || type == OperatorType::kMul || in SupportsQuantization()
|
D | propagate_fixed_sizes.cc | 1378 case OperatorType::kMul: in Run()
|
/external/skqp/include/utils/ |
D | SkRandom.h | 157 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG() 172 kMul = 1664525, enumerator
|
/external/skia/include/utils/ |
D | SkRandom.h | 157 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG() 172 kMul = 1664525, enumerator
|
/external/skia/src/effects/ |
D | SkDiscretePathEffect.cpp | 65 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU() 78 kMul = 1664525, enumerator
|
/external/skqp/src/effects/ |
D | SkDiscretePathEffect.cpp | 65 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/ |
D | Hashing.h | 181 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/ |
D | Hashing.h | 181 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/ |
D | constants-aarch32.cc | 201 case kMul: in ToCString()
|
D | constants-aarch32.h | 205 kMul, enumerator
|
/external/tensorflow/tensorflow/contrib/lite/toco/ |
D | model.h | 60 kMul, enumerator 523 MulOperator() : Operator(OperatorType::kMul) {}
|
/external/v8/src/interpreter/ |
D | bytecodes.cc | 235 case Bytecode::kMul: in IsStarLookahead()
|
/external/v8/src/debug/ |
D | debug-evaluate.cc | 349 case Bytecode::kMul: in BytecodeHasNoSideEffect()
|
/external/tensorflow/tensorflow/contrib/lite/toco/tflite/ |
D | operator_test.cc | 328 SerializeAndDeserialize(GetOperator("MUL", OperatorType::kMul), op); in TEST_F()
|
D | operator.cc | 804 ops.emplace_back(new Mul(::tflite::BuiltinOperator_MUL, OperatorType::kMul)); in BuildOperatorList()
|