/third_party/ffmpeg/libavcodec/ |
D | pcm-bluray.c | 135 int16_t *dst16; in pcm_bluray_decode_frame() local 160 dst16 = (int16_t *)frame->data[0]; in pcm_bluray_decode_frame() 172 bytestream2_get_buffer(&gb, dst16, buf_size); in pcm_bluray_decode_frame() 175 *dst16++ = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 192 bytestream2_get_buffer(&gb, dst16, avctx->channels * 2); in pcm_bluray_decode_frame() 193 dst16 += avctx->channels; in pcm_bluray_decode_frame() 197 *dst16++ = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 216 dst16[0] = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 217 dst16[1] = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() 218 dst16[2] = bytestream2_get_be16u(&gb); in pcm_bluray_decode_frame() [all …]
|
D | fitsdec.c | 196 uint16_t *dst16; in fits_decode_frame() local 264 CASE_RGB(16, dst16, uint16_t, AV_RB16); in fits_decode_frame() 291 CASE_GRAY(-64, dst16, uint16_t, tdbl, av_int2double(AV_RB64(ptr8))); in fits_decode_frame() 292 CASE_GRAY(-32, dst16, uint16_t, tflt, av_int2float(AV_RB32(ptr8))); in fits_decode_frame() 294 CASE_GRAY(16, dst16, uint16_t, t16, AV_RB16(ptr8)); in fits_decode_frame() 295 CASE_GRAY(32, dst16, uint16_t, t32, AV_RB32(ptr8)); in fits_decode_frame() 296 CASE_GRAY(64, dst16, uint16_t, t64, AV_RB64(ptr8)); in fits_decode_frame()
|
D | pcm-dvd.c | 145 int16_t *dst16 = dst; in pcm_dvd_decode_samples() local 155 bytestream2_get_buffer(&gb, dst16, blocks * s->block_size); in pcm_dvd_decode_samples() 156 dst16 += blocks * s->block_size / 2; in pcm_dvd_decode_samples() 160 *dst16++ = bytestream2_get_be16u(&gb); in pcm_dvd_decode_samples() 163 return dst16; in pcm_dvd_decode_samples()
|
D | vmnc.c | 101 uint16_t *dst16 = (uint16_t *)c->curbits; in load_cursor() local 110 *dst16++ = p; in load_cursor() 116 dst16 = (uint16_t*)c->curmask; in load_cursor() 124 *dst16++ = p; in load_cursor()
|
D | huffyuvenc.c | 69 uint16_t *dst16 = ( uint16_t *)dst; in sub_left_prediction() local 72 dst16[i] = temp - left; in sub_left_prediction() 77 s->hencdsp.diff_int16(dst16 + 32, src16 + 32, src16 + 31, s->n - 1, w - 32); in sub_left_prediction()
|
D | wavpack.c | 913 int16_t *dst16 = dst; in wv_unpack_mono() local 952 *dst16++ = wv_get_value_integer(s, &crc_extra_bits, S); in wv_unpack_mono()
|
D | tiff.c | 409 uint16_t *dst16 = (uint16_t *)dst; in horizontal_fill() local 416 dst16[i] = get_bits(&gb, bpp) << shift; in horizontal_fill()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_dblur.c | 214 uint16_t *dst16 = (uint16_t *)out->data[plane]; in filter_frame() local 257 dst16[x] = bptr[x]; in filter_frame() 260 dst16 += out->linesize[plane] / 2; in filter_frame()
|
D | vf_gblur.c | 307 uint16_t *dst16 = (uint16_t *)out->data[plane]; in filter_frame() local 358 dst16[x] = bptr[x]; in filter_frame() 361 dst16 += out->linesize[plane] / 2; in filter_frame()
|
D | vf_geq.c | 54 uint16_t *dst16; ///< reference pointer to the 16bits output member 402 uint16_t *ptr16 = geq->dst16 + (linesize/2) * slice_start; in slice_geq_filter() 443 geq->dst16 = (uint16_t*)out->data[plane]; in geq_filter_frame()
|
D | vf_owdenoise.c | 234 uint16_t *dst16 = (uint16_t *)dst; in filter() local 240 dst16[y*dst_linesize + x] = i; in filter()
|
/third_party/flutter/skia/src/core/ |
D | SkBitmapProcState_matrixProcs.cpp | 442 int16_t *dst16 = (int16_t *)xy; in nofilter_scale_neon() local 461 vst1q_s16(dst16, fx8); in nofilter_scale_neon() 466 dst16 += 8; in nofilter_scale_neon() 470 xy = (uint32_t *) dst16; in nofilter_scale_neon()
|
/third_party/flutter/skia/src/codec/ |
D | SkSwizzler.cpp | 41 uint16_t* dst16 = (uint16_t*) dst; in sample2() local 43 dst16[x] = *((const uint16_t*) src); in sample2() 560 uint16_t* dst16 = (uint16_t*) dst; in swizzle_rgb16_to_565() local 562 dst16[x] = strip16to565(src); in swizzle_rgb16_to_565()
|
/third_party/skia/src/codec/ |
D | SkSwizzler.cpp | 41 uint16_t* dst16 = (uint16_t*) dst; in sample2() local 43 dst16[x] = *((const uint16_t*) src); in sample2() 560 uint16_t* dst16 = (uint16_t*) dst; in swizzle_rgb16_to_565() local 562 dst16[x] = strip16to565(src); in swizzle_rgb16_to_565()
|
/third_party/ffmpeg/libswscale/ |
D | swscale.c | 974 uint16_t *dst16 = (uint16_t*)(dst2[0] + (dstY - ret) * dstStride2[0]); in sws_scale() local 980 rgb48Toxyz12(c, dst16, dst16, dstStride2[0]/2, ret); in sws_scale()
|
/third_party/ffmpeg/libavutil/ |
D | pixdesc.c | 48 uint16_t *dst16 = dst; in av_read_image_line2() local 64 else *dst16++ = val; in av_read_image_line2() 85 else *dst16++ = val; in av_read_image_line2()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp9intrapred.asm | 1059 cglobal vp9_ipred_dl_32x32, 4, 5, 8, dst, stride, cnt, a, dst16 1358 DEFINE_ARGS dst, stride, dst16, cnt 1599 DEFINE_ARGS dst, stride, dst16, cnt 1767 DEFINE_ARGS dst, stride, stride8, dst8, dst16, dst24 1979 DEFINE_ARGS dst, stride, cnt, stride0, dst8, dst16, dst24
|
/third_party/mesa3d/src/mesa/main/ |
D | texstore.c | 265 GLushort *dst16 = (GLushort *) dstRow; in _mesa_texstore_z16() local 267 GL_UNSIGNED_SHORT, dst16, depthScale, in _mesa_texstore_z16()
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | h264dsp.c | 211 vec_u16 dst16 = (vec_u16)VEC_MERGEH(zero_u8v, dstv); \ 212 vec_s16 idstsum = vec_adds(idct_sh6, (vec_s16)dst16); \
|