Home
last modified time | relevance | path

Searched refs:llrint (Results 1 - 25 of 51) sorted by relevance

123

/third_party/musl/src/math/x32/
H A Dllrint.s1 .global llrint
2 .type llrint,@function
3 llrint: label
/third_party/ffmpeg/libavcodec/
H A Dsetts_bsf.c196 new_ts = llrint(av_expr_eval(s->ts_expr, s->var_values, NULL)); in setts_filter()
197 new_duration = llrint(av_expr_eval(s->duration_expr, s->var_values, NULL)); in setts_filter()
201 new_pts = llrint(av_expr_eval(s->pts_expr, s->var_values, NULL)); in setts_filter()
208 new_dts = llrint(av_expr_eval(s->dts_expr, s->var_values, NULL)); in setts_filter()
H A Dmpegaudiodec_common_tablegen.h62 m = llrint(fm * (1LL << 31)); in mpegaudiodec_common_tableinit()
H A Dmpegaudio_tablegen.h71 expval_table_fixed[exponent][value] = (f < 0xFFFFFFFF ? llrint(f) : 0xFFFFFFFF); in mpegaudio_tableinit()
/third_party/pulseaudio/src/pulsecore/
H A Dtime-smoother.c288 t = (int64_t) s->py + (int64_t) llrint(s->dp * (double) (x - s->px)); in estimate()
302 t = (int64_t) s->ey - (int64_t) llrint(s->de * (double) (s->ex - x)); in estimate()
330 *y = ty >= 0 ? (pa_usec_t) llrint(ty) : 0; in estimate()
377 s->py = s->ry + (pa_usec_t) llrint(s->dp * (double) s->adjust_time); in pa_smoother_put()
499 return (pa_usec_t) llrint((double) y_delay / nde); in pa_smoother_translate()
H A Dsconv-s16le.c308 s = (int32_t) PA_CLAMP_UNLIKELY(llrint(v), -0x80000000LL, 0x7FFFFFFFLL); in pa_sconv_s24le_from_float32ne()
335 s = (int32_t) PA_CLAMP_UNLIKELY(llrint(v), -0x80000000LL, 0x7FFFFFFFLL); in pa_sconv_s24le_from_float32re()
420 s = (int32_t) PA_CLAMP_UNLIKELY(llrint(v), -0x80000000LL, 0x7FFFFFFFLL); in pa_sconv_s24_32le_from_float32ne()
434 s = (int32_t) PA_CLAMP_UNLIKELY(llrint(v), -0x80000000LL, 0x7FFFFFFFLL); in pa_sconv_s24_32le_from_float32re()
/third_party/musl/src/math/
H A Dllrint.c5 long long llrint(double x) in llrint() function
H A Dllrintl.c9 return llrint(x); in llrintl()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dllrint.c5 long long llrint(double x) in llrint() function
H A Dllrintl.c9 return llrint(x); in llrintl()
/third_party/musl/libc-test/src/api/
H A Dtgmath.c176 #ifdef llrint in f()
177 {double r = llrint(x);} in f()
179 #error no llrint(x) in f()
/third_party/musl/src/math/i386/
H A Dllrint.c3 long long llrint(double x) in llrint() function
/third_party/musl/src/math/x86_64/
H A Dllrint.c3 long long llrint(double x) in llrint() function
/third_party/musl/src/math/aarch64/
H A Dllrint.c3 long long llrint(double x) in llrint() function
/third_party/ffmpeg/libavutil/
H A Dtablegen.h47 #define llrint ff_llrint macro
H A Dversion.c55 if (llrint(1LL<<60) != 1LL<<60) { in avutil_version()
56 av_log(NULL, AV_LOG_ERROR, "Libavutil has been linked to a broken llrint()\n"); in avutil_version()
H A Dlibm.h393 #undef llrint macro
394 #define llrint(x) ((long long)rint(x)) macro
H A Dinternal.h247 // safe to call llrint and clip accordingly in ff_rint64_clip()
248 res = llrint(a); in ff_rint64_clip()
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
H A Dmath_llrint_test.cpp17 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the llrint interface.
24 bool testResult = DoubleUlpCmp(g_llrintData[i].expected, llrint(g_llrintData[i].input), 1); in HWTEST_F()
/third_party/musl/libc-test/src/math/
H A Dllrint.c6 #include "sanity/llrint.h"
7 #include "special/llrint.h"
25 yi = llrint(p->x); in main()
29 printf("%s:%d: bad fp exception: %s llrint(%a)=%lld, want %s", in main()
35 printf("%s:%d: %s llrint(%a) want %lld got %lld\n", in main()
/third_party/musl/porting/uniproton/kernel/include/
H A Dtgmath.h180 #undef llrint macro
243 #define llrint(x) __tg_real_nocast(llrint, (x)) macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtgmath.h180 #undef llrint macro
243 #define llrint(x) __tg_real_nocast(llrint, (x)) macro
/third_party/musl/include/
H A Dtgmath.h180 #undef llrint macro
243 #define llrint(x) __tg_real_nocast(llrint, (x)) macro
/third_party/ffmpeg/libavresample/
H A Dresample_template.c47 #define DBL_TO_FELEM(d, v) d = av_clipl_int32(llrint(v * (1 << 30)));
/third_party/ffmpeg/libswresample/
H A Daudioconvert.c86 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const double*)pi * (1U<<31))))
87 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_DBL, llrint(*(const double*)pi * (UINT64_C(1)<<63)))

Completed in 9 milliseconds

123