Home
last modified time | relevance | path

Searched refs:dst_i (Results 1 – 8 of 8) sorted by relevance

/external/libgav1/libgav1/src/dsp/
Dinverse_transform.cc553 int32_t dst_i = ((i & 1) == 0) ? src[index] : -src[index]; in AdstOutputPermutation() local
557 dst_i -= (dst_i == 0x8000); in AdstOutputPermutation()
559 dst[i] = dst_i; in AdstOutputPermutation()
853 int32_t dst_i = (dst[i] * kIdentity4Multiplier + rounding) >> (12 + shift); in Identity4Row_C() local
855 dst_i = Clip3(dst_i, INT16_MIN, INT16_MAX); in Identity4Row_C()
857 dst[i] = static_cast<Residual>(dst_i); in Identity4Row_C()
885 int32_t dst_i = in Identity4DcOnly_C() local
888 dst_i = Clip3(dst_i, INT16_MIN, INT16_MAX); in Identity4DcOnly_C()
890 dst[0] = static_cast<Residual>(dst_i); in Identity4DcOnly_C()
906 int32_t dst_i = RightShiftWithRounding(MultiplyBy2(dst[i]), shift); in Identity8Row_C() local
[all …]
/external/llvm/test/CodeGen/X86/
Dwiden_arith-2.ll7 define void @update(i64* %dst_i, i64* %src_i, i32 %n) nounwind {
9 %dst_i.addr = alloca i64* ; <i64**> [#uses=2]
15 store i64* %dst_i, i64** %dst_i.addr
29 %tmp3 = load i64*, i64** %dst_i.addr ; <i64*> [#uses=1]
Dwiden_cast-4.ll4 define void @update(i64* %dst_i, i64* %src_i, i32 %n) nounwind {
8 %dst_i.addr = alloca i64* ; <i64**> [#uses=2]
14 store i64* %dst_i, i64** %dst_i.addr
28 %tmp3 = load i64*, i64** %dst_i.addr ; <i64*> [#uses=1]
/external/llvm-project/llvm/test/CodeGen/X86/
Dwiden_arith-2.ll6 define void @update(i64* %dst_i, i64* %src_i, i32 %n) nounwind {
38 %dst_i.addr = alloca i64*
44 store i64* %dst_i, i64** %dst_i.addr
58 %tmp3 = load i64*, i64** %dst_i.addr
Dwiden_cast-4.ll6 define void @update(i64* %dst_i, i64* %src_i, i32 %n) nounwind {
42 %dst_i.addr = alloca i64*
48 store i64* %dst_i, i64** %dst_i.addr
62 %tmp3 = load i64*, i64** %dst_i.addr
/external/tensorflow/tensorflow/core/kernels/
Dragged_tensor_to_tensor_op.cc491 INDEX_TYPE dst_i = src_i < output_index_size ? output_index[src_i] : -1; in SetOutput() local
495 if (dst_i == dst_end) { in SetOutput()
516 dst_i = output_size / value_element_size; in SetOutput()
518 if (dst_i > dst_end) { in SetOutput()
521 output_base + dst_i * value_element_size, *default_value); in SetOutput()
522 dst_end = dst_i; in SetOutput()
524 while (dst_i > dst_end) { in SetOutput()
534 if (dst_i < 0) { in SetOutput()
/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/ragged/
Dragged_tensor_to_tensor_tflite.cc477 int dst_i = src_i < output_index_size ? output_index[src_i] : -1; in SetOutputT() local
481 if (dst_i == dst_end) { in SetOutputT()
503 dst_i = output_size / value_element_size; in SetOutputT()
505 if (dst_i > dst_end) { in SetOutputT()
507 output_base + dst_i * value_element_size, *default_value); in SetOutputT()
508 dst_end = dst_i; in SetOutputT()
512 if (dst_i < 0) { in SetOutputT()
/external/mesa3d/src/imgui/
Dimgui_draw.cpp1875 for (int dst_i = 0; dst_i < dst_tmp_array.Size; dst_i++) in ImFontAtlasBuildWithStbTruetype() local
1876 dst_tmp_array[dst_i].GlyphsSet.Clear(); in ImFontAtlasBuildWithStbTruetype()