search for: lroundl

Displaying 5 results from an estimated 5 matches for "lroundl".

Did you mean: lround
2018 Feb 06
2
libc++ cross-compile linux-armv7 and math function problems
...intl' has not been declared inline _LIBCPP_INLINE_VISIBILITY long long llrint(long double __lcpp_x) _NOEXCEPT {return ::llrintl(__lcpp_x);} ^~ ../projects/libcxx/include/math.h: In function 'long long int llround(long double)': ../projects/libcxx/include/math.h:1284:92: error: '::llroundl' has not been declared inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __lcpp_x) _NOEXCEPT {return ::llroundl(__lcpp_x);} ^~ ../projects/libcxx/include/math.h: In function 'long double log1p(long double)': ../projects/libcxx/include/math....
2018 Feb 06
0
libc++ cross-compile linux-armv7 and math function problems
..._NOEXCEPT {return ::llrintl(__lcpp_x);} > ^~ > ../projects/libcxx/include/math.h: In function 'long long int llround(long double)': > ../projects/libcxx/include/math.h:1284:92: error: '::llroundl' has not been declared > inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __lcpp_x) _NOEXCEPT {return ::llroundl(__lcpp_x);} > ^~ > ../projects/libcxx/include/math.h: In function...
2018 Feb 06
1
libc++ cross-compile linux-armv7 and math function problems
...ITY long long llrint(long double __lcpp_x) > _NOEXCEPT {return ::llrintl(__lcpp_x);} > > > ^~ > > ../projects/libcxx/include/math.h: In function 'long long int > llround(long double)': > > ../projects/libcxx/include/math.h:1284:92: error: '::llroundl' has not > been declared > > inline _LIBCPP_INLINE_VISIBILITY long long llround(long double > __lcpp_x) _NOEXCEPT {return ::llroundl(__lcpp_x);} > > > ^~ > > ../projects/libcxx/include/math.h: In function 'long double log1p(long > double)...
2018 Feb 05
0
Cross-compiling libc++ to linux-armv7hf gives undefined symbols in cmath / math.h
...intl' has not been declared inline _LIBCPP_INLINE_VISIBILITY long long llrint(long double __lcpp_x) _NOEXCEPT {return ::llrintl(__lcpp_x);} ^~ ../projects/libcxx/include/math.h: In function 'long long int llround(long double)': ../projects/libcxx/include/math.h:1284:92: error: '::llroundl' has not been declared inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __lcpp_x) _NOEXCEPT {return ::llroundl(__lcpp_x);} ^~ ../projects/libcxx/include/math.h: In function 'long double log1p(long double)': ../projects/libcxx/include/math.h:1294:92: error: '::log1pl&...
2005 Apr 28
0
[LLVMdev] SimplifyLibCalls Pass -- Help!
...log, logf, logl: * log(1.0) -> 0.0 * log(exp(x)) -> x * log(x**y) -> y*log(x) * log(exp(y)) -> y*log(e) * log(exp2(y)) -> y*log(2) * log(exp10(y)) -> y*log(10) * log(sqrt(x)) -> 0.5*log(x) * log(pow(x,y)) -> y*log(x) lround, lroundf, lroundl: * lround(cnst) -> cnst' memcmp: * memcmp(s1,s2,0) -> 0 * memcmp(x,x,l) -> 0 * memcmp(x,y,l) -> cnst (if all arguments are constant and strlen(x) <= l and strlen(y) <= l) * memcpy(x,y,1) -> *x - *y memcpy: * memcpy(d,s,0,a) -> d memmov...