/external/webrtc/modules/audio_coding/neteq/ |
D | time_stretch.cc | 187 int32_t left_side = rtc::saturated_cast<int32_t>( in SpeechDetection() local 198 left_side = left_side >> right_scale; in SpeechDetection() 205 if (WebRtcSpl_NormW32(left_side) < 2 * scaling) { in SpeechDetection() 207 int temp_scale = WebRtcSpl_NormW32(left_side); in SpeechDetection() 208 left_side = left_side << temp_scale; in SpeechDetection() 211 left_side = left_side << 2 * scaling; in SpeechDetection() 213 return left_side > right_side; in SpeechDetection()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | triangular_solve_expander.cc | 129 bool left_side, bool lower, in SolveWithInvertedDiagonalBlocks() argument 142 int64_t m_dim = (left_side) ? -1 : -2; in SolveWithInvertedDiagonalBlocks() 147 int64_t block_dim = (left_side) ? bdims - 2 : bdims - 1; in SolveWithInvertedDiagonalBlocks() 161 bool backward = left_side ^ lower ^ transpose_a; in SolveWithInvertedDiagonalBlocks() 178 if (!left_side) { in SolveWithInvertedDiagonalBlocks() 199 if (!left_side ^ transpose_a) { in SolveWithInvertedDiagonalBlocks() 205 if (left_side) { in SolveWithInvertedDiagonalBlocks() 213 if (left_side) { in SolveWithInvertedDiagonalBlocks() 366 XlaOp a, XlaOp b, bool left_side, bool lower, bool transpose_a, in SolveByInvertingDiagonalBlocks() argument 396 return SolveWithInvertedDiagonalBlocks(a, b, inv_diag_blocks, left_side, in SolveByInvertingDiagonalBlocks() [all …]
|
D | triangular_solve_expander.h | 44 XlaOp SolveByInvertingDiagonalBlocks(XlaOp a, XlaOp b, bool left_side, 55 XlaOp SolveDirectly(XlaOp a, XlaOp b, bool left_side, bool lower, 59 XlaOp BuildTriangularSolve(XlaOp a, XlaOp b, bool left_side, bool lower,
|
D | hlo_instructions.cc | 531 return options.left_side() == other_options.left_side() && in IdenticalSlowPath()
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | triangular_solve_test.cc | 439 bool left_side; member 465 if (!spec.left_side) { in XLA_TEST_P() 474 auto x = TriangularSolve(a, b, spec.left_side, spec.lower, in XLA_TEST_P() 479 if (spec.left_side) { in XLA_TEST_P() 496 for (bool left_side : {false, true}) { in TriangularSolveTests() 504 specs.push_back({dims, left_side, lower, transpose_a}); in TriangularSolveTests() 520 absl::StrJoin(spec.dims, "_"), "_", spec.left_side ? "left" : "right", in __anon71a071ee0402()
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 38 left_side = expr_node.children[0] 39 if isinstance(left_side, Leaf) and \ 40 left_side.value == '__metaclass__':
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 38 left_side = expr_node.children[0] 39 if isinstance(left_side, Leaf) and \ 40 left_side.value == '__metaclass__':
|
/external/protobuf/src/google/protobuf/util/ |
D | message_differencer.h | 691 bool left_side); 700 bool left_side); 710 void PrintMapKey(bool left_side, const SpecificField& specific_field);
|
D | message_differencer.cc | 1976 const std::vector<SpecificField>& field_path, bool left_side) { in PrintPath() argument 1999 PrintMapKey(left_side, specific_field); in PrintPath() 2005 if (left_side && specific_field.index >= 0) { in PrintPath() 2008 if (!left_side && specific_field.new_index >= 0) { in PrintPath() 2018 bool left_side) { in PrintValue() argument 2023 int index = left_side ? specific_field.index : specific_field.new_index; in PrintValue() 2059 (left_side ? specific_field.unknown_field_set1 in PrintValue() 2062 &unknown_fields->field(left_side ? specific_field.unknown_field_index1 in PrintValue() 2104 bool left_side, const SpecificField& specific_field) { in PrintMapKey() argument 2113 left_side ? specific_field.map_entry1 : specific_field.map_entry2; in PrintMapKey()
|
/external/cronet/third_party/protobuf/src/google/protobuf/util/ |
D | message_differencer.h | 691 bool left_side); 700 bool left_side); 710 void PrintMapKey(bool left_side, const SpecificField& specific_field);
|
D | message_differencer.cc | 1976 const std::vector<SpecificField>& field_path, bool left_side) { in PrintPath() argument 1999 PrintMapKey(left_side, specific_field); in PrintPath() 2005 if (left_side && specific_field.index >= 0) { in PrintPath() 2008 if (!left_side && specific_field.new_index >= 0) { in PrintPath() 2018 bool left_side) { in PrintValue() argument 2023 int index = left_side ? specific_field.index : specific_field.new_index; in PrintValue() 2059 (left_side ? specific_field.unknown_field_set1 in PrintValue() 2062 &unknown_fields->field(left_side ? specific_field.unknown_field_index1 in PrintValue() 2104 bool left_side, const SpecificField& specific_field) { in PrintMapKey() argument 2113 left_side ? specific_field.map_entry1 : specific_field.map_entry2; in PrintMapKey()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | triangular_solve_thunk.cc | 46 side_(options.left_side() ? se::blas::Side::kLeft in TriangularSolveThunk()
|
D | jitrt_custom_calls.cc | 1382 runtime::FlatMemrefView temp, bool left_side, bool lower, 1413 opts.left_side(), opts.lower(), opts.unit_diagonal(), in run() 1421 runtime::FlatMemrefView temp, bool left_side, bool lower, in operator ()() argument 1445 int64_t a_batch_stride = left_side ? m * m * elem_size : n * n * elem_size; in operator ()() 1455 Side side = left_side ? Side::kLeft : Side::kRight; in operator ()()
|
/external/tensorflow/tensorflow/compiler/xla/python/xla_extension/ |
D | ops.pyi | 379 left_side: bool,
|
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/translate/ |
D | export.mlir | 1300 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr… 1307 // CHECK-SAME: f32[4,3] triangular-solve(f32[4,4] [[ARG_A]], f32[4,3] [[ARG_B]]), left_side=true, … 1624 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = false, lower = true, transpose_a = #mhlo<t…
|
D | import.hlotxt | 1338 // CHECK-SAME: left_side = true 1342 …ve.3 = f32[4,3] triangular-solve(f32[4,4] %Arg_0.1, f32[4,3] %Arg_1.2), left_side=true, lower=true…
|
/external/tensorflow/tensorflow/compiler/mlir/xla/ir/ |
D | mlir_hlo_builder.cc | 576 builder_.getBoolAttr(options.left_side()), in TriangularSolveInternal()
|
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/hlo_to_lhlo_with_xla/ |
D | hlo_text_to_lhlo_no_opt.hlotxt | 600 // CHECK-SAME: left_side = false
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/mhlo/ |
D | ops.mlir | 1775 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr… 1783 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr… 1791 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr… 1799 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr… 1807 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr… 1815 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr… 1823 …%0 = "mhlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #mhlo<tr…
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/stablehlo/tests/ |
D | ops_stablehlo.mlir | 1757 …%0 = "stablehlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #st… 1765 …%0 = "stablehlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #st… 1773 …%0 = "stablehlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #st… 1781 …%0 = "stablehlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #st… 1789 …%0 = "stablehlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #st… 1797 …%0 = "stablehlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #st… 1805 …%0 = "stablehlo.triangular_solve"(%arg0, %arg1) {left_side = true, lower = true, transpose_a = #st…
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
D | xla_builder.h | 1249 friend XlaOp TriangularSolve(XlaOp a, XlaOp b, bool left_side, bool lower, 2069 XlaOp TriangularSolve(XlaOp a, XlaOp b, bool left_side, bool lower,
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | xla_data.proto | 647 bool left_side = 1; field
|
/external/tensorflow/tensorflow/compiler/mlir/xla/ |
D | hlo_function_importer.cc | 1164 instruction->triangular_solve_options().left_side()))); in ImportInstructionImpl()
|
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/ |
D | mhlo_to_lhlo_with_xla.cc | 1320 triangular_solve.setLeftSideAttr(builder_.getBoolAttr(options.left_side())); in EmitTriangularSolveOp()
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/lhlo/ |
D | ops.mlir | 923 left_side = true, lower = true, transpose_a = #mhlo<transpose NO_TRANSPOSE>,
|