Home
last modified time | relevance | path

Searched refs:dst_index (Results 1 – 20 of 20) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_transform.h290 unsigned dst_index, in tgsi_transform_op1_inst() argument
301 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op1_inst()
314 unsigned dst_index, in tgsi_transform_op2_inst() argument
328 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op2_inst()
343 unsigned dst_index, in tgsi_transform_op3_inst() argument
358 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op3_inst()
374 unsigned dst_index, in tgsi_transform_op1_swz_inst() argument
386 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op1_swz_inst()
415 unsigned dst_index, in tgsi_transform_op2_swz_inst() argument
431 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op2_swz_inst()
[all …]
/external/ruy/ruy/profiler/
Dtest_instrumented_library.cc35 int dst_index = 0; in MergeSortRecurse() local
38 while (dst_index < size) { in MergeSortRecurse()
46 workspace[dst_index++] = val; in MergeSortRecurse()
/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_relu_op.cc442 const size_t dst_index = 0; // index of dst output tensor in Compute() local
457 AllocateOutputSetMklShape(context, dst_index, &dst_tensor, tf_shape_dst, in Compute()
522 AllocateOutputSetMklShape(context, dst_index, &dst_tensor, tf_shape_dst, in Compute()
530 static_cast<const int>(dst_index), in Compute()
532 AllocateOutputSetMklShape(context, dst_index, dnn_shape_dst); in Compute()
772 const size_t dst_index = 0; // index of dst output tensor in Compute_Scalar() local
782 AllocateOutputSetMklShape(context, dst_index, &dst_tensor, in Compute_Scalar()
840 const size_t dst_index = 0; // index of dst output tensor in Compute_Scalar() local
850 AllocateOutputSetMklShape(context, dst_index, &dst_tensor, in Compute_Scalar()
921 const size_t dst_index = 0; // index of dst output tensor in Compute_Scalar() local
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dfully_connected.h77 int dst_index = block_x * padded_dst_channels * 4 + block_y * 16 + in RearrangeFCWeightsToIOO4I4() local
80 dst[dst_index] = weights.data[src_channels * y + x]; in RearrangeFCWeightsToIOO4I4()
82 dst[dst_index] = 0.0f; in RearrangeFCWeightsToIOO4I4()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/special/
Dfc_fc_add.h53 int dst_index = block_x * padded_dst_channels * 4 + block_y * 16 + in RearrangeFCWeightsToIOO4I4() local
56 dst[dst_index] = weights.data[src_channels * y + x]; in RearrangeFCWeightsToIOO4I4()
58 dst[dst_index] = 0.0f; in RearrangeFCWeightsToIOO4I4()
/external/tensorflow/tensorflow/core/graph/
Dgraph.cc618 int dst_index) { in UpdateEdge() argument
620 TF_RETURN_IF_ERROR(IsValidInputTensor(dst, dst_index)); in UpdateEdge()
621 const Edge* e = FindEdge(dst, dst_index); in UpdateEdge()
627 AddEdge(new_src, new_src_index, dst, dst_index); in UpdateEdge()
629 (*dst->props_->node_def.mutable_input())[dst_index] = in UpdateEdge()
643 int dst_index = 0; in AddWhileInputHack() local
646 ++dst_index; in AddWhileInputHack()
648 TF_RETURN_IF_ERROR(IsValidInputTensor(dst, dst_index)); in AddWhileInputHack()
649 AddEdge(new_src, new_src_index, dst, dst_index); in AddWhileInputHack()
Dgraph.h572 Status UpdateEdge(Node* new_src, int new_src_index, Node* dst, int dst_index);
/external/mesa3d/src/gallium/auxiliary/util/
Du_vbuf.c903 unsigned dst_index = start_slot + i; in u_vbuf_set_vertex_buffers() local
905 pipe_vertex_buffer_unreference(&mgr->vertex_buffer[dst_index]); in u_vbuf_set_vertex_buffers()
906 pipe_vertex_buffer_unreference(&mgr->real_vertex_buffer[dst_index]); in u_vbuf_set_vertex_buffers()
914 unsigned dst_index = start_slot + i; in u_vbuf_set_vertex_buffers() local
916 struct pipe_vertex_buffer *orig_vb = &mgr->vertex_buffer[dst_index]; in u_vbuf_set_vertex_buffers()
917 struct pipe_vertex_buffer *real_vb = &mgr->real_vertex_buffer[dst_index]; in u_vbuf_set_vertex_buffers()
928 nonzero_stride_vb_mask |= 1 << dst_index; in u_vbuf_set_vertex_buffers()
930 enabled_vb_mask |= 1 << dst_index; in u_vbuf_set_vertex_buffers()
934 incompatible_vb_mask |= 1 << dst_index; in u_vbuf_set_vertex_buffers()
943 user_vb_mask |= 1 << dst_index; in u_vbuf_set_vertex_buffers()
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_state.c1090 unsigned dst_index = start_slot + i; in nv50_set_vertex_buffers() local
1093 nv50->vbo_user |= 1 << dst_index; in nv50_set_vertex_buffers()
1095 nv50->vbo_constant |= 1 << dst_index; in nv50_set_vertex_buffers()
1097 nv50->vbo_constant &= ~(1 << dst_index); in nv50_set_vertex_buffers()
1098 nv50->vtxbufs_coherent &= ~(1 << dst_index); in nv50_set_vertex_buffers()
1100 nv50->vbo_user &= ~(1 << dst_index); in nv50_set_vertex_buffers()
1101 nv50->vbo_constant &= ~(1 << dst_index); in nv50_set_vertex_buffers()
1105 nv50->vtxbufs_coherent |= (1 << dst_index); in nv50_set_vertex_buffers()
1107 nv50->vtxbufs_coherent &= ~(1 << dst_index); in nv50_set_vertex_buffers()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_state.c1011 unsigned dst_index = start_slot + i; in nvc0_set_vertex_buffers() local
1014 nvc0->vbo_user |= 1 << dst_index; in nvc0_set_vertex_buffers()
1016 nvc0->constant_vbos |= 1 << dst_index; in nvc0_set_vertex_buffers()
1018 nvc0->constant_vbos &= ~(1 << dst_index); in nvc0_set_vertex_buffers()
1019 nvc0->vtxbufs_coherent &= ~(1 << dst_index); in nvc0_set_vertex_buffers()
1021 nvc0->vbo_user &= ~(1 << dst_index); in nvc0_set_vertex_buffers()
1022 nvc0->constant_vbos &= ~(1 << dst_index); in nvc0_set_vertex_buffers()
1026 nvc0->vtxbufs_coherent |= (1 << dst_index); in nvc0_set_vertex_buffers()
1028 nvc0->vtxbufs_coherent &= ~(1 << dst_index); in nvc0_set_vertex_buffers()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dexport_graphdef.cc197 Status AddEdgeBetweenNodes(Value src, Node* dst_node, unsigned dst_index);
288 unsigned dst_index) { in AddEdgeBetweenNodes() argument
305 dst_index); in AddEdgeBetweenNodes()
315 graph_->AddEdge(input_node_it->second, 0, dst_node, dst_index); in AddEdgeBetweenNodes()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator.cc1097 [&](int64 axis, int64 dst_index, int64 src_index, in GenerateIndices()
1099 if (!base(axis, dst_index, src_index, within_src_bounds)) { in GenerateIndices()
1105 generate(axis - 1, dst_index, src_index, within_src_bounds); in GenerateIndices()
1106 dst_index += dst_strides[axis]; in GenerateIndices()
1145 auto base_case = [&](int64 axis, int64 dst_index, int64 src_index, in CopyDataFromInput()
1161 data[dst_index + i * fft_strides[axis]] = value; in CopyDataFromInput()
1196 auto base_case = [&](int64 axis, int64 dst_index, int64 src_index, in CopyDataToOutput()
1209 output_data[dst_index + i * output_strides[axis]] = value; in CopyDataToOutput()
/external/libaom/libaom/av1/encoder/x86/
Dhighbd_fwd_txfm_sse4.c1005 int dst_index = 0; in convert_8x8_to_16x16() local
1010 out[dst_index] = in[src_index]; in convert_8x8_to_16x16()
1011 out[dst_index + 1] = in[src_index + 1]; in convert_8x8_to_16x16()
1012 out[dst_index + 2] = in[src_index + 16]; in convert_8x8_to_16x16()
1013 out[dst_index + 3] = in[src_index + 17]; in convert_8x8_to_16x16()
1014 dst_index += 4; in convert_8x8_to_16x16()
1022 out[dst_index] = in[src_index]; in convert_8x8_to_16x16()
1023 out[dst_index + 1] = in[src_index + 1]; in convert_8x8_to_16x16()
1024 out[dst_index + 2] = in[src_index + 16]; in convert_8x8_to_16x16()
1025 out[dst_index + 3] = in[src_index + 17]; in convert_8x8_to_16x16()
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_dataflow.c684 unsigned int dst_index, in get_readers_for_single_write() argument
699 d->DstIndex = dst_index; in get_readers_for_single_write()
/external/tensorflow/tensorflow/core/common_runtime/
Dgraph_constructor.cc384 : src_name(name), src_index(i1), dst_node(n), dst_index(i2) {} in EdgeInfo()
389 int dst_index; member
1310 MakeEdge(src_node, e.src_index, e.dst_node, e.dst_index)); in AddBackEdges()
/external/llvm-project/openmp/runtime/src/
Dkmp_affinity.cpp2630 int dst_index = 0; in __kmp_affinity_create_cpuinfo_map() local
2636 addr.labels[dst_index] = threadInfo[i][src_index]; in __kmp_affinity_create_cpuinfo_map()
2638 pkgLevel = dst_index; in __kmp_affinity_create_cpuinfo_map()
2640 coreLevel = dst_index; in __kmp_affinity_create_cpuinfo_map()
2642 threadLevel = dst_index; in __kmp_affinity_create_cpuinfo_map()
2644 dst_index++; in __kmp_affinity_create_cpuinfo_map()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_ops_n_z.cc1664 unsigned dst_index) { in CopyBit() argument
1666 Set(dst, dst_index); in CopyBit()
1668 Unset(dst, dst_index); in CopyBit()
/external/vixl/src/aarch64/
Dlogic-aarch64.cc2938 int dst_index, in ins_element() argument
2941 dst.SetUint(vform, dst_index, src.Uint(vform, src_index)); in ins_element()
2948 int dst_index, in ins_immediate() argument
2951 dst.SetUint(vform, dst_index, value); in ins_immediate()
Dsimulator-aarch64.h3340 int dst_index,
3345 int dst_index,
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c9136 unsigned dst_index) in emit_simple_1dst() argument
9146 if (i == dst_index) { in emit_simple_1dst()