Home
last modified time | relevance | path

Searched refs:kDiv (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dfuse_binary_into_preceding_affine.cc94 mul_or_div_op->type == OperatorType::kDiv); in FuseMulOrDivParamsIntoPrecedingAffine()
98 CHECK(mul_or_div_op->type != OperatorType::kDiv || in FuseMulOrDivParamsIntoPrecedingAffine()
155 } else if (mul_or_div_op->type == OperatorType::kDiv) { in FuseMulOrDivParamsIntoPrecedingAffine()
166 } else if (mul_or_div_op->type == OperatorType::kDiv) { in FuseMulOrDivParamsIntoPrecedingAffine()
177 } else if (mul_or_div_op->type == OperatorType::kDiv) { in FuseMulOrDivParamsIntoPrecedingAffine()
200 binary_op->type != OperatorType::kDiv) { in Run()
232 if (binary_op->type == OperatorType::kDiv) { in Run()
352 binary_op->type == OperatorType::kDiv) { in Run()
Dfuse_binary_into_following_affine.cc117 mul_or_div_op->type == OperatorType::kDiv); in FuseMulOrDivParamsIntoFollowingAffine()
121 CHECK(mul_or_div_op->type != OperatorType::kDiv || in FuseMulOrDivParamsIntoFollowingAffine()
143 } else if (mul_or_div_op->type == OperatorType::kDiv) { in FuseMulOrDivParamsIntoFollowingAffine()
162 binary_op->type != OperatorType::kDiv) { in Run()
194 if (binary_op->type == OperatorType::kDiv) { in Run()
286 binary_op->type == OperatorType::kDiv) { in Run()
Dremove_trivial_binary.cc58 binary_op->type != OperatorType::kDiv) { in Run()
121 } else if (binary_op->type == OperatorType::kDiv) { in Run()
Dfuse_broadcast_into_following_binary.cc68 binary_op->type != OperatorType::kDiv) { in Run()
Dresolve_constant_binary.cc142 } else if (binary_op->type == OperatorType::kDiv) { in EvaluateBinaryOperatorOnConstantInputs()
201 binary_op->type != OperatorType::kDiv && in Run()
Didentify_l2_normalization.cc49 if (div_or_mul_op->type == OperatorType::kDiv) { in Run()
Dmove_binary_operator_before_reshape.cc66 binary_op->type != OperatorType::kDiv && in Run()
Dpropagate_fixed_sizes.cc2129 case OperatorType::kDiv: in Run()
/external/webrtc/webrtc/base/
Drandom_unittest.cc288 const double kDiv = -2.0 * kStddev * kStddev; in TEST() local
292 double f_left = kScale * exp((n - kMean - 0.5) * (n - kMean - 0.5) / kDiv); in TEST()
293 double f_mid = kScale * exp((n - kMean) * (n - kMean) / kDiv); in TEST()
294 double f_right = kScale * exp((n - kMean + 0.5) * (n - kMean + 0.5) / kDiv); in TEST()
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dutils.h192 const float kDiv = 32.0f; in FixedToFloat115() local
193 return (static_cast<float>(fp_number) / kDiv); in FixedToFloat115()
206 const float kDiv = 65536.0f; in FixedToFloat1616() local
207 return (static_cast<float>(fp_number) / kDiv); in FixedToFloat1616()
/external/skia/include/docs/
DSkPDFDocument.h23 kDiv, //!< Division enumerator
/external/skqp/include/docs/
DSkPDFDocument.h23 kDiv, //!< Division enumerator
/external/v8/src/wasm/baseline/x64/
Dliftoff-assembler-x64.h443 enum class DivOrRem : uint8_t { kDiv, kRem }; enumerator
449 std::is_signed<type>::value && div_or_rem == DivOrRem::kDiv; in EmitIntDivOrRem()
520 constexpr Register kResultReg = div_or_rem == DivOrRem::kDiv ? rax : rdx; in EmitIntDivOrRem()
531 liftoff::EmitIntDivOrRem<int32_t, liftoff::DivOrRem::kDiv>( in emit_i32_divs()
537 liftoff::EmitIntDivOrRem<uint32_t, liftoff::DivOrRem::kDiv>( in emit_i32_divu()
693 liftoff::EmitIntDivOrRem<int64_t, liftoff::DivOrRem::kDiv>( in emit_i64_divs()
702 liftoff::EmitIntDivOrRem<uint64_t, liftoff::DivOrRem::kDiv>( in emit_i64_divu()
/external/skqp/tests/
DPDFTaggedTest.cpp61 div.fType = SkPDF::DocumentStructureType::kDiv; in DEF_TEST()
/external/skia/tests/
DPDFTaggedTest.cpp61 div.fType = SkPDF::DocumentStructureType::kDiv; in DEF_TEST()
/external/v8/src/wasm/baseline/ia32/
Dliftoff-assembler-ia32.h506 enum class DivOrRem : uint8_t { kDiv, kRem }; enumerator
512 is_signed && div_or_rem == DivOrRem::kDiv; in EmitInt32DivOrRem()
566 constexpr Register kResultReg = div_or_rem == DivOrRem::kDiv ? eax : edx; in EmitInt32DivOrRem()
575 liftoff::EmitInt32DivOrRem<true, liftoff::DivOrRem::kDiv>( in emit_i32_divs()
581 liftoff::EmitInt32DivOrRem<false, liftoff::DivOrRem::kDiv>( in emit_i32_divu()
/external/tensorflow/tensorflow/lite/toco/
Dmodel.h53 kDiv, enumerator
959 DivOperator() : Operator(OperatorType::kDiv) {}
Dtooling_util.cc452 case OperatorType::kDiv: in OperatorSupportsFusedActivation()
Dexport_tensorflow.cc2128 } else if (src_op.type == OperatorType::kDiv) { in ConvertOperator()
/external/v8/src/debug/
Ddebug-evaluate.cc446 case Bytecode::kDiv: in BytecodeHasNoSideEffect()
/external/tensorflow/tensorflow/lite/toco/tflite/
Doperator.cc2345 MakeUnique<Div>(::tflite::BuiltinOperator_DIV, OperatorType::kDiv)); in BuildOperatorList()