Home
last modified time | relevance | path

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

/external/libgav1/libgav1/src/dsp/x86/
Dintrapred_smooth_sse4.cc148 const __m128i bottom_left = _mm_set1_epi16(left[height - 1]); in LoadSmoothPixels4() local
150 pixels[0] = _mm_unpacklo_epi16(top, bottom_left); in LoadSmoothPixels4()
227 const __m128i bottom_left = _mm_shuffle_epi32(left, 0xFF); in Smooth4x4_SSE4_1() local
231 _mm_mullo_epi16(inverted_weights, bottom_left); in Smooth4x4_SSE4_1()
288 const __m128i bottom_left = _mm_set1_epi16(left[height - 1]); in LoadSmoothPixels8() local
290 pixels[0] = _mm_unpacklo_epi16(top_row, bottom_left); in LoadSmoothPixels8()
291 pixels[1] = _mm_unpackhi_epi16(top_row, bottom_left); in LoadSmoothPixels8()
484 const __m128i bottom_left = _mm_cvtsi32_si128(left_ptr[height - 1]); in SmoothWxH() local
493 _mm_mullo_epi16(scale_m_weights_y, bottom_left); in SmoothWxH()
1384 const __m128i bottom_left = _mm_set1_epi16(left[height - 1]); in LoadSmoothVerticalPixels4() local
[all …]
/external/libgav1/libgav1/src/dsp/arm/
Dintrapred_smooth_neon.cc76 const uint8_t bottom_left = left[height - 1]; in Smooth4Or8xN_NEON() local
87 const uint8x8_t bottom_left_v = vdup_n_u8(bottom_left); in Smooth4Or8xN_NEON()
157 const uint8_t bottom_left = left[height - 1]; in Smooth16PlusxN_NEON() local
172 const uint8x8_t bottom_left_v = vdup_n_u8(bottom_left); in Smooth16PlusxN_NEON()
237 const uint8_t bottom_left = left[height - 1]; in SmoothVertical4Or8xN_NEON() local
248 const uint8x8_t bottom_left_v = vdup_n_u8(bottom_left); in SmoothVertical4Or8xN_NEON()
287 const uint8_t bottom_left = left[height - 1]; in SmoothVertical16PlusxN_NEON() local
301 const uint8x8_t bottom_left_v = vdup_n_u8(bottom_left); in SmoothVertical16PlusxN_NEON()
/external/tensorflow/tensorflow/lite/kernels/perception/
Ddense_image_warp.cc72 float bottom_left = in DenseImageWarp() local
79 alpha_x * (bottom_right - bottom_left) + bottom_left; in DenseImageWarp()
/external/tensorflow/tensorflow/core/kernels/image/
Dcrop_and_resize_op_gpu.cu.cc107 const float bottom_left(static_cast<float>( in CropAndResizeKernel()
118 const float bottom = bottom_left + (bottom_right - bottom_left) * x_lerp; in CropAndResizeKernel()
299 const float bottom_left(static_cast<float>( in CropAndResizeBackpropBoxesKernel()
311 float image_grad_y = (1 - x_lerp) * (bottom_left - top_left) + in CropAndResizeBackpropBoxesKernel()
314 y_lerp * (bottom_right - bottom_left); in CropAndResizeBackpropBoxesKernel()
Dresize_bilinear_op.cc109 const float bottom_left, const float bottom_right, in compute_lerp() argument
112 const float bottom = bottom_left + (bottom_right - bottom_left) * x_lerp; in compute_lerp()
164 const float bottom_left = input_(b, ys_[y].upper, xs_[x].lower, c); in operator ()() local
168 return compute_lerp(top_left, top_right, bottom_left, bottom_right, xs_lerp, in operator ()()
Dresize_bilinear_op_gpu.cu.cc152 const float bottom_left( in ResizeBilinearKernel() local
162 const float bottom = bottom_left + (bottom_right - bottom_left) * x_lerp; in ResizeBilinearKernel()
320 const float bottom_left( in LegacyResizeBilinearKernel() local
330 const float bottom = bottom_left + (bottom_right - bottom_left) * x_lerp; in LegacyResizeBilinearKernel()
Dcrop_and_resize_op.cc293 const float bottom_left(static_cast<float>( in operator ()()
299 bottom_left + (bottom_right - bottom_left) * x_lerp; in operator ()()
713 const float bottom_left(static_cast<float>( in operator ()()
718 float image_grad_y = (1 - x_lerp) * (bottom_left - top_left) + in operator ()()
721 y_lerp * (bottom_right - bottom_left); in operator ()()
Dresize_bilinear_op_test.cc121 const float bottom_left = in ResizeBilinearBaseline() local
127 bottom_left + (bottom_right - bottom_left) * x_lerp; in ResizeBilinearBaseline()
/external/tensorflow/tensorflow/core/kernels/
Dquantization_utils_test.cc826 T_CALC ComputeRefLerp(T_CALC top_left, T_CALC top_right, T_CALC bottom_left, in ComputeRefLerp() argument
832 bottom_left * RESOLUTION_POW + (bottom_right - bottom_left) * x_lerp; in ComputeRefLerp()
838 void TestComputeLerp8x8(uint8 top_left, uint8 top_right, uint8 bottom_left, in TestComputeLerp8x8() argument
842 uint8x8_t bottom_left8x8 = To8x8(bottom_left); in TestComputeLerp8x8()
855 static_cast<int16>(bottom_left), static_cast<int16>(bottom_right), x_lerp, in TestComputeLerp8x8()
864 << static_cast<int>(bottom_left) << ", " in TestComputeLerp8x8()
870 void TestComputeLerp32x2(int32 top_left, int32 top_right, int32 bottom_left, in TestComputeLerp32x2() argument
874 int32x2_t bottom_left32x2 = To32x2(bottom_left); in TestComputeLerp32x2()
885 static_cast<int64>(bottom_left), static_cast<int64>(bottom_right), in TestComputeLerp32x2()
889 << bottom_left << ", " << bottom_right << ", " << x_lerp << ", " in TestComputeLerp32x2()
Dquantized_resize_bilinear_op.cc107 const float bottom_left = QuantizedToFloat<T>(in_bottom_left, min, max); in ComputeLerpReference() local
110 const float bottom = bottom_left + (bottom_right - bottom_left) * x_lerp; in ComputeLerpReference()
122 inline T ComputeLerp(const T top_left, const T top_right, const T bottom_left, in ComputeLerp() argument
129 static_cast<T_CALC>(bottom_left) * RESOLUTION_MULT + in ComputeLerp()
130 MulOffset<T, T_SCALE, T_CALC>(bottom_right, bottom_left, x_lerp); in ComputeLerp()
258 const T bottom_left = ys_input_upper_ptr[xs_lower + c]; in OutputLerpForChannels() local
261 top_left, top_right, bottom_left, bottom_right, xs_ilerp, ys_ilerp); in OutputLerpForChannels()
501 const T bottom_left = ys_input_upper_ptr[xs_lower + c]; in ResizeImageReference() local
504 top_left, top_right, bottom_left, bottom_right, xs_lerp, ys_lerp, in ResizeImageReference()
Dquantized_resize_bilinear_op_test.cc87 const float bottom_left = QuantizedToFloat<T>(in_bottom_left, min, max); in ComputeLerpReference() local
90 const float bottom = bottom_left + (bottom_right - bottom_left) * x_lerp; in ComputeLerpReference()
135 const float bottom_left = image_data[y_upper_index + xs_lower + c]; in CalcReferenceResizedVal() local
138 ComputeLerpReference<T>(top_left, top_right, bottom_left, bottom_right, in CalcReferenceResizedVal()
Dconv_ops_fused_image_transform.cc149 bottom_left(in_bottom_left), in SampleRect()
156 const T1 bottom = bottom_left[channel] + in BilinearSample()
157 (bottom_right[channel] - bottom_left[channel]) * x_lerp; in BilinearSample()
163 const T1* bottom_left; member
Dquantization_utils.h481 const int32x2_t bottom_left, in ComputeLerp32x2() argument
491 vmull_s32(bottom_left, RESOLUTION_MULT32x2); in ComputeLerp32x2()
497 vsub_s32(bottom_right, bottom_left); in ComputeLerp32x2()
/external/llvm-project/lldb/test/API/lang/c/array_types/
Dmain.c9 struct point_tag bottom_left; in main() member
/external/llvm-project/lldb/test/API/lang/c/struct_types/
Dmain.c28 struct point_tag bottom_left; in main() member
/external/gemmlowp/internal/
Doutput_sse.h367 RegBlockInt32<4, 4> bottom_left;
368 bottom_left.buf.reg[0] = src.buf.reg[1];
369 bottom_left.buf.reg[1] = src.buf.reg[3];
370 bottom_left.buf.reg[2] = src.buf.reg[5];
371 bottom_left.buf.reg[3] = src.buf.reg[7];
372 const auto transpose_bottom_left = Transpose(bottom_left);
Doutput_msa.h535 RegBlockInt32<4, 4> bottom_left;
536 bottom_left.buf.reg[0] = src.buf.reg[1];
537 bottom_left.buf.reg[1] = src.buf.reg[3];
538 bottom_left.buf.reg[2] = src.buf.reg[5];
539 bottom_left.buf.reg[3] = src.buf.reg[7];
540 const auto transpose_bottom_left = Transpose(bottom_left);
Doutput_neon.h478 RegBlockInt32<4, 4> bottom_left;
479 bottom_left.buf.reg[0] = src.buf.reg[1];
480 bottom_left.buf.reg[1] = src.buf.reg[3];
481 bottom_left.buf.reg[2] = src.buf.reg[5];
482 bottom_left.buf.reg[3] = src.buf.reg[7];
483 const auto transpose_bottom_left = Transpose(bottom_left);
/external/XNNPACK/src/f32-ibilinear-chw/
Dwasmsimd.c.in164 // (1 - alpha_h) * alpha_v * bottom_left +
170 // left = top_left + alpha_v * (bottom_left - top_left),
185 // left_diff = bottom_left - top_left
Dneon.c.in169 // (1 - alpha_h) * alpha_v * bottom_left +
175 // left = top_left + alpha_v * (bottom_left - top_left),
190 // left_diff = bottom_left - top_left
/external/libgav1/libgav1/src/dsp/
Dintrapred_smooth.cc68 const Pixel bottom_left = left[block_height - 1]; in Smooth() local
83 pred += static_cast<uint8_t>(scale_value - weights_y[y]) * bottom_left; in Smooth()
101 const Pixel bottom_left = left[block_height - 1]; in SmoothVertical() local
113 pred += static_cast<uint8_t>(scale_value - weights_y[y]) * bottom_left; in SmoothVertical()
/external/libchrome/ui/gfx/geometry/
Drect_f.h70 constexpr PointF bottom_left() const { return PointF(x(), bottom()); } in bottom_left() function
Drect.h103 constexpr Point bottom_left() const { return Point(x(), bottom()); } in bottom_left() function
Drect_unittest.cc863 EXPECT_EQ(Point(1, 6), i.bottom_left()); in TEST()
868 EXPECT_EQ(PointF(1.1f, 6.2f), f.bottom_left()); in TEST()
/external/libaom/libaom/aom_dsp/x86/
Dintrapred_ssse3.c894 const __m128i bottom_left = _mm_cvtsi32_si128((uint32_t)left[bh - 1]); in smooth_predictor_wxh() local
905 __m128i pred_scaled_bl = _mm_mullo_epi16(scale_m_weights_y, bottom_left); in smooth_predictor_wxh()
1262 const __m128i bottom_left = in smooth_v_predictor_wxh() local
1273 _mm_shuffle_epi32(_mm_unpacklo_epi16(weights_y, bottom_left), 0); in smooth_v_predictor_wxh()