/third_party/ffmpeg/libavcodec/ |
H A D | pcm-bluray.c | 134 int32_t *dst32; in pcm_bluray_decode_frame() local 159 dst32 = (int32_t *)frame->data[0]; in pcm_bluray_decode_frame() 178 *dst32++ = bytestream2_get_be24u(&gb) << 8; in pcm_bluray_decode_frame() 204 *dst32++ = bytestream2_get_be24u(&gb) << 8; in pcm_bluray_decode_frame() 224 dst32[0] = bytestream2_get_be24u(&gb) << 8; in pcm_bluray_decode_frame() 225 dst32[1] = bytestream2_get_be24u(&gb) << 8; in pcm_bluray_decode_frame() 226 dst32[2] = bytestream2_get_be24u(&gb) << 8; in pcm_bluray_decode_frame() 227 dst32[4] = bytestream2_get_be24u(&gb) << 8; in pcm_bluray_decode_frame() 228 dst32[5] = bytestream2_get_be24u(&gb) << 8; in pcm_bluray_decode_frame() 229 dst32[ in pcm_bluray_decode_frame() [all...] |
H A D | pcm-dvd.c | 151 int32_t *dst32 = dst; in pcm_dvd_decode_samples() local 174 dst32[0] = bytestream2_get_be16u(&gb) << 16; in pcm_dvd_decode_samples() 175 dst32[1] = bytestream2_get_be16u(&gb) << 16; in pcm_dvd_decode_samples() 177 *dst32++ += (t & 0xf0) << 8; in pcm_dvd_decode_samples() 178 *dst32++ += (t & 0x0f) << 12; in pcm_dvd_decode_samples() 184 dst32[0] = bytestream2_get_be16u(&gb) << 16; in pcm_dvd_decode_samples() 185 dst32[1] = bytestream2_get_be16u(&gb) << 16; in pcm_dvd_decode_samples() 186 dst32[2] = bytestream2_get_be16u(&gb) << 16; in pcm_dvd_decode_samples() 187 dst32[3] = bytestream2_get_be16u(&gb) << 16; in pcm_dvd_decode_samples() 189 *dst32 in pcm_dvd_decode_samples() [all...] |
H A D | vmnc.c | 103 uint32_t *dst32 = (uint32_t *)c->curbits; in load_cursor() local 113 *dst32++ = p; in load_cursor() 118 dst32 = (uint32_t*)c->curmask; in load_cursor() 127 *dst32++ = p; in load_cursor()
|
H A D | wavpack.c | 919 int32_t *dst32 = dst; in wv_unpack_mono() local 955 *dst32++ = wv_get_value_integer(s, &crc_extra_bits, S); in wv_unpack_mono()
|
/third_party/skia/src/codec/ |
H A D | SkSwizzler.cpp | 51 uint32_t* dst32 = (uint32_t*) dst; in sample4() local 53 dst32[x] = *((const uint32_t*) src); in sample4() 318 SkPMColor* dst32 = (SkPMColor*) dst; in swizzle_grayalpha_to_n32_unpremul() local 320 dst32[x] = SkPackARGB32NoCheck(src[1], src[0], src[0], src[0]); in swizzle_grayalpha_to_n32_unpremul() 343 SkPMColor* dst32 = (SkPMColor*) dst; in swizzle_grayalpha_to_n32_premul() local 346 dst32[x] = SkPackARGB32NoCheck(src[1], pmgray, pmgray, pmgray); in swizzle_grayalpha_to_n32_premul() 530 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgb16_to_rgba() local 532 dst32[x] = strip16to8(src); in swizzle_rgb16_to_rgba() 545 uint32_t* dst32 = (uint32_t*) dst; in swizzle_rgb16_to_bgra() local 547 dst32[ in swizzle_rgb16_to_bgra() 575 uint32_t* dst32 = (uint32_t*) dst; swizzle_rgba16_to_rgba_unpremul() local 590 uint32_t* dst32 = (uint32_t*) dst; swizzle_rgba16_to_rgba_premul() local 605 uint32_t* dst32 = (uint32_t*) dst; swizzle_rgba16_to_bgra_unpremul() local 620 uint32_t* dst32 = (uint32_t*) dst; swizzle_rgba16_to_bgra_premul() local 749 uint32_t* dst32 = (uint32_t*) dst; SkipLeadingGrayAlphaZerosThen() local 768 auto dst32 = (uint32_t*)dstRow; SkipLeading8888ZerosThen() local [all...] |
H A D | SkBmpStandardCodec.cpp | 321 uint32_t* dst32 = (uint32_t*) dstRow; in decodeIcoMask() 322 dst32[x] &= bit - 1; in decodeIcoMask()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_hqx.c | 402 uint32_t *dst32 = (uint32_t *)dst; in hqx_filter() local 425 dst32[dst32_linesize*0 + 0] = hq2x_interp_1x1(r2y, pattern, w, 0,1,2,3,4,5,6,7,8); // 00 in hqx_filter() 426 dst32[dst32_linesize*0 + 1] = hq2x_interp_1x1(r2y, pattern, w, 2,1,0,5,4,3,8,7,6); // 01 (vert mirrored) in hqx_filter() 427 dst32[dst32_linesize*1 + 0] = hq2x_interp_1x1(r2y, pattern, w, 6,7,8,3,4,5,0,1,2); // 10 (horiz mirrored) in hqx_filter() 428 dst32[dst32_linesize*1 + 1] = hq2x_interp_1x1(r2y, pattern, w, 8,7,6,5,4,3,2,1,0); // 11 (center mirrored) in hqx_filter() 430 hq3x_interp_2x1(dst32, dst32_linesize, r2y, pattern, w, 0,1, 0,1,2,3,4,5,6,7,8, 0); // 00 01 in hqx_filter() 431 hq3x_interp_2x1(dst32 + 1, dst32_linesize, r2y, pattern, w, 1,3, 2,5,8,1,4,7,0,3,6, 1); // 02 12 (rotated to the right) in hqx_filter() 432 hq3x_interp_2x1(dst32 + 1*dst32_linesize, dst32_linesize, r2y, pattern, w, 2,0, 6,3,0,7,4,1,8,5,2, 1); // 20 10 (rotated to the left) in hqx_filter() 433 hq3x_interp_2x1(dst32 + 1*dst32_linesize + 1, dst32_linesize, r2y, pattern, w, 3,2, 8,7,6,5,4,3,2,1,0, 0); // 22 21 (center mirrored) in hqx_filter() 434 dst32[dst32_linesiz in hqx_filter() [all...] |
H A D | vf_dblur.c | 221 float *dst32 = (float *)out->data[plane]; in filter_frame() local 280 memcpy(dst32, bptr, width * sizeof(float)); in filter_frame() 283 dst32 += out->linesize[plane] / 4; in filter_frame()
|
H A D | vf_geq.c | 55 float *dst32; ///< reference pointer to the 32bits output member 432 float *ptr32 = geq->dst32 + (linesize/4) * slice_start; in slice_geq_filter() 474 geq->dst32 = (float*)out->data[plane]; in geq_filter_frame()
|
/third_party/mesa3d/src/mesa/vbo/ |
H A D | vbo_exec_api.c | 463 #define SET_64BIT(dst32, u64) do { \ 464 *(dst32)++ = (u64); \ 465 *(dst32)++ = (uint64_t)(u64) >> 32; \ 468 #define SET_64BIT(dst32, u64) do { \ 469 *(dst32)++ = (uint64_t)(u64) >> 32; \ 470 *(dst32)++ = (u64); \
|
/third_party/ffmpeg/libavcodec/mips/ |
H A D | hevcdsp_msa.c | 1002 v8i16 dst10, dst32, dst54, dst76; in hevc_vt_8t_4w_msa() local 1040 dst32 = const_vec; in hevc_vt_8t_4w_msa() 1042 filt0, filt1, filt2, filt3, dst32, dst32, dst32, dst32); in hevc_vt_8t_4w_msa() 1050 ST_D8(dst10, dst32, dst54, dst76, 0, 1, 0, 1, 0, 1, 0, 1, dst, dst_stride); in hevc_vt_8t_4w_msa() 2492 v8i16 dst10, dst32; in hevc_vt_4t_4x4_msa() local 2513 dst32 = const_vec; in hevc_vt_4t_4x4_msa() 2514 DPADD_SB2_SH(src4332, src6554, filt0, filt1, dst32, dst3 in hevc_vt_4t_4x4_msa() 2530 v8i16 dst10, dst32, dst54, dst76; hevc_vt_4t_4x8_msa() local 2576 v8i16 dst10, dst32, dst54, dst76, filt0, filt1, filter_vec, const_vec; hevc_vt_4t_4x16_msa() local 3249 v8i16 dst20, dst31, dst42, dst10, dst32, dst21, dst43; hevc_hv_4t_4x2_msa() local 3303 v8i16 dst30, dst41, dst52, dst63, dst10, dst32, dst54, dst21, dst43, dst65; hevc_hv_4t_4x4_msa() local [all...] |
H A D | hevc_mc_bi_msa.c | 1194 v8i16 dst10, dst32, dst54, dst76; in hevc_vt_bi_8t_4w_msa() local 1236 dst32 = const_vec; in hevc_vt_bi_8t_4w_msa() 1238 filt0, filt1, filt2, filt3, dst32, dst32, dst32, dst32); in hevc_vt_bi_8t_4w_msa() 1247 dst10, dst32, dst54, dst76, 7, in hevc_vt_bi_8t_4w_msa() 1248 dst10, dst32, dst54, dst76); in hevc_vt_bi_8t_4w_msa() 1250 PCKEV_B2_SH(dst32, dst10, dst76, dst54, dst10, dst54); in hevc_vt_bi_8t_4w_msa() 1642 v8i16 dst10, dst32, dst5 in hevc_hv_bi_8t_4w_msa() local 1915 v8i16 dst10, dst32, dst54, dst76, dst98, dst21, dst43, dst65, dst87, dst109; hevc_hv_bi_8t_12w_msa() local 2965 v8i16 dst10, dst32; hevc_vt_bi_4t_4x4_msa() local 3017 v8i16 dst10, dst32, dst54, dst76; hevc_vt_bi_4t_4x8multiple_msa() local 3803 v8i16 dst20, dst31, dst42, dst10, dst32, dst21, dst43, tmp; hevc_hv_bi_4t_4x2_msa() local 3872 v8i16 dst10, dst32, dst54, dst21, dst43, dst65; hevc_hv_bi_4t_4x4_msa() local [all...] |
H A D | hevc_mc_biw_msa.c | 1425 v8i16 dst10, dst32, dst54, dst76; in hevc_vt_biwgt_8t_4w_msa() local 1475 filt0, dst10, dst32, dst54, dst76); in hevc_vt_biwgt_8t_4w_msa() 1477 filt1, dst10, dst32, dst54, dst76); in hevc_vt_biwgt_8t_4w_msa() 1479 filt2, filt2, dst10, dst32, dst54, dst76); in hevc_vt_biwgt_8t_4w_msa() 1481 filt3, filt3, dst10, dst32, dst54, dst76); in hevc_vt_biwgt_8t_4w_msa() 1483 HEVC_BIW_RND_CLIP4(dst10, dst32, dst54, dst76, in hevc_vt_biwgt_8t_4w_msa() 1951 v8i16 dst10, dst32, dst54, dst76; in hevc_hv_biwgt_8t_4w_msa() local 2004 ILVRL_H2_SH(dst63, dst52, dst32, dst65); in hevc_hv_biwgt_8t_4w_msa() 2034 dst0 = HEVC_FILT_8TAP(dst10, dst32, dst54, dst76, filt_h0, filt_h1, in hevc_hv_biwgt_8t_4w_msa() 2038 dst2 = HEVC_FILT_8TAP(dst32, dst5 in hevc_hv_biwgt_8t_4w_msa() 2303 v8i16 dst30, dst41, dst52, dst63, dst66, dst87, dst10, dst32, dst54, dst76; hevc_hv_biwgt_8t_12w_msa() local 3581 v8i16 dst10, dst32; hevc_vt_biwgt_4t_4x4_msa() local 3651 v8i16 dst10, dst32, dst54, dst76; hevc_vt_biwgt_4t_4x8multiple_msa() local 4524 v8i16 dst20, dst31, dst42, dst10, dst32, dst21, dst43, tmp0, tmp1; hevc_hv_biwgt_4t_4x2_msa() local 4610 v8i16 dst10, dst32, dst54, dst21, dst43, dst65; hevc_hv_biwgt_4t_4x4_msa() local [all...] |
H A D | hevc_mc_uni_msa.c | 3102 v8i16 dst20, dst31, dst42, dst10, dst32, dst21, dst43; in hevc_hv_uni_4t_4x2_msa() local 3128 ILVRL_H2_SH(dst31, dst20, dst10, dst32); in hevc_hv_uni_4t_4x2_msa() 3131 dst0 = HEVC_FILT_4TAP(dst10, dst32, filt_h0, filt_h1); in hevc_hv_uni_4t_4x2_msa() 3158 v8i16 dst10, dst32, dst54, dst21, dst43, dst65; in hevc_hv_uni_4t_4x4_msa() local 3188 ILVRL_H2_SH(dst63, dst52, dst32, dst65); in hevc_hv_uni_4t_4x4_msa() 3189 dst0 = HEVC_FILT_4TAP(dst10, dst32, filt_h0, filt_h1); in hevc_hv_uni_4t_4x4_msa() 3191 dst2 = HEVC_FILT_4TAP(dst32, dst54, filt_h0, filt_h1); in hevc_hv_uni_4t_4x4_msa()
|
H A D | hevc_mc_uniw_msa.c | 4208 v8i16 dst20, dst31, dst42, dst10, dst32, dst21, dst43; in hevc_hv_uniwgt_4t_4x2_msa() local 4240 ILVRL_H2_SH(dst31, dst20, dst10, dst32); in hevc_hv_uniwgt_4t_4x2_msa() 4242 dst0 = HEVC_FILT_4TAP(dst10, dst32, filt_h0, filt_h1); in hevc_hv_uniwgt_4t_4x2_msa() 4272 v8i16 dst30, dst41, dst52, dst63, dst10, dst32, dst54, dst21, dst43, dst65; in hevc_hv_uniwgt_4t_4x4_msa() local 4308 ILVRL_H2_SH(dst63, dst52, dst32, dst65); in hevc_hv_uniwgt_4t_4x4_msa() 4309 dst0 = HEVC_FILT_4TAP(dst10, dst32, filt_h0, filt_h1); in hevc_hv_uniwgt_4t_4x4_msa() 4311 dst2 = HEVC_FILT_4TAP(dst32, dst54, filt_h0, filt_h1); in hevc_hv_uniwgt_4t_4x4_msa()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_query.c | 328 uint32_t *dst32 = (uint32_t *) dst; in write_to_buffer() local 329 dst32[idx] = (uint32_t) value; in write_to_buffer()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | genX_query.c | 391 uint32_t *dst32 = dst_slot; in cpu_write_query_result() local 392 dst32[value_index] = result; in cpu_write_query_result()
|
/third_party/ffmpeg/libavutil/ |
H A D | pixdesc.c | 48 uint32_t *dst32 = dst; in av_read_image_line2() local 62 if (dst_element_size == 4) *dst32++ = val; in av_read_image_line2() 83 if (dst_element_size == 4) *dst32++ = val; in av_read_image_line2()
|
/third_party/ffmpeg/libavcodec/loongarch/ |
H A D | hevcdsp_lsx.c | 1210 __m128i dst10, dst32, dst54, dst76; in hevc_vt_8t_4w_lsx() local 1255 dst32 = __lsx_vdp2_h_bu_b(src4332, filt0); in hevc_vt_8t_4w_lsx() 1256 DUP2_ARG3(__lsx_vdp2add_h_bu_b, dst32, src6554, filt1, dst32, src8776, in hevc_vt_8t_4w_lsx() 1257 filt2, dst32, dst32); in hevc_vt_8t_4w_lsx() 1258 dst32 = __lsx_vdp2add_h_bu_b(dst32, src10998, filt3); in hevc_vt_8t_4w_lsx() 1272 __lsx_vstelm_d(dst32, dst, 0, 0); in hevc_vt_8t_4w_lsx() 1274 __lsx_vstelm_d(dst32, ds in hevc_vt_8t_4w_lsx() [all...] |