Home
last modified time | relevance | path

Searched refs:r_out (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/mips/
Dvp9_lpf_msa.c640 v8i16 l_out, r_out; in vp9_hz_lpf_t16_16w() local
677 r_out = __msa_srari_h((v8i16) tmp1_r, 4); in vp9_hz_lpf_t16_16w()
698 r_out = (v8i16) __msa_pckev_b((v16i8) l_out, (v16i8) r_out); in vp9_hz_lpf_t16_16w()
699 p6 = __msa_bmnz_v(p6, (v16u8) r_out, flat2); in vp9_hz_lpf_t16_16w()
709 r_out = __msa_srari_h((v8i16) tmp1_r, 4); in vp9_hz_lpf_t16_16w()
718 r_out = (v8i16) __msa_pckev_b((v16i8) l_out, (v16i8) r_out); in vp9_hz_lpf_t16_16w()
719 p5 = __msa_bmnz_v(p5, (v16u8) r_out, flat2); in vp9_hz_lpf_t16_16w()
729 r_out = (v8i16) __msa_srari_h((v8i16) tmp1_r, 4); in vp9_hz_lpf_t16_16w()
738 r_out = (v8i16) __msa_pckev_b((v16i8) l_out, (v16i8) r_out); in vp9_hz_lpf_t16_16w()
739 p4 = __msa_bmnz_v(p4, (v16u8) r_out, flat2); in vp9_hz_lpf_t16_16w()
[all …]
/third_party/musl/src/crypt/
Dcrypt_des.c755 uint32_t *l_out, uint32_t *r_out, in __do_des() argument
843 *r_out = ro; in __do_des()
850 uint32_t l_out, r_out, rawl, rawr; in des_cipher() local
863 __do_des(rawl, rawr, &l_out, &r_out, count, saltbits, ekey); in des_cipher()
869 out[4] = r_out >> 24; in des_cipher()
870 out[5] = r_out >> 16; in des_cipher()
871 out[6] = r_out >> 8; in des_cipher()
872 out[7] = r_out; in des_cipher()
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dgstwebrtcstats.c315 GstStructure *in, *r_out; in _get_stats_from_rtp_source_stats() local
458 r_out = gst_structure_new_empty (r_out_id); in _get_stats_from_rtp_source_stats()
459 _set_base_stats (r_out, GST_WEBRTC_STATS_REMOTE_OUTBOUND_RTP, ts, r_out_id); in _get_stats_from_rtp_source_stats()
461 gst_structure_set (r_out, "ssrc", G_TYPE_UINT, ssrc, NULL); in _get_stats_from_rtp_source_stats()
462 gst_structure_set (r_out, "codec-id", G_TYPE_STRING, codec_id, NULL); in _get_stats_from_rtp_source_stats()
463 gst_structure_set (r_out, "transport-id", G_TYPE_STRING, transport_id, in _get_stats_from_rtp_source_stats()
473 gst_structure_set (r_out, "bytes-sent", G_TYPE_UINT, sr_bytes, NULL); in _get_stats_from_rtp_source_stats()
475 gst_structure_set (r_out, "packets-sent", G_TYPE_UINT, sr_packets, in _get_stats_from_rtp_source_stats()
532 gst_structure_set (r_out, "remote-timestamp", G_TYPE_DOUBLE, val, NULL); in _get_stats_from_rtp_source_stats()
536 gst_structure_set (r_out, "remote-timestamp", G_TYPE_DOUBLE, 0.0, NULL); in _get_stats_from_rtp_source_stats()
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_tonemap.c136 float *r_out = (float *)(out->data[0] + x * desc->comp[0].step + y * out->linesize[0]); in tonemap() local
142 *r_out = *r_in; in tonemap()
150 *r_out = MIX(*r_in, luma, overbright); in tonemap()
158 sig = FFMAX(FFMAX3(*r_out, *g_out, *b_out), 1e-6); in tonemap()
189 *r_out *= sig / sig_orig; in tonemap()
/third_party/mindspore/tests/ut/python/parallel/
Dtest_range.py64 r_out = self.range(self.start, self.limit, self.delta)
66 out = self.mul2(out, r_out)