/third_party/ffmpeg/libavcodec/ |
D | flicvideo.c | 180 int y_ptr; in flic_decode_frame_8BPP() local 271 y_ptr = 0; in flic_decode_frame_8BPP() 276 if (y_ptr > pixel_limit) in flic_decode_frame_8BPP() 284 y_ptr += line_packets * s->frame->linesize[0]; in flic_decode_frame_8BPP() 289 pixel_ptr= y_ptr + s->frame->linesize[0] - 1; in flic_decode_frame_8BPP() 294 pixel_ptr = y_ptr; in flic_decode_frame_8BPP() 324 y_ptr += s->frame->linesize[0]; in flic_decode_frame_8BPP() 334 y_ptr = 0; in flic_decode_frame_8BPP() 335 y_ptr += starting_line * s->frame->linesize[0]; in flic_decode_frame_8BPP() 339 pixel_ptr = y_ptr; in flic_decode_frame_8BPP() [all …]
|
D | cyuv.c | 72 int y_ptr; in cyuv_decode_frame() local 126 for (y_ptr = 0, u_ptr = 0, v_ptr = 0; in cyuv_decode_frame() 127 y_ptr < (s->height * frame->linesize[0]); in cyuv_decode_frame() 128 y_ptr += frame->linesize[0] - s->width, in cyuv_decode_frame() 135 y_plane[y_ptr++] = y_pred = (cur_byte & 0x0F) << 4; in cyuv_decode_frame() 140 y_plane[y_ptr++] = y_pred; in cyuv_decode_frame() 144 y_plane[y_ptr++] = y_pred; in cyuv_decode_frame() 146 y_plane[y_ptr++] = y_pred; in cyuv_decode_frame() 156 y_plane[y_ptr++] = y_pred; in cyuv_decode_frame() 162 y_plane[y_ptr++] = y_pred; in cyuv_decode_frame() [all …]
|
D | dvdec.c | 388 uint8_t *y_ptr; in dv_decode_video_segment() local 547 y_ptr = s->frame->data[0] + in dv_decode_video_segment() 550 dv100_idct_put_last_row_field_luma(s, y_ptr, s->frame->linesize[0], block); in dv_decode_video_segment() 553 mb[0].idct_put(y_ptr, linesize, block + 0 * 64); in dv_decode_video_segment() 555 mb[2].idct_put(y_ptr + (1 << log2_blocksize), linesize, block + 2 * 64); in dv_decode_video_segment() 557 mb[1].idct_put(y_ptr + (1 << log2_blocksize), linesize, block + 1 * 64); in dv_decode_video_segment() 558 mb[2].idct_put(y_ptr + y_stride, linesize, block + 2 * 64); in dv_decode_video_segment() 559 mb[3].idct_put(y_ptr + (1 << log2_blocksize) + y_stride, linesize, block + 3 * 64); in dv_decode_video_segment()
|
D | dvenc.c | 854 uint8_t *y_ptr; in dv_encode_video_segment() local 872 y_ptr = s->frame->data[0] + (mb_y * s->frame->linesize[0] + mb_x) * 8; in dv_encode_video_segment() 876 enc_blk->dct_mode = dv_guess_dct_mode(s, y_ptr, linesize); in dv_encode_video_segment() 890 y_ptr = s->frame->data[0] + in dv_encode_video_segment() 896 dv_init_enc_block(enc_blk + 0, y_ptr, linesize, s, 0) + in dv_encode_video_segment() 898 dv_init_enc_block(enc_blk + 2, y_ptr + 8, linesize, s, 0) + in dv_encode_video_segment() 902 dv_init_enc_block(enc_blk + 0, y_ptr, linesize, s, 0) + in dv_encode_video_segment() 903 dv_init_enc_block(enc_blk + 1, y_ptr + 8, linesize, s, 0) + in dv_encode_video_segment() 904 dv_init_enc_block(enc_blk + 2, y_ptr + y_stride, linesize, s, 0) + in dv_encode_video_segment() 905 dv_init_enc_block(enc_blk + 3, y_ptr + 8 + y_stride, linesize, s, 0); in dv_encode_video_segment()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | picture_tools_enc.c | 55 static int SmoothenBlock(const uint8_t* a_ptr, int a_stride, uint8_t* y_ptr, in SmoothenBlock() argument 60 uint8_t* luma_ptr = y_ptr; in SmoothenBlock() 74 luma_ptr = y_ptr; in SmoothenBlock() 129 uint8_t* y_ptr = pic->y; in WebPCleanupTransparentArea() local 134 if (a_ptr == NULL || y_ptr == NULL || u_ptr == NULL || v_ptr == NULL) { in WebPCleanupTransparentArea() 140 if (SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride, in WebPCleanupTransparentArea() 143 values[0] = y_ptr[x]; in WebPCleanupTransparentArea() 148 Flatten(y_ptr + x, values[0], y_stride, SIZE); in WebPCleanupTransparentArea() 156 SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride, in WebPCleanupTransparentArea() 160 y_ptr += SIZE * y_stride; in WebPCleanupTransparentArea() [all …]
|
/third_party/mesa3d/src/glx/ |
D | glxcmds.c | 2359 INT32 *x_ptr, *y_ptr, *w_ptr, *h_ptr; in glXCopySubBufferMESA() local 2401 y_ptr = (INT32 *) (drawable_ptr + 2); in glXCopySubBufferMESA() 2407 *y_ptr = y; in glXCopySubBufferMESA()
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 15699 let y_ptr = Weak::into_raw(y); localVariable 15701 assert_eq!(**y_ptr, "hello"); 15703 let y = Weak::from_raw(y_ptr); 26581 let y_ptr = Weak::into_raw(y); localVariable 26583 assert_eq!(**y_ptr, "hello"); 26585 let y = Weak::from_raw(y_ptr);
|