Home
last modified time | relevance | path

Searched refs:tmpval (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavcodec/
D4xm.c281 unsigned tmpval = AV_RN32(src); \
282 tmpval = (tmpval << 16) | (tmpval >> 16); \
283 tmpval = tmpval * (scale) + (dc); \
284 tmpval = (tmpval << 16) | (tmpval >> 16); \
285 AV_WN32A(dst, tmpval); \
290 unsigned tmpval = AV_RN32(src) * (scale) + (dc); \
291 AV_WN32A(dst, tmpval); \
/third_party/openssl/crypto/asn1/
Dasn_mime.c842 char *tmpname = NULL, *tmpval = NULL, *p; in mime_hdr_new() local
851 if ((tmpval = OPENSSL_strdup(value)) == NULL) in mime_hdr_new()
853 for (p = tmpval; *p; p++) in mime_hdr_new()
860 mhdr->value = tmpval; in mime_hdr_new()
867 OPENSSL_free(tmpval); in mime_hdr_new()
874 char *tmpname = NULL, *tmpval = NULL, *p; in mime_hdr_addparam() local
885 tmpval = OPENSSL_strdup(value); in mime_hdr_addparam()
886 if (!tmpval) in mime_hdr_addparam()
894 mparam->param_value = tmpval; in mime_hdr_addparam()
900 OPENSSL_free(tmpval); in mime_hdr_addparam()
/third_party/openssl/crypto/ocsp/
Docsp_ext.c247 unsigned char *tmpval; in ocsp_add1_nonce() local
265 tmpval = os.data; in ocsp_add1_nonce()
266 ASN1_put_object(&tmpval, 0, len, V_ASN1_OCTET_STRING, V_ASN1_UNIVERSAL); in ocsp_add1_nonce()
268 memcpy(tmpval, val, len); in ocsp_add1_nonce()
269 else if (RAND_bytes(tmpval, len) <= 0) in ocsp_add1_nonce()
/third_party/openssl/crypto/property/
Dproperty_parse.c617 int64_t tmpval = val; in put_num() local
620 if (tmpval < 0) { in put_num()
622 tmpval = -tmpval; in put_num()
624 for (; tmpval > 9; len++, tmpval /= 10); in put_num()
/third_party/openssl/test/
Devp_test.c1277 char *p, *tmpval; in mac_test_ctrl_pkey() local
1279 if (!TEST_ptr(tmpval = OPENSSL_strdup(value))) in mac_test_ctrl_pkey()
1281 p = strchr(tmpval, ':'); in mac_test_ctrl_pkey()
1284 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p); in mac_test_ctrl_pkey()
1292 OPENSSL_free(tmpval); in mac_test_ctrl_pkey()
1485 char *tmpkey, *tmpval; in mac_test_run_mac() local
1492 tmpval = strchr(tmpkey, ':'); in mac_test_run_mac()
1493 if (tmpval != NULL) in mac_test_run_mac()
1494 *tmpval++ = '\0'; in mac_test_run_mac()
1496 if (tmpval == NULL in mac_test_run_mac()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/
Dmpegtsbase.c1602 gint64 tmpval; in mpegts_base_scan() local
1653 if (!gst_pad_peer_query_duration (base->sinkpad, format, &tmpval)) in mpegts_base_scan()
1655 upstream_size = tmpval; in mpegts_base_scan()
/third_party/libxml2/
Dxmlschemastypes.c3029 xmlChar *tmpval, *cur; in xmlSchemaValAtomicType() local
3035 tmpval = xmlStrdup(value); in xmlSchemaValAtomicType()
3036 for (cur = tmpval; *cur; ++cur) { in xmlSchemaValAtomicType()
3044 uri = xmlParseURI((const char *) tmpval); in xmlSchemaValAtomicType()
3045 xmlFree(tmpval); in xmlSchemaValAtomicType()