OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:signbit
(Results
76 - 100
of
212
) sorted by null
1
2
3
4
5
6
7
8
9
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cmath.h
539
template<typename _Tp> inline int __capture_signbit(_Tp __f) { return
signbit
(__f); }
544
#undef
signbit
macro
549
template<typename _Tp> inline int
signbit
(_Tp __f) { return __capture_signbit(__f); }
function in namespace:__captured
587
using __captured::
signbit
;
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cmath.h
539
template<typename _Tp> inline int __capture_signbit(_Tp __f) { return
signbit
(__f); }
544
#undef
signbit
macro
549
template<typename _Tp> inline int
signbit
(_Tp __f) { return __capture_signbit(__f); }
function in namespace:__captured
587
using __captured::
signbit
;
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cmath.h
539
template<typename _Tp> inline int __capture_signbit(_Tp __f) { return
signbit
(__f); }
544
#undef
signbit
macro
549
template<typename _Tp> inline int
signbit
(_Tp __f) { return __capture_signbit(__f); }
function in namespace:__captured
587
using __captured::
signbit
;
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
cmath
473
#undef
signbit
580
signbit
(float __x)
584
signbit
(double __x)
588
signbit
(long double __x)
594
signbit
(_Tp __x)
780
signbit
(_Tp __f)
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
cmath
473
#undef
signbit
580
signbit
(float __x)
584
signbit
(double __x)
588
signbit
(long double __x)
594
signbit
(_Tp __x)
780
signbit
(_Tp __f)
[
all
...]
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
cmath
473
#undef
signbit
580
signbit
(float __x)
584
signbit
(double __x)
588
signbit
(long double __x)
594
signbit
(_Tp __x)
780
signbit
(_Tp __f)
[
all
...]
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
cmath
550
#undef
signbit
657
signbit
(float __x)
661
signbit
(double __x)
665
signbit
(long double __x)
671
signbit
(_Tp __x)
857
signbit
(_Tp __f)
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cmath
484
#undef
signbit
543
signbit
(_Tp __f)
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
math.h
226
# define
signbit
(x) \
macro
229
# define
signbit
(x) \
macro
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
math.h
226
# define
signbit
(x) \
macro
229
# define
signbit
(x) \
macro
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
math.h
226
# define
signbit
(x) \
macro
229
# define
signbit
(x) \
macro
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
cmath
484
#undef
signbit
543
signbit
(_Tp __f)
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
cmath
484
#undef
signbit
543
signbit
(_Tp __f)
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
cmath
484
#undef
signbit
543
signbit
(_Tp __f)
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
cmath
484
#undef
signbit
543
signbit
(_Tp __f)
/external/compiler-rt/lib/
divdf3.c
28
const rep_t quotientSign = (toRep(a) ^ toRep(b)) &
signBit
;
divsf3.c
28
const rep_t quotientSign = (toRep(a) ^ toRep(b)) &
signBit
;
truncdfsf2.c
164
// Apply the
signbit
to (dst_t)abs(a).
/external/stlport/src/
num_put_float.cpp
175
static bool _Stl_is_neg_inf(double x) { return !isfinite(x) &&
signbit
(x); }
176
static bool _Stl_is_neg_nan(double x) { return isnan(x) &&
signbit
(x); }
197
static inline bool _Stl_is_neg_inf(double x) { return isinf(x) &&
signbit
(x); }
198
static inline bool _Stl_is_neg_nan(double x) { return isnan(x) &&
signbit
(x); }
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
math_h.pass.cpp
199
static_assert((std::is_same<decltype(
signbit
((float)0)), bool>::value), "");
200
static_assert((std::is_same<decltype(
signbit
((double)0)), bool>::value), "");
201
static_assert((std::is_same<decltype(
signbit
((long double)0)), bool>::value), "");
202
assert(
signbit
(-1.0) == true);
/ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp
175
static bool _Stl_is_neg_inf(double x) { return !isfinite(x) &&
signbit
(x); }
176
static bool _Stl_is_neg_nan(double x) { return isnan(x) &&
signbit
(x); }
197
static inline bool _Stl_is_neg_inf(double x) { return isinf(x) &&
signbit
(x); }
198
static inline bool _Stl_is_neg_nan(double x) { return isnan(x) &&
signbit
(x); }
[
all
...]
/external/libxml2/
trionan.c
565
#if defined(fpclassify) && defined(
signbit
)
567
* C99 defines fpclassify() and
signbit
() as a macros
569
*is_negative =
signbit
(number);
/external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp
933
//
signbit
:
934
// *
signbit
(cnst) -> cnst'
935
// *
signbit
(nncst) -> 0 (if pstv is a non-negative constant)
/external/webkit/Source/JavaScriptCore/dfg/
DFGSpeculativeJIT.h
147
if (!asInt32 &&
signbit
(value))
/external/webkit/Source/JavaScriptCore/runtime/
JSValueInlineMethods.h
168
if (asInt32 != d || (!asInt32 &&
signbit
(d))) { // true for -0.0
Completed in 1753 milliseconds
1
2
3
4
5
6
7
8
9