Home
last modified time | relevance | path

Searched refs:num_val (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavformat/
Dflvdec.c554 double num_val; in amf_parse_object() local
560 num_val = 0; in amf_parse_object()
568 num_val = av_int2double(avio_rb64(ioc)); in amf_parse_object()
571 num_val = avio_r8(ioc); in amf_parse_object()
649 s->duration = num_val * AV_TIME_BASE; in amf_parse_object()
651 0 <= (int)(num_val * 1024.0)) in amf_parse_object()
652 flv->video_bit_rate = num_val * 1024.0; in amf_parse_object()
654 0 <= (int)(num_val * 1024.0)) in amf_parse_object()
655 flv->audio_bit_rate = num_val * 1024.0; in amf_parse_object()
662 flv->framerate = av_d2q(num_val, 1000); in amf_parse_object()
[all …]
/third_party/openssl/crypto/ec/
Dec_mult.c427 size_t num_val; in ossl_ec_wNAF_mul() local
531 num_val = 0; in ossl_ec_wNAF_mul()
538 num_val += (size_t)1 << (wsize[i] - 1); in ossl_ec_wNAF_mul()
663 val = OPENSSL_malloc((num_val + 1) * sizeof(val[0])); in ossl_ec_wNAF_mul()
668 val[num_val] = NULL; /* pivot element */ in ossl_ec_wNAF_mul()
681 if (!(v == val + num_val)) { in ossl_ec_wNAF_mul()
717 || !group->meth->points_make_affine(group, num_val, val, ctx)) in ossl_ec_wNAF_mul()
/third_party/node/deps/openssl/openssl/crypto/ec/
Dec_mult.c427 size_t num_val; in ossl_ec_wNAF_mul() local
531 num_val = 0; in ossl_ec_wNAF_mul()
538 num_val += (size_t)1 << (wsize[i] - 1); in ossl_ec_wNAF_mul()
663 val = OPENSSL_malloc((num_val + 1) * sizeof(val[0])); in ossl_ec_wNAF_mul()
668 val[num_val] = NULL; /* pivot element */ in ossl_ec_wNAF_mul()
681 if (!(v == val + num_val)) { in ossl_ec_wNAF_mul()
717 || !group->meth->points_make_affine(group, num_val, val, ctx)) in ossl_ec_wNAF_mul()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-number.c141 ecma_number_t num_val = ecma_get_number_from_value (arg); in ecma_builtin_number_object_is_nan() local
143 if (ecma_number_is_nan (num_val)) in ecma_builtin_number_object_is_nan()
/third_party/jerryscript/tests/unit-core/
Dtest-api.cpp859 jerry_value_t num_val = jerry_create_number (123); variable
860 num_val = jerry_create_error_from_value (num_val, true);
861 TEST_ASSERT (jerry_value_is_error (num_val));
862 jerry_value_t num2_val = jerry_get_value_from_error (num_val, false);
863 TEST_ASSERT (jerry_value_is_error (num_val));
867 num2_val = jerry_get_value_from_error (num_val, true);
/third_party/ffmpeg/libavfilter/
Dvf_vif.c121 float num_val, den_val; in vif_statistic() local
167 num_val = log2f(1.0f + g * g * sigma1_sq / (sv_sq + sigma_nsq)); in vif_statistic()
171 num_val = den_val = 1.f; in vif_statistic()
173 accum_inner_num += num_val; in vif_statistic()