Home
last modified time | relevance | path

Searched refs:start_height (Results 1 – 9 of 9) sorted by relevance

/external/libgav1/src/dsp/x86/
Dfilm_grain_sse4.cc153 int scaling_shift, int width, int height, int start_height, in BlendNoiseWithImageLuma_SSE4_1() argument
173 __m128i noise = LoadSource(&(noise_image[kPlaneY][y + start_height][x])); in BlendNoiseWithImageLuma_SSE4_1()
191 __m128i noise = LoadSource(&(noise_image[kPlaneY][y + start_height][x])); in BlendNoiseWithImageLuma_SSE4_1()
220 int width, int height, int start_height, int subsampling_x, in BlendChromaPlaneWithCfl_SSE4_1() argument
238 assert(start_height % 2 == 0); in BlendChromaPlaneWithCfl_SSE4_1()
239 start_height >>= subsampling_y; in BlendChromaPlaneWithCfl_SSE4_1()
253 &(noise_image[y + start_height][x]), derived_scaling_shift); in BlendChromaPlaneWithCfl_SSE4_1()
276 &(noise_image[y + start_height][x]), derived_scaling_shift); in BlendChromaPlaneWithCfl_SSE4_1()
292 int width, int height, int start_height, int subsampling_x, in BlendNoiseWithImageChromaWithCfl_SSE4_1() argument
307 noise_image[plane], min_value, max_chroma, width, height, start_height, in BlendNoiseWithImageChromaWithCfl_SSE4_1()
[all …]
/external/libgav1/src/
Dfilm_grain.cc565 const int start_height = slice_index * kFrameChunkHeight; in BlendNoiseChromaWorker() local
566 const int job_height = std::min(height_ - start_height, kFrameChunkHeight); in BlendNoiseChromaWorker()
569 source_plane_y + start_height * source_stride_y); in BlendNoiseChromaWorker()
585 source_plane_uv + (start_height >> subsampling_y_) * source_stride_uv); in BlendNoiseChromaWorker()
587 dest_plane_uv + (start_height >> subsampling_y_) * dest_stride_uv); in BlendNoiseChromaWorker()
590 start_height, subsampling_x_, subsampling_y_, scaling_lut_uv, in BlendNoiseChromaWorker()
609 const int start_height = job_index * kFrameChunkHeight; in BlendNoiseLumaWorker() local
610 const int job_height = std::min(height_ - start_height, kFrameChunkHeight); in BlendNoiseLumaWorker()
613 source_plane_y + start_height * source_stride_y); in BlendNoiseLumaWorker()
615 reinterpret_cast<Pixel*>(dest_plane_y + start_height * dest_stride_y); in BlendNoiseLumaWorker()
[all …]
/external/libgav1/src/dsp/arm/
Dfilm_grain_neon.cc730 int scaling_shift, int width, int height, int start_height, in BlendNoiseWithImageLuma_NEON() argument
758 GetSignedSource8(&(noise_image[kPlaneY][y + start_height][x])); in BlendNoiseWithImageLuma_NEON()
774 noise = GetSignedSource8(&(noise_image[kPlaneY][y + start_height][x])); in BlendNoiseWithImageLuma_NEON()
792 GetSignedSource8(&(noise_image[kPlaneY][y + start_height][x])); in BlendNoiseWithImageLuma_NEON()
811 GetSignedSource8(&(noise_image[kPlaneY][y + start_height][x])); in BlendNoiseWithImageLuma_NEON()
837 int width, int height, int start_height, int subsampling_x, in BlendChromaPlaneWithCfl_NEON() argument
859 assert(start_height % 2 == 0); in BlendChromaPlaneWithCfl_NEON()
860 start_height >>= subsampling_y; in BlendChromaPlaneWithCfl_NEON()
874 &in_chroma_row[x], &(noise_image[y + start_height][x]), scaling, in BlendChromaPlaneWithCfl_NEON()
901 &in_chroma_row[x], &(noise_image[y + start_height][x]), scaling, in BlendChromaPlaneWithCfl_NEON()
[all …]
/external/ComputeLibrary/src/core/CPP/kernels/
DCPPUpsampleKernel.cpp79 const int start_height = _info.pad_top(); in run() local
108 window_out.set(Window::DimY, Window::Dimension(start_height, end_height, stride_height)); in run()
113 window_out.set(Window::DimZ, Window::Dimension(start_height, end_height, stride_height)); in run()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/integer_ops/
Dmean.h150 int start_height, int end_height) in MeanWorkerTask()
159 start_height(start_height), in MeanWorkerTask()
164 output_shape, output_data, start_height, end_height); in Run()
176 int start_height; member
/external/libgav1/src/dsp/
Dfilm_grain.cc505 int width, int height, int start_height, in BlendNoiseWithImageLuma_C() argument
522 int noise = noise_image[kPlaneY][y + start_height][x]; in BlendNoiseWithImageLuma_C()
535 int width, int height, int start_height, int subsampling_x, in BlendNoiseWithImageChroma_C() argument
560 start_height >>= subsampling_y; in BlendNoiseWithImageChroma_C()
582 int noise = noise_image[plane][y + start_height][x]; in BlendNoiseWithImageChroma_C()
597 int width, int height, int start_height, int subsampling_x, in BlendNoiseWithImageChromaWithCfl_C() argument
613 start_height >>= subsampling_y; in BlendNoiseWithImageChromaWithCfl_C()
631 int noise_uv = noise_image[plane][y + start_height][x]; in BlendNoiseWithImageChromaWithCfl_C()
Ddsp.h793 int scaling_shift, int width, int height, int start_height,
799 int min_value, int max_value, int width, int height, int start_height,
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Dreduce.h163 int start_height, int end_height) in MeanWorkerTask()
172 start_height(start_height), in MeanWorkerTask()
177 output_shape, output_data, start_height, end_height); in Run()
189 int start_height; member
/external/tensorflow/tensorflow/python/kernel_tests/nn_ops/
Ddepthwise_conv_op_base.py57 start_height = i * sh
58 end_height = start_height + fh
63 x1[:, start_height:end_height, start_width:end_width, k, np.newaxis]