/external/libgav1/libgav1/src/dsp/ |
D | cdef.cc | 157 const uint16_t pixel_value = src[x]; in CdefFilter_C() local 158 uint16_t max_value = pixel_value; in CdefFilter_C() 159 uint16_t min_value = pixel_value; in CdefFilter_C() 171 sum += Constrain(value - pixel_value, primary_strength, damping) * in CdefFilter_C() 189 sum += Constrain(value - pixel_value, secondary_strength, in CdefFilter_C() 205 Clip3(pixel_value + offset, min_value, max_value)); in CdefFilter_C() 207 dst[x] = static_cast<Pixel>(pixel_value + offset); in CdefFilter_C()
|
/external/ImageMagick/coders/ |
D | dcm.c | 2871 pixel_value; in ReadDCMPixels() local 2874 pixel_value=info->polarity != MagickFalse ? in ReadDCMPixels() 2881 pixel_value=ReadDCMSignedShort(stream_info,image); in ReadDCMPixels() 2883 pixel_value=(int) ReadDCMShort(stream_info,image); in ReadDCMPixels() 2885 pixel_value=(int)info->max_value-pixel_value; in ReadDCMPixels() 2891 pixel_value=byte; in ReadDCMPixels() 2894 pixel_value|=(byte << 8); in ReadDCMPixels() 2898 pixel_value=ReadDCMSignedShort(stream_info,image); in ReadDCMPixels() 2899 byte=(int) (pixel_value & 0x0f); in ReadDCMPixels() 2900 pixel_value>>=4; in ReadDCMPixels() [all …]
|
/external/webrtc/modules/desktop_capture/ |
D | desktop_frame_unittest.cc | 66 uint32_t pixel_value = *reinterpret_cast<uint32_t*>(data); in RunTest() local 67 bool was_copied = pixel_value == 0xffffffff; in RunTest() 68 ASSERT_TRUE(was_copied || pixel_value == 0); in RunTest()
|
/external/angle/src/libANGLE/ |
D | gen_overlay_fonts.py | 226 pixel_value = bitmap.buffer[y * pitch + x] 227 output_bit = 1 if pixel_value >= 122 else 0
|
/external/libvpx/libvpx/vp8/encoder/ |
D | temporal_filter.c | 83 int pixel_value = *frame2++; in vp8_temporal_filter_apply_c() local 85 modifier = src_byte - pixel_value; in vp8_temporal_filter_apply_c() 101 accumulator[k] += modifier * pixel_value; in vp8_temporal_filter_apply_c()
|
/external/skia/tools/skqp/ |
D | README_ALGORITHM.md | 26 function calculate_pixel_error(pixel_value, pixel_max, pixel_min): 30 value = get_color(pixel_value, color_channel)
|
/external/skqp/tools/skqp/ |
D | README_ALGORITHM.md | 26 function calculate_pixel_error(pixel_value, pixel_max, pixel_min): 30 value = get_color(pixel_value, color_channel)
|
/external/libaom/libaom/av1/encoder/x86/ |
D | temporal_filter_sse2.c | 180 const int pixel_value = frame2[i * stride2 + j]; in apply_temporal_filter_planewise() local 213 accumulator[k] += adjusted_weight * pixel_value; in apply_temporal_filter_planewise()
|
D | temporal_filter_avx2.c | 203 const int pixel_value = frame2[i * stride2 + j]; in apply_temporal_filter_planewise() local 235 accumulator[k] += adjusted_weight * pixel_value; in apply_temporal_filter_planewise()
|
/external/libvpx/libvpx/vp8/encoder/mips/msa/ |
D | temporal_filter_msa.c | 262 int pixel_value = *frame2++; in vp8_temporal_filter_apply_msa() local 264 modifier = src_byte - pixel_value; in vp8_temporal_filter_apply_msa() 276 accumulator[k] += modifier * pixel_value; in vp8_temporal_filter_apply_msa()
|
/external/OpenCL-CTS/test_conformance/images/kernel_read_write/ |
D | test_write_1D.cpp | 102 int pixel_value = 0; in test_write_image_1D() local 110 pixel_value = random_in_range( formatMin, (int)formatMax, d ); in test_write_image_1D() 111 inputValues[ i ] = (float)(pixel_value/255.0f); in test_write_image_1D()
|
D | test_write_1D_array.cpp | 112 int pixel_value = 0; in test_write_image_1D_array() local 120 pixel_value = random_in_range( formatMin, (int)formatMax, d ); in test_write_image_1D_array() 121 inputValues[ i ] = (float)(pixel_value/255.0f); in test_write_image_1D_array()
|
D | test_write_3D.cpp | 138 int pixel_value = 0; in test_write_image_3D() local 148 pixel_value = random_in_range( formatMin, (int)formatMax, d ); in test_write_image_3D() 149 inputValues[ i ] = (float)(pixel_value/255.0f); in test_write_image_3D()
|
D | test_write_2D_array.cpp | 135 int pixel_value = 0; in test_write_image_2D_array() local 145 pixel_value = random_in_range( formatMin, (int)formatMax, d ); in test_write_image_2D_array() 146 inputValues[ i ] = (float)(pixel_value/255.0f); in test_write_image_2D_array()
|
D | test_write_image.cpp | 133 int pixel_value = 0; in test_write_image() local 141 pixel_value = random_in_range( formatMin, (int)formatMax, d ); in test_write_image() 142 inputValues[ i ] = (float)(pixel_value/255.0f); in test_write_image()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_temporal_filter.c | 310 const int pixel_value = y_pred[i * y_buf_stride + j]; in vp9_apply_temporal_filter_c() local 345 y_accumulator[k] += modifier * pixel_value; in vp9_apply_temporal_filter_c()
|