Home
last modified time | relevance | path

Searched refs:dst_idx (Results 1 – 25 of 46) sorted by relevance

12

/external/libhevc/encoder/
Dihevce_had_satd.c679 WORD32 dst_idx = (i >> 2) * dst_strd + (i % 4); in ihevce_compute_8x8HAD_using_4x4() local
691 pi2_dst0[dst_idx] = b0 + b2; in ihevce_compute_8x8HAD_using_4x4()
692 pi2_dst1[dst_idx] = b1 + b3; in ihevce_compute_8x8HAD_using_4x4()
693 pi2_dst2[dst_idx] = b0 - b2; in ihevce_compute_8x8HAD_using_4x4()
694 pi2_dst3[dst_idx] = b1 - b3; in ihevce_compute_8x8HAD_using_4x4()
696 if(ABS(pi2_dst0[dst_idx]) > threshold) in ihevce_compute_8x8HAD_using_4x4()
698 if(ABS(pi2_dst1[dst_idx]) > threshold) in ihevce_compute_8x8HAD_using_4x4()
700 if(ABS(pi2_dst2[dst_idx]) > threshold) in ihevce_compute_8x8HAD_using_4x4()
702 if(ABS(pi2_dst3[dst_idx]) > threshold) in ihevce_compute_8x8HAD_using_4x4()
705 u4_satd += ABS(pi2_dst0[dst_idx]); in ihevce_compute_8x8HAD_using_4x4()
[all …]
/external/mesa3d/src/mesa/state_tracker/tests/
Dst_tests_common.cpp336 st_dst_reg FakeCodeline::create_dst_register(int dst_idx,int writemask) in create_dst_register() argument
340 if (dst_idx >= 0) { in create_dst_register()
342 idx = dst_idx; in create_dst_register()
347 idx = 1 - dst_idx; in create_dst_register()
352 st_dst_reg FakeCodeline::create_dst_register(int dst_idx) in create_dst_register() argument
354 return create_dst_register(dst_idx, dst_idx < 0 ? in create_dst_register()
358 st_dst_reg FakeCodeline::create_dst_register(int dst_idx, gl_register_file file) in create_dst_register() argument
362 retval.index = dst_idx >= 0 ? dst_idx : 1 - dst_idx; in create_dst_register()
365 if (max_temp_id < dst_idx) in create_dst_register()
366 max_temp_id = dst_idx; in create_dst_register()
[all …]
Dst_tests_common.h84 st_dst_reg create_dst_register(int dst_idx);
85 st_dst_reg create_dst_register(int dst_idx, int writemask);
86 st_dst_reg create_dst_register(int dst_idx, gl_register_file file);
/external/rust/crates/plotters/src/chart/
Dbuilder.rs383 for (src_idx, dst_idx) in [1, 7, 3, 5].iter().zip(0..4) { in build_cartesian_2d()
384 if !self.overlap_plotting_area[dst_idx] { in build_cartesian_2d()
387 std::mem::swap(&mut label_areas[dst_idx], &mut split[*src_idx]); in build_cartesian_2d()
389 } else if self.label_area_size[dst_idx] != 0 { in build_cartesian_2d()
390 let size = self.label_area_size[dst_idx] as i32; in build_cartesian_2d()
392 let x0 = if DIR[dst_idx].0 > 0 { in build_cartesian_2d()
397 let y0 = if DIR[dst_idx].1 > 0 { in build_cartesian_2d()
402 let x1 = if DIR[dst_idx].0 >= 0 { dw as i32 } else { size }; in build_cartesian_2d()
403 let y1 = if DIR[dst_idx].1 >= 0 { dh as i32 } else { size }; in build_cartesian_2d()
405 label_areas[dst_idx] = Some( in build_cartesian_2d()
/external/ComputeLibrary/tests/validation/reference/
DCol2Im.cpp59 const int dst_idx = y + x * src_height + b * src_height * src_width; in col2im() local
60 dst[dst_idx] = src[coord2index(src.shape(), Coordinates(x, y, b))]; in col2im()
78 …const int dst_idx = y + x * src_height + g * src_height * src_width + b * src_height * src_width *… in col2im() local
79 dst[dst_idx] = src[coord2index(src.shape(), Coordinates(x, y, g, b))]; in col2im()
DReorgLayer.cpp73 const unsigned int dst_idx = w + W * (h + H * (c + C * b)); in reorg_layer() local
75 dst[dst_idx] = *reinterpret_cast<const T *>(src(map_coords)); in reorg_layer()
DIm2Col.cpp54 int dst_idx = 0; in im2col_nchw() local
78 …dst[dst_idx++] = tensor_elem_at(src, Coordinates(xi + xk - pad_x, yi + yk - pad_y, ci, b), BorderM… in im2col_nchw()
85 dst[dst_idx++] = static_cast<T>(1); in im2col_nchw()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrBulkMemory.td56 BULK_I<(outs), (ins i32imm_op:$src_idx, i32imm_op:$dst_idx,
58 (outs), (ins i32imm_op:$src_idx, i32imm_op:$dst_idx),
59 [(wasm_memcpy (i32 imm:$src_idx), (i32 imm:$dst_idx),
62 "memory.copy\t$src_idx, $dst_idx, $dst, $src, $len",
63 "memory.copy\t$src_idx, $dst_idx", 0x0a>;
/external/zucchini/
Drel32_utils.h157 offset_t dst_idx);
168 offset_t dst_idx) { in ArmCopyDisp() argument
173 CODE_T dst_code = ADDR_TRAITS::Fetch(dst_view, dst_idx); in ArmCopyDisp()
175 ADDR_TRAITS::Store(dst_view, dst_idx, dst_code); in ArmCopyDisp()
/external/zucchini/aosp/include/components/zucchini/
Drel32_utils.h157 offset_t dst_idx);
168 offset_t dst_idx) { in ArmCopyDisp() argument
173 CODE_T dst_code = ADDR_TRAITS::Fetch(dst_view, dst_idx); in ArmCopyDisp()
175 ADDR_TRAITS::Store(dst_view, dst_idx, dst_code); in ArmCopyDisp()
/external/tensorflow/tensorflow/core/grappler/
Dgraph_topology_view.cc92 const int dst_idx = dst->second; in InitializeFromGraph() local
93 if (ignore_control_edges && (src_idx < 0 || dst_idx < 0)) { in InitializeFromGraph()
96 fanins_[dst_idx].push_back(src_idx); in InitializeFromGraph()
97 fanouts_[src_idx].push_back(dst_idx); in InitializeFromGraph()
/external/libaom/av1/encoder/
Dhash_motion.c459 int dst_idx = 0; in av1_get_block_hash_value() local
465 dst_idx = 1 - dst_idx; in av1_get_block_hash_value()
481 buf_1[dst_idx][dst_pos] = in av1_get_block_hash_value()
488 buf_2[dst_idx][dst_pos] = in av1_get_block_hash_value()
498 *hash_value1 = (buf_1[dst_idx][0] & crc_mask) + add_value; in av1_get_block_hash_value()
499 *hash_value2 = buf_2[dst_idx][0]; in av1_get_block_hash_value()
/external/tensorflow/tensorflow/core/common_runtime/
Dshape_refiner.cc411 const Node* node, int dst_idx, bool* evaluated, Tensor* result, in EvaluateConstantTensorForEdge() argument
415 TF_RETURN_IF_ERROR(node->input_edge(dst_idx, &input_edge)); in EvaluateConstantTensorForEdge()
424 const Node* node, int dst_idx, bool* evaluated, int64_t* result, in EvaluateConstantIntScalarEdge() argument
427 TF_RETURN_IF_ERROR(EvaluateConstantTensorForEdge(node, dst_idx, evaluated, in EvaluateConstantIntScalarEdge()
450 InferenceContext* target_context, const Node* node, int dst_idx, in ConstantPartialShape() argument
453 TF_RETURN_IF_ERROR(node->input_edge(dst_idx, &input_edge)); in ConstantPartialShape()
467 TF_RETURN_IF_ERROR(EvaluateConstantTensorForEdge(node, dst_idx, &evaluated, in ConstantPartialShape()
501 if (EvaluateConstantTensorForEdge(node, dst_idx, &evaluated, &t, in ConstantPartialShape()
587 TF_RETURN_IF_ERROR(EvaluateConstantTensorForEdge(node, dst_idx, &evaluated, in ConstantPartialShape()
Dshape_refiner.h222 const Node* node, int dst_idx, bool* evaluated, Tensor* result,
235 const Node* node, int dst_idx, bool* evaluated, int64_t* result,
266 const Node* node, int dst_idx,
Dhierarchical_tree_broadcaster.cc417 int dst_idx = in DispatchSend() local
421 << col_params_->group.members[dst_idx].device.name() in DispatchSend()
423 << " dst_idx=" << dst_idx; in DispatchSend()
425 col_params_->group.members[dst_idx].device.name(), in DispatchSend()
426 col_params_->group.members[dst_idx].task, send_buf_key, col_ctx_->device, in DispatchSend()
/external/grpc-grpc/test/core/iomgr/
Dtcp_server_posix_test.cc354 size_t dst_idx; in test_connect() local
356 for (dst_idx = 0; dst_idx < dst_addrs->naddrs; ++dst_idx) { in test_connect()
357 test_addr dst = dst_addrs->addrs[dst_idx]; in test_connect()
376 dst_addrs->addrs[dst_idx].addr.len = 0; in test_connect()
/external/tensorflow/tensorflow/core/kernels/
Ddata_format_ops.cc179 Eigen::DSizes<Eigen::DenseIndex, 10> dst_idx; in Compute() local
210 ComputeDstIndex(src_format_str, dst_format_str, input.dims(), &dst_idx); in Compute()
214 output->flat<T>(), dst_idx); in Compute()
295 const Eigen::DSizes<Eigen::DenseIndex, 10>& dst_idx); \
/external/tensorflow/tensorflow/core/graph/
Dcollective_order.cc99 int dst_idx = instance_keys[i] > instance_keys[j] ? j : i; in CreateControlDependencies() local
101 Node* dst_node = collective_nodes[dst_idx]; in CreateControlDependencies()
104 << dst_node->name() << " instance " << instance_keys[dst_idx]; in CreateControlDependencies()
/external/mesa3d/src/compiler/nir/
Dnir_format_convert.h173 unsigned dst_idx = 0; in nir_format_bitcast_uvec_unmasked() local
178 dst_chan[dst_idx] = shifted; in nir_format_bitcast_uvec_unmasked()
180 dst_chan[dst_idx] = nir_ior(b, dst_chan[dst_idx], shifted); in nir_format_bitcast_uvec_unmasked()
185 dst_idx++; in nir_format_bitcast_uvec_unmasked()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/channel/
Dchannel_args.cc105 size_t dst_idx = 0; in grpc_channel_args_copy_and_add_and_remove() local
109 dst->args[dst_idx++] = copy_arg(&src->args[i]); in grpc_channel_args_copy_and_add_and_remove()
115 dst->args[dst_idx++] = copy_arg(&to_add[i]); in grpc_channel_args_copy_and_add_and_remove()
117 GPR_ASSERT(dst_idx == dst->num_args); in grpc_channel_args_copy_and_add_and_remove()
/external/grpc-grpc/src/core/lib/channel/
Dchannel_args.cc99 size_t dst_idx = 0; in grpc_channel_args_copy_and_add_and_remove() local
103 dst->args[dst_idx++] = copy_arg(&src->args[i]); in grpc_channel_args_copy_and_add_and_remove()
109 dst->args[dst_idx++] = copy_arg(&to_add[i]); in grpc_channel_args_copy_and_add_and_remove()
111 GPR_ASSERT(dst_idx == dst->num_args); in grpc_channel_args_copy_and_add_and_remove()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info.c336 tgsi_opcode_infer_dst_type(enum tgsi_opcode opcode, uint dst_idx) in tgsi_opcode_infer_dst_type() argument
338 if (dst_idx == 1 && opcode == TGSI_OPCODE_DFRACEXP) in tgsi_opcode_infer_dst_type()
Dtgsi_info.h117 tgsi_opcode_infer_dst_type(enum tgsi_opcode opcode, uint dst_idx);
/external/tensorflow/tensorflow/compiler/xla/service/spmd/
Dcustom_call_handler.cc309 std::vector<int64_t> dst_idx(indices.begin(), indices.end()); in HandleCustomCallSPMDInternal_RotateRight() local
310 dst_idx[dim] += shard_distance; in HandleCustomCallSPMDInternal_RotateRight()
311 dst_idx[dim] %= participating_shards; in HandleCustomCallSPMDInternal_RotateRight()
313 hlo->sharding().tile_assignment()(dst_idx)); in HandleCustomCallSPMDInternal_RotateRight()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler_util.h82 unsigned int dst_idx,

12