Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dgstwebrtcstats.c115 GstStructure *r_in; in _get_stats_from_remote_rtp_source_stats() local
132 r_in = gst_structure_new_empty (r_in_id); in _get_stats_from_remote_rtp_source_stats()
133 _set_base_stats (r_in, GST_WEBRTC_STATS_REMOTE_INBOUND_RTP, ts, r_in_id); in _get_stats_from_remote_rtp_source_stats()
136 gst_structure_set (r_in, "local-id", G_TYPE_STRING, out_id, NULL); in _get_stats_from_remote_rtp_source_stats()
137 gst_structure_set (r_in, "ssrc", G_TYPE_UINT, ssrc, NULL); in _get_stats_from_remote_rtp_source_stats()
138 gst_structure_set (r_in, "codec-id", G_TYPE_STRING, codec_id, NULL); in _get_stats_from_remote_rtp_source_stats()
139 gst_structure_set (r_in, "transport-id", G_TYPE_STRING, transport_id, NULL); in _get_stats_from_remote_rtp_source_stats()
145 gst_structure_set (r_in, "packets-lost", G_TYPE_INT, lost, NULL); in _get_stats_from_remote_rtp_source_stats()
148 gst_structure_set (r_in, "jitter", G_TYPE_DOUBLE, in _get_stats_from_remote_rtp_source_stats()
175 gst_structure_set (r_in, "fraction-lost", G_TYPE_DOUBLE, in _get_stats_from_remote_rtp_source_stats()
[all …]
/third_party/astc-encoder/Utils/
Dastc_rgbm_codec.cpp97 float r_in = pixel_in[0] / rgbm_multiplier; in main() local
101 float max_rgb = astc::max(r_in, g_in, b_in); in main()
109 float r_scale = astc::min(1.0f, r_in / m_scale); in main()
/third_party/musl/src/crypt/
Dcrypt_des.c754 void __do_des(uint32_t l_in, uint32_t r_in, in __do_des() argument
764 if (l_in | r_in) { in __do_des()
768 ip_maskl[i + 8][(r_in >> ibit) & 0xf]; in __do_des()
770 ip_maskr[i + 8][(r_in >> ibit) & 0xf]; in __do_des()
/third_party/ffmpeg/libavfilter/
Dvf_tonemap.c133 const float *r_in = (const float *)(in->data[0] + x * desc->comp[0].step + y * in->linesize[0]); in tonemap() local
142 *r_out = *r_in; in tonemap()
148 float luma = s->coeffs->cr * *r_in + s->coeffs->cg * *g_in + s->coeffs->cb * *b_in; in tonemap()
150 *r_out = MIX(*r_in, luma, overbright); in tonemap()
/third_party/openssl/test/
Decdsatest.c76 const char *r_in = NULL, *s_in = NULL, *tbs = NULL; in x9_62_tests() local
91 r_in = ecdsa_cavs_kats[n].r; in x9_62_tests()
115 || !TEST_true(BN_hex2bn(&r, r_in)) in x9_62_tests()