/third_party/ffmpeg/libavfilter/ |
D | vf_deband.c | 45 int *x_pos; member 157 const int x_pos = s->x_pos[pos + x]; in deband_8_c() local 159 … const int ref0 = src_ptr[av_clip(y + y_pos, 0, h) * src_linesize + av_clip(x + x_pos, 0, w)]; in deband_8_c() 160 … const int ref1 = src_ptr[av_clip(y + -y_pos, 0, h) * src_linesize + av_clip(x + x_pos, 0, w)]; in deband_8_c() 161 … const int ref2 = src_ptr[av_clip(y + -y_pos, 0, h) * src_linesize + av_clip(x + -x_pos, 0, w)]; in deband_8_c() 162 … const int ref3 = src_ptr[av_clip(y + y_pos, 0, h) * src_linesize + av_clip(x + -x_pos, 0, w)]; in deband_8_c() 197 const int x_pos = s->x_pos[pos + x]; in deband_8_coupling_c() local 207 … const int ref0 = src_ptr[av_clip(y + y_pos, 0, h) * src_linesize + av_clip(x + x_pos, 0, w)]; in deband_8_coupling_c() 208 … const int ref1 = src_ptr[av_clip(y + -y_pos, 0, h) * src_linesize + av_clip(x + x_pos, 0, w)]; in deband_8_coupling_c() 209 … const int ref2 = src_ptr[av_clip(y + -y_pos, 0, h) * src_linesize + av_clip(x + -x_pos, 0, w)]; in deband_8_coupling_c() [all …]
|
D | vf_histogram.c | 41 int x_pos; member 362 s->x_pos = out->width - 1; in filter_frame() 369 s->x_pos = 0; in filter_frame() 392 s->out->data[p][(i + starty) * s->out->linesize[p] + startx + s->x_pos] = value; in filter_frame() 394 … AV_WN16(s->out->data[p] + (i + starty) * s->out->linesize[p] + startx * 2 + s->x_pos * 2, value); in filter_frame() 400 … s->out->data[0][(minh + starty) * s->out->linesize[p] + startx + s->x_pos] = s->envelope_color[0]; in filter_frame() 401 … s->out->data[0][(maxh + starty) * s->out->linesize[p] + startx + s->x_pos] = s->envelope_color[0]; in filter_frame() 403 … s->out->data[1][(minh + starty) * s->out->linesize[p] + startx + s->x_pos] = s->envelope_color[1]; in filter_frame() 404 … s->out->data[2][(minh + starty) * s->out->linesize[p] + startx + s->x_pos] = s->envelope_color[2]; in filter_frame() 405 … s->out->data[1][(maxh + starty) * s->out->linesize[p] + startx + s->x_pos] = s->envelope_color[1]; in filter_frame() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | dvbsubdec.c | 58 int x_pos; member 82 int x_pos; member 372 int non_mod, uint8_t *map_table, int x_pos) in dvbsub_read_2bit_string() argument 378 int pixels_read = x_pos; in dvbsub_read_2bit_string() 382 destbuf += x_pos; in dvbsub_read_2bit_string() 479 int non_mod, uint8_t *map_table, int x_pos) in dvbsub_read_4bit_string() argument 485 int pixels_read = x_pos; in dvbsub_read_4bit_string() 489 destbuf += x_pos; in dvbsub_read_4bit_string() 603 int non_mod, uint8_t *map_table, int x_pos) in dvbsub_read_8bit_string() argument 608 int pixels_read = x_pos; in dvbsub_read_8bit_string() [all …]
|
D | flashsv.c | 184 int width, int height, int x_pos, int y_pos, in flashsv_decode_block() argument 228 memcpy(s->frame->data[0] + x_pos * 3 + in flashsv_decode_block() 239 x_pos, s->diff_height, width, in flashsv_decode_block() 382 int x_pos = i * s->block_width; // horizontal position in frame in flashsv_decode_frame() local 467 int x = off - k * s->frame->linesize[0] + x_pos * 3; in flashsv_decode_frame() 477 x_pos, y_pos, in flashsv_decode_frame()
|
D | iff.c | 587 int i, y_pos = 0, x_pos = 0; in decode_byterun2() local 600 for (i = 0; i < count && x_pos < line_size; i++) { in decode_byterun2() 606 while (l-- > 0 && x_pos < line_size) { in decode_byterun2() 607 dst[x_pos + y_pos * line_size ] = bytestream2_get_byte(gb); in decode_byterun2() 608 dst[x_pos + y_pos++ * line_size + 1] = bytestream2_get_byte(gb); in decode_byterun2() 611 x_pos += 2; in decode_byterun2() 616 while (l-- > 0 && x_pos < line_size) { in decode_byterun2() 617 dst[x_pos + y_pos * line_size ] = bytestream2_get_byte(gb); in decode_byterun2() 618 dst[x_pos + y_pos++ * line_size + 1] = bytestream2_get_byte(gb); in decode_byterun2() 621 x_pos += 2; in decode_byterun2() [all …]
|
D | flashsvenc.c | 160 int x_pos = i * block_width; // horizontal position in frame in encode_bitstream() local 169 x_pos, cur_blk_height, cur_blk_width, in encode_bitstream()
|
/third_party/flutter/skia/third_party/externals/freetype/src/sfnt/ |
D | ttsbit.c | 692 FT_Int x_pos, 701 FT_Int x_pos, 710 FT_Int x_pos, in tt_sbit_decoder_load_byte_aligned() argument 735 if ( x_pos < 0 || (FT_UInt)( x_pos + width ) > bit_width || in tt_sbit_decoder_load_byte_aligned() 752 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_byte_aligned() 753 x_pos &= 7; in tt_sbit_decoder_load_byte_aligned() 755 if ( x_pos == 0 ) /* the easy one */ in tt_sbit_decoder_load_byte_aligned() 785 pwrite[0] = (FT_Byte)( pwrite[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned() 795 pwrite[0] = (FT_Byte)( pwrite[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned() 797 if ( x_pos + w > 8 ) in tt_sbit_decoder_load_byte_aligned() [all …]
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | ttsbit.c | 695 FT_Int x_pos, 704 FT_Int x_pos, 713 FT_Int x_pos, in tt_sbit_decoder_load_byte_aligned() argument 738 if ( x_pos < 0 || (FT_UInt)( x_pos + width ) > bit_width || in tt_sbit_decoder_load_byte_aligned() 755 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_byte_aligned() 756 x_pos &= 7; in tt_sbit_decoder_load_byte_aligned() 758 if ( x_pos == 0 ) /* the easy one */ in tt_sbit_decoder_load_byte_aligned() 788 pwrite[0] = (FT_Byte)( pwrite[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned() 798 pwrite[0] = (FT_Byte)( pwrite[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned() 800 if ( x_pos + w > 8 ) in tt_sbit_decoder_load_byte_aligned() [all …]
|
/third_party/freetype/src/sfnt/ |
D | ttsbit.c | 691 FT_Int x_pos, 700 FT_Int x_pos, 709 FT_Int x_pos, in tt_sbit_decoder_load_byte_aligned() argument 734 if ( x_pos < 0 || (FT_UInt)( x_pos + width ) > bit_width || in tt_sbit_decoder_load_byte_aligned() 751 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_byte_aligned() 752 x_pos &= 7; in tt_sbit_decoder_load_byte_aligned() 754 if ( x_pos == 0 ) /* the easy one */ in tt_sbit_decoder_load_byte_aligned() 784 pwrite[0] = (FT_Byte)( pwrite[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned() 794 pwrite[0] = (FT_Byte)( pwrite[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned() 796 if ( x_pos + w > 8 ) in tt_sbit_decoder_load_byte_aligned() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/dvbsuboverlay/ |
D | dvb-sub.c | 79 int x_pos; member 106 int x_pos; member 417 display->x_pos = GST_READ_UINT16_BE (buf); in _dvb_sub_parse_page_segment() 429 display->x_pos, display->y_pos); in _dvb_sub_parse_page_segment() 537 object_display->x_pos = GST_READ_UINT16_BE (buf) & 0xfff; in _dvb_sub_parse_region_segment() 554 "obj_type = %u", object->id, region->id, object_display->x_pos, in _dvb_sub_parse_region_segment() 917 int x_pos, y_pos; in _dvb_sub_parse_pixel_data_block() local 940 x_pos = display->x_pos; in _dvb_sub_parse_pixel_data_block() 950 region->id, region->width, region->height, x_pos, y_pos); in _dvb_sub_parse_pixel_data_block() 981 x_pos += in _dvb_sub_parse_pixel_data_block() [all …]
|
/third_party/ffmpeg/libavfilter/dnn/ |
D | dnn_backend_native_layer_avgpool.c | 130 int x_pos = x + (kernel_x - width_radius); in ff_dnn_execute_layer_avg_pool() local 131 if (x_pos < 0 || x_pos >= width || y_pos < 0 || y_pos >= height) { in ff_dnn_execute_layer_avg_pool() 135 input_pel = input[y_pos * src_linesize + x_pos * channel + n_channel]; in ff_dnn_execute_layer_avg_pool()
|
D | dnn_backend_native_layer_conv2d.c | 149 … int x_pos = CLAMP_TO_EDGE(x + (kernel_x - radius) * conv_params->dilation, width); in dnn_execute_layer_conv2d_thread() local 150 … input_pel = input[y_pos * src_linesize + x_pos * conv_params->input_num + ch]; in dnn_execute_layer_conv2d_thread() 153 int x_pos = x + (kernel_x - radius) * conv_params->dilation; in dnn_execute_layer_conv2d_thread() local 154 … input_pel = (x_pos < 0 || x_pos >= width || y_pos < 0 || y_pos >= height) ? 0.0 : in dnn_execute_layer_conv2d_thread() 155 … input[y_pos * src_linesize + x_pos * conv_params->input_num + ch]; in dnn_execute_layer_conv2d_thread()
|
/third_party/flutter/engine/flutter/third_party/txt/src/txt/ |
D | paragraph_txt.cc | 199 x_pos(x_start, x_start + x_advance), in GlyphPosition() 203 x_pos.Shift(delta); in Shift() 218 x_pos(x), in CodeUnitRun() 225 x_pos.Shift(delta); in Shift() 956 glyph_positions.back().x_pos.end, grapheme_advance, in Layout() 986 glyph_positions.back().x_pos.end - word_start_position; in Layout() 999 glyph_positions.front().x_pos.start - run_x_offset, in Layout() 1000 glyph_positions.back().x_pos.end - run_x_offset); in Layout() 1030 Range<double>(glyph_positions.front().x_pos.start, in Layout() 1032 ? glyph_positions.back().x_pos.start + in Layout() [all …]
|
D | paragraph_txt.h | 269 Range<double> x_pos; member 297 Range<double> x_pos; member
|
/third_party/gstreamer/gstplugins_good/gst/audiofx/ |
D | audiofxbaseiirfilter.c | 304 for (i = 1, j = ctx->x_pos; i < filter->nb; i++) { in process() 320 ctx->x_pos++; in process() 321 if (ctx->x_pos >= filter->nb) in process() 322 ctx->x_pos = 0; in process() 323 ctx->x[ctx->x_pos] = x0; in process()
|
D | audiofxbaseiirfilter.h | 45 gint x_pos; member
|
/third_party/boost/boost/gil/ |
D | algorithm.hpp | 195 diff_t l=src.width()-src.x_pos(); in operator ()() 213 diff_t l=dst.width()-dst.x_pos(); in operator ()() 230 if (src.x_pos()!=dst.x_pos() || src.width()!=dst.width()) { in operator ()() 236 diff_t l=dst.width()-dst.x_pos(); in operator ()() 367 …:ptrdiff_t numToDo=std::min<const std::ptrdiff_t>(n,(std::ptrdiff_t)(first.width()-first.x_pos())); in fill() 951 std::ptrdiff_t const num = std::min<std::ptrdiff_t>(n, i1.width() - i1.x_pos()); in operator ()() 975 std::ptrdiff_t const num = std::min<std::ptrdiff_t>(n, i2.width() - i2.x_pos()); in operator ()() 992 if (i1.x_pos()!=i2.x_pos() || i1.width()!=i2.width()) { in operator ()() 998 std::ptrdiff_t num=std::min<const std::ptrdiff_t>(n,i2.width()-i2.x_pos()); in operator ()()
|
D | iterator_from_2d.hpp | 60 std::ptrdiff_t x_pos() const { return _coords.x; } // current x position in x_pos() function in boost::gil::iterator_from_2d 116 return (it.y_pos()-_coords.y)*_width + (it.x_pos()-_coords.x); in distance_to()
|
/third_party/freetype/src/pfr/ |
D | pfrgload.c | 568 FT_Int x_pos, y_pos; in pfr_glyph_load_compound() local 627 x_pos = 0; in pfr_glyph_load_compound() 653 x_pos = PFR_NEXT_SHORT( p ); in pfr_glyph_load_compound() 658 x_pos += PFR_NEXT_INT8( p ); in pfr_glyph_load_compound() 681 subglyph->x_delta = x_pos; in pfr_glyph_load_compound()
|
/third_party/skia/third_party/externals/freetype/src/pfr/ |
D | pfrgload.c | 568 FT_Int x_pos, y_pos; in pfr_glyph_load_compound() local 627 x_pos = 0; in pfr_glyph_load_compound() 653 x_pos = PFR_NEXT_SHORT( p ); in pfr_glyph_load_compound() 658 x_pos += PFR_NEXT_INT8( p ); in pfr_glyph_load_compound() 681 subglyph->x_delta = x_pos; in pfr_glyph_load_compound()
|
/third_party/flutter/skia/third_party/externals/freetype/src/pfr/ |
D | pfrgload.c | 568 FT_Int x_pos, y_pos; in pfr_glyph_load_compound() local 627 x_pos = 0; in pfr_glyph_load_compound() 653 x_pos = PFR_NEXT_SHORT( p ); in pfr_glyph_load_compound() 658 x_pos += PFR_NEXT_INT8( p ); in pfr_glyph_load_compound() 681 subglyph->x_delta = x_pos; in pfr_glyph_load_compound()
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | interactivity | 61 "x_pos", 30, 69 "x_pos", 30,
|
/third_party/flutter/engine/flutter/third_party/txt/tests/ |
D | paragraph_unittests.cc | 1839 .x_pos.end; in TEST_F() 5258 EXPECT_FLOAT_EQ(tnum_line.positions[0].x_pos.width(), in TEST_F() 5259 tnum_line.positions[1].x_pos.width()); in TEST_F() 5264 EXPECT_NE(pnum_line.positions[0].x_pos.width(), in TEST_F() 5265 pnum_line.positions[1].x_pos.width()); in TEST_F() 5268 EXPECT_FLOAT_EQ(tnum_line.positions[2].x_pos.width(), in TEST_F() 5269 pnum_line.positions[2].x_pos.width()); in TEST_F()
|
/third_party/flutter/skia/third_party/externals/freetype/ |
D | ChangeLog.22 | 741 loading. (Only tested with bit aligned sbit with x_pos == 0.)
|
/third_party/freetype/ |
D | ChangeLog.22 | 741 loading. (Only tested with bit aligned sbit with x_pos == 0.)
|