Home
last modified time | relevance | path

Searched refs:ltmp (Results 1 – 9 of 9) sorted by relevance

/third_party/openssl/crypto/asn1/
Dx_long.c92 long ltmp;
96 memcpy(&ltmp, pval, COPY_SIZE(*pval, ltmp));
97 if (ltmp == it->size)
104 if (ltmp < 0) {
106 utmp = 0 - (unsigned long)ltmp - 1;
109 utmp = ltmp;
136 long ltmp;
178 ltmp = (long)utmp;
179 if (ltmp < 0) {
184 ltmp = -ltmp - 1;
[all …]
/third_party/libsnd/src/GSM610/
Dgsm610_priv.h150 { int32_t ltmp ; in GSM_ADD() local
152 ltmp = ((int32_t) a) + ((int32_t) b) ; in GSM_ADD()
154 if (ltmp >= MAX_WORD) in GSM_ADD()
156 if (ltmp <= MIN_WORD) in GSM_ADD()
159 return ltmp ; in GSM_ADD()
164 { int32_t ltmp ; in GSM_SUB() local
166 ltmp = ((int32_t) a) - ((int32_t) b) ; in GSM_SUB()
168 if (ltmp >= MAX_WORD) in GSM_SUB()
169 ltmp = MAX_WORD ; in GSM_SUB()
170 else if (ltmp <= MIN_WORD) in GSM_SUB()
[all …]
/third_party/openssl/crypto/conf/
Dconf_lib.c48 LHASH_OF(CONF_VALUE) *ltmp; in LHASH_OF()
61 ltmp = CONF_load_bio(conf, in, eline); in LHASH_OF()
64 return ltmp; in LHASH_OF()
72 LHASH_OF(CONF_VALUE) *ltmp; in LHASH_OF()
77 ltmp = CONF_load_bio(conf, btmp, eline); in LHASH_OF()
79 return ltmp; in LHASH_OF()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/
Dencoding-target.c849 gchar *ltmp = g_build_filename (path, subdirname, NULL); in get_matching_filenames() local
851 if (g_file_test (ltmp, G_FILE_TEST_IS_DIR)) { in get_matching_filenames()
859 g_free (ltmp); in get_matching_filenames()
1135 gchar *ltmp = g_build_filename (path, subdirname, NULL); in get_categories() local
1137 if (g_file_test (ltmp, G_FILE_TEST_IS_DIR)) { in get_categories()
1140 g_free (ltmp); in get_categories()
1238 gchar *ltmp = g_build_filename (topdir, subdirname, NULL); in get_all_targets() local
1240 if (g_file_test (ltmp, G_FILE_TEST_IS_DIR)) { in get_all_targets()
1241 res = g_list_concat (res, sub_get_all_targets (ltmp)); in get_all_targets()
1243 g_free (ltmp); in get_all_targets()
Dencoding-profile.c1392 GList *ltmp; in gst_encoding_profile_get_input_caps() local
1403 for (ltmp = GST_ENCODING_CONTAINER_PROFILE (profile)->encodingprofiles; in gst_encoding_profile_get_input_caps()
1404 ltmp; ltmp = ltmp->next) { in gst_encoding_profile_get_input_caps()
1405 GstEncodingProfile *sprof = (GstEncodingProfile *) ltmp->data; in gst_encoding_profile_get_input_caps()
/third_party/openssl/crypto/x509/
Dx_name.c466 int i, len, ltmp; in i2d_name_canon() local
473 ltmp = ASN1_item_ex_i2d(&v, in, in i2d_name_canon()
475 if (ltmp < 0) in i2d_name_canon()
476 return ltmp; in i2d_name_canon()
477 len += ltmp; in i2d_name_canon()
/third_party/openssl/apps/
Dcms.c217 long ltmp; in cms_main() local
415 secret_key = OPENSSL_hexstr2buf(opt_arg(), &ltmp); in cms_main()
420 secret_keylen = (size_t)ltmp; in cms_main()
428 secret_keyid = OPENSSL_hexstr2buf(opt_arg(), &ltmp); in cms_main()
433 secret_keyidlen = (size_t)ltmp; in cms_main()
/third_party/openssl/crypto/bn/
Dbn_mul.c628 BN_ULONG *ltmp; in bn_mul_normal() local
633 ltmp = a; in bn_mul_normal()
635 b = ltmp; in bn_mul_normal()
/third_party/libcoap/src/
Dcoap_session.c170 coap_lg_xmit_t *lq, *ltmp; in coap_session_mfree() local
223 LL_FOREACH_SAFE(session->lg_xmit, lq, ltmp) { in coap_session_mfree()