Home
last modified time | relevance | path

Searched refs:pstr (Results 1 – 25 of 31) sorted by relevance

12

/third_party/gstreamer/gstplugins_base/tests/icles/
Dtest-scale.c32 gchar *pstr; in make_pipeline() local
36 pstr = g_strdup_printf ("videotestsrc ! capsfilter name=filter ! " in make_pipeline()
40 pstr = g_strdup_printf ("videotestsrc ! queue ! capsfilter name=filter ! " in make_pipeline()
44 pstr = g_strdup_printf ("videotestsrc ! videoscale ! " in make_pipeline()
48 pstr = in make_pipeline()
53 pstr = in make_pipeline()
58 pstr = g_strdup_printf ("v4l2src ! videoconvert ! videoscale ! " in make_pipeline()
65 result = gst_parse_launch_full (pstr, NULL, GST_PARSE_FLAG_NONE, NULL); in make_pipeline()
66 g_print ("created test %d: \"%s\"\n", type, pstr); in make_pipeline()
67 g_free (pstr); in make_pipeline()
Dtest-resample.c32 gchar *pstr; in make_pipeline() local
36 pstr = g_strdup_printf ("audiotestsrc ! audio/x-raw,rate=44100 ! " in make_pipeline()
44 result = gst_parse_launch_full (pstr, NULL, GST_PARSE_FLAG_NONE, NULL); in make_pipeline()
45 g_print ("created test %d: \"%s\"\n", type, pstr); in make_pipeline()
46 g_free (pstr); in make_pipeline()
Dtest-box.c34 gchar *pstr; in make_pipeline() local
38 pstr = in make_pipeline()
47 result = gst_parse_launch_full (pstr, NULL, GST_PARSE_FLAG_NONE, NULL); in make_pipeline()
48 g_print ("created test %d: \"%s\"\n", type, pstr); in make_pipeline()
49 g_free (pstr); in make_pipeline()
Dtest-textoverlay.c79 gchar *pstr; in test_textoverlay() local
82 pstr = g_strdup_printf ("videotestsrc pattern=blue ! " in test_textoverlay()
87 pipe = gst_parse_launch_full (pstr, NULL, GST_PARSE_FLAG_NONE, NULL); in test_textoverlay()
110 g_free (pstr); in test_textoverlay()
/third_party/ejdb/src/jbl/tests/
Djbl_test_binn1.c619 char *pblob, *pstr; in _test2() local
969 CU_ASSERT(binn_list_get_str(list, 4, &pstr) == TRUE); in _test2()
970 CU_ASSERT(pstr != 0); in _test2()
971 CU_ASSERT(strcmp(pstr, str_list) == 0); in _test2()
973 CU_ASSERT(binn_map_get_str(map, 1004, &pstr) == TRUE); in _test2()
974 CU_ASSERT(pstr != 0); in _test2()
975 CU_ASSERT(strcmp(pstr, str_map) == 0); in _test2()
977 CU_ASSERT(binn_object_get_str(obj, "text", &pstr) == TRUE); in _test2()
978 CU_ASSERT(pstr != 0); in _test2()
979 CU_ASSERT(strcmp(pstr, str_obj) == 0); in _test2()
[all …]
/third_party/gstreamer/gstplugins_good/tests/icles/
Dvideobox-test.c33 gchar *pstr; in make_pipeline() local
37 pstr = g_strdup_printf ("videotestsrc ! videobox name=box ! " in make_pipeline()
44 result = gst_parse_launch_full (pstr, NULL, GST_PARSE_FLAG_NONE, NULL); in make_pipeline()
45 g_print ("created test %d: \"%s\"\n", type, pstr); in make_pipeline()
46 g_free (pstr); in make_pipeline()
Dvideocrop2-test.c33 gchar *pstr; in make_pipeline() local
37 pstr = g_strdup_printf ("videotestsrc ! videocrop name=crop ! " in make_pipeline()
44 result = gst_parse_launch_full (pstr, NULL, GST_PARSE_FLAG_NONE, NULL); in make_pipeline()
45 g_print ("created test %d: \"%s\"\n", type, pstr); in make_pipeline()
46 g_free (pstr); in make_pipeline()
/third_party/python/Modules/
Dfcntlmodule.c161 Py_buffer pstr; in fcntl_ioctl_impl() local
172 if (PyArg_Parse(ob_arg, "w*:ioctl", &pstr)) { in fcntl_ioctl_impl()
174 str = pstr.buf; in fcntl_ioctl_impl()
175 len = pstr.len; in fcntl_ioctl_impl()
189 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()
211 PyBuffer_Release(&pstr); /* No further access to str below this point */ in fcntl_ioctl_impl()
225 if (PyArg_Parse(ob_arg, "s*:ioctl", &pstr)) { in fcntl_ioctl_impl()
226 str = pstr.buf; in fcntl_ioctl_impl()
227 len = pstr.len; in fcntl_ioctl_impl()
229 PyBuffer_Release(&pstr); in fcntl_ioctl_impl()
[all …]
/third_party/ffmpeg/libavutil/
Davstring.c240 const char *pstr2, *pstr = str; in av_strireplace() local
245 while ((pstr2 = av_stristr(pstr, from))) { in av_strireplace()
246 av_bprint_append_data(&pbuf, pstr, pstr2 - pstr); in av_strireplace()
247 pstr = pstr2 + fromlen; in av_strireplace()
250 av_bprint_append_data(&pbuf, pstr, strlen(pstr)); in av_strireplace()
Dcuda_check.h25 typedef CUresult CUDAAPI cuda_check_GetErrorName(CUresult error, const char** pstr);
26 typedef CUresult CUDAAPI cuda_check_GetErrorString(CUresult error, const char** pstr);
/third_party/openssl/crypto/dsa/
Ddsa_ameth.c26 const ASN1_STRING *pstr; in dsa_pub_decode() local
37 pstr = pval; in dsa_pub_decode()
38 pm = pstr->data; in dsa_pub_decode()
39 pmlen = pstr->length; in dsa_pub_decode()
143 const ASN1_STRING *pstr; in dsa_priv_decode() local
161 pstr = pval; in dsa_priv_decode()
162 pm = pstr->data; in dsa_priv_decode()
163 pmlen = pstr->length; in dsa_priv_decode()
/third_party/openssl/crypto/ec/
Dec_ameth.c49 ASN1_STRING *pstr = NULL; in eckey_param2type() local
50 pstr = ASN1_STRING_new(); in eckey_param2type()
51 if (pstr == NULL) in eckey_param2type()
63 pstr->length = i2d_ECParameters((EC_KEY *)ec_key, &pstr->data); in eckey_param2type()
64 if (pstr->length <= 0) { in eckey_param2type()
65 ASN1_STRING_free(pstr); in eckey_param2type()
69 *ppval = pstr; in eckey_param2type()
115 const ASN1_STRING *pstr = pval; in eckey_type2param() local
116 const unsigned char *pm = pstr->data; in eckey_type2param()
117 int pmlen = pstr->length; in eckey_type2param()
/third_party/ntfs-3g/include/ntfs-3g/
Dcache.h100 #define GENERIC(pstr) ((const struct CACHED_GENERIC*)(const void*)(pstr)) argument
/third_party/openssl/crypto/dh/
Ddh_ameth.c51 const ASN1_STRING *pstr; in dh_pub_decode() local
66 pstr = pval; in dh_pub_decode()
67 pm = pstr->data; in dh_pub_decode()
68 pmlen = pstr->length; in dh_pub_decode()
156 const ASN1_STRING *pstr; in dh_priv_decode() local
172 pstr = pval; in dh_priv_decode()
173 pm = pstr->data; in dh_priv_decode()
174 pmlen = pstr->length; in dh_priv_decode()
/third_party/gstreamer/gstplugins_bad/tools/
Dgst-transcoder.c121 gchar dstr[32], pstr[32]; in position_updated_cb() local
124 g_snprintf (pstr, 32, "%" GST_TIME_FORMAT, GST_TIME_ARGS (pos)); in position_updated_cb()
125 pstr[9] = '\0'; in position_updated_cb()
128 g_print ("%s / %s %s\r", pstr, dstr, status); in position_updated_cb()
/third_party/openssl/crypto/x509v3/
Dv3_cpols.c92 char *pstr;
121 pstr = cnf->name;
122 if (strcmp(pstr, "ia5org") == 0) {
125 } else if (*pstr == '@') {
127 polsect = X509V3_get_section(ctx, pstr + 1);
/third_party/libcoap/src/
Dcoap_openssl.c318 static int coap_dgram_puts(BIO *a, const char *pstr) { in coap_dgram_puts() argument
319 return coap_dgram_write(a, pstr, (int)strlen(pstr)); in coap_dgram_puts()
553 const char *pstr; in coap_dtls_info_callback() local
557 pstr = "SSL_connect"; in coap_dtls_info_callback()
559 pstr = "SSL_accept"; in coap_dtls_info_callback()
561 pstr = "undefined"; in coap_dtls_info_callback()
566 coap_session_str(session), pstr, SSL_state_string_long(ssl)); in coap_dtls_info_callback()
569 pstr = (where & SSL_CB_READ) ? "read" : "write"; in coap_dtls_info_callback()
578 pstr, in coap_dtls_info_callback()
586 coap_session_str(session), pstr, SSL_state_string_long(ssl)); in coap_dtls_info_callback()
[all …]
/third_party/gstreamer/gstreamer/tools/
Dgst-launch.c1015 gchar dstr[32], pstr[32]; in query_pipeline_position() local
1018 g_snprintf (pstr, 32, "%" GST_TIME_FORMAT, GST_TIME_ARGS (pos)); in query_pipeline_position()
1019 pstr[9] = '\0'; in query_pipeline_position()
1027 gst_print ("%s / %s (%.1f %%)%c", pstr, dstr, percent, in query_pipeline_position()
1030 gst_print ("%s / %s%c", pstr, dstr, output_is_tty ? '\r' : '\n'); in query_pipeline_position()
/third_party/toybox/toys/posix/
Dsed.c685 static char *unescape_delimited_string(char **pstr, char *delim) in unescape_delimited_string() argument
690 from = *pstr; in unescape_delimited_string()
697 to = delim = xmalloc(strlen(*pstr)+1); in unescape_delimited_string()
741 *pstr = from+1; in unescape_delimited_string()
/third_party/mindspore/tests/ut/python/nn/
Dtest_parameter.py38 pstr = "[2,3]"
50 ParameterTuple(pstr)
/third_party/openssl/crypto/rsa/
Drsa_ameth.c31 ASN1_STRING **pstr, int *pstrtype) in rsa_param_encode() argument
35 *pstr = NULL; in rsa_param_encode()
47 if (ASN1_item_pack(rsa->pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), pstr) == NULL) in rsa_param_encode()
/third_party/gstreamer/gstplugins_base/tools/
Dgst-play.c696 gchar dstr[32], pstr[32]; in play_timeout() local
699 g_snprintf (pstr, 32, "%" GST_TIME_FORMAT, GST_TIME_ARGS (pos)); in play_timeout()
700 pstr[9] = '\0'; in play_timeout()
703 gst_print ("%s / %s %s\r", pstr, dstr, status); in play_timeout()
/third_party/ejdb/src/jbl/
Dbinn.c1909 char pstr[128]; in GetWriteConvertedData() local
1911 UNUSED(pstr); in GetWriteConvertedData()
1945 snprintf(pstr, 127, "%.17e", d1); in GetWriteConvertedData()
1946 *ppvalue = pstr; in GetWriteConvertedData()
/third_party/boost/boost/regex/v4/
Dperl_matcher_common.hpp958 const char_type* x = info->pstr; in find_restart_lit()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Ddaemon.c3098 const char *pstr; in parse_options_va() local
3237 pstr = va_arg (ap, const char*), in parse_options_va()
3244 pstr, in parse_options_va()

12