/external/libgav1/libgav1/src/dsp/x86/ |
D | intrapred_smooth_sse4.cc | 148 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/ |
D | intrapred_smooth_neon.cc | 76 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/ |
D | dense_image_warp.cc | 72 float bottom_left = in DenseImageWarp() local 79 alpha_x * (bottom_right - bottom_left) + bottom_left; in DenseImageWarp()
|
/external/tensorflow/tensorflow/core/kernels/image/ |
D | crop_and_resize_op_gpu.cu.cc | 107 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()
|
D | resize_bilinear_op.cc | 109 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 ()()
|
D | resize_bilinear_op_gpu.cu.cc | 152 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()
|
D | crop_and_resize_op.cc | 293 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 ()()
|
D | resize_bilinear_op_test.cc | 121 const float bottom_left = in ResizeBilinearBaseline() local 127 bottom_left + (bottom_right - bottom_left) * x_lerp; in ResizeBilinearBaseline()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | quantization_utils_test.cc | 826 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()
|
D | quantized_resize_bilinear_op.cc | 107 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()
|
D | quantized_resize_bilinear_op_test.cc | 87 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()
|
D | conv_ops_fused_image_transform.cc | 149 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
|
D | quantization_utils.h | 481 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/ |
D | main.c | 9 struct point_tag bottom_left; in main() member
|
/external/llvm-project/lldb/test/API/lang/c/struct_types/ |
D | main.c | 28 struct point_tag bottom_left; in main() member
|
/external/gemmlowp/internal/ |
D | output_sse.h | 367 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);
|
D | output_msa.h | 535 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);
|
D | output_neon.h | 478 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/ |
D | wasmsimd.c.in | 164 // (1 - alpha_h) * alpha_v * bottom_left + 170 // left = top_left + alpha_v * (bottom_left - top_left), 185 // left_diff = bottom_left - top_left
|
D | neon.c.in | 169 // (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/ |
D | intrapred_smooth.cc | 68 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/ |
D | rect_f.h | 70 constexpr PointF bottom_left() const { return PointF(x(), bottom()); } in bottom_left() function
|
D | rect.h | 103 constexpr Point bottom_left() const { return Point(x(), bottom()); } in bottom_left() function
|
D | rect_unittest.cc | 863 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/ |
D | intrapred_ssse3.c | 894 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()
|