OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:signbit
(Results
26 - 50
of
212
) sorted by null
1
2
3
4
5
6
7
8
9
/external/icu4c/layout/
LigatureSubstProc.cpp
20
#define
SignBit
(m) ((ExtendedComplement(m) >> 1) & (le_int32)(m))
21
#define SignExtend(v,m) (((v) &
SignBit
(m))? ((v) | ExtendedComplement(m)): (v))
/external/qemu/target-arm/
op_helper.c
22
#define
SIGNBIT
(uint32_t)0x80000000
149
if (((res ^ a) &
SIGNBIT
) && !((a ^ b) &
SIGNBIT
))
157
if (((res ^ a) &
SIGNBIT
) && !((a ^ b) &
SIGNBIT
)) {
159
res = ~(((int32_t)a >> 31) ^
SIGNBIT
);
167
if (((res ^ a) &
SIGNBIT
) && ((a ^ b) &
SIGNBIT
)) {
169
res = ~(((int32_t)a >> 31) ^
SIGNBIT
);
178
res = ~
SIGNBIT
;
[
all
...]
/external/compiler-rt/lib/
negdf2.c
20
return fromRep(toRep(a) ^
signBit
);
negsf2.c
21
return fromRep(toRep(a) ^
signBit
);
subdf3.c
26
return __adddf3(a, fromRep(toRep(b) ^
signBit
));
subsf3.c
25
return __addsf3(a, fromRep(toRep(b) ^
signBit
));
adddf3.c
38
if ((toRep(a) ^ toRep(b)) ==
signBit
) return fromRep(qnanRep);
76
const rep_t resultSign = aRep &
signBit
;
77
const bool subtraction = (aRep ^ bRep) &
signBit
;
addsf3.c
37
if ((toRep(a) ^ toRep(b)) ==
signBit
) return fromRep(qnanRep);
75
const rep_t resultSign = aRep &
signBit
;
76
const bool subtraction = (aRep ^ bRep) &
signBit
;
muldf3.c
25
const rep_t productSign = (toRep(a) ^ toRep(b)) &
signBit
;
119
if (productLo >
signBit
) productHi++;
120
if (productLo ==
signBit
) productHi += productHi & 1;
mulsf3.c
25
const rep_t productSign = (toRep(a) ^ toRep(b)) &
signBit
;
109
if (productLo >
signBit
) productHi++;
110
if (productLo ==
signBit
) productHi += productHi & 1;
fixdfsi.c
28
const int sign = aRep &
signBit
? -1 : 1;
fixsfsi.c
26
const int sign = aRep &
signBit
? -1 : 1;
floatsidf.c
34
sign =
signBit
;
/external/webkit/Source/JavaScriptCore/wtf/
MathExtras.h
92
#ifndef
signbit
93
inline bool
signbit
(double x) { return copysign(1.0, x) < 0; }
function
103
#ifndef
signbit
104
inline bool
signbit
(double x) { struct ieee_double *p = (struct ieee_double *)&x; return p->dbl_sign; }
function
142
inline bool
signbit
(double num) { return _copysign(1.0, num) < 0; }
function
255
using std::
signbit
;
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.value.ops/
polar.pass.cpp
58
if (std::
signbit
(r) || classify(theta) == inf || classify(theta) == NaN)
69
if (std::
signbit
(r) || classify(theta) == inf || classify(theta) == NaN)
abs.pass.cpp
39
assert(!std::
signbit
(r));
norm.pass.cpp
39
assert(!std::
signbit
(r));
/external/llvm/test/Analysis/BasicAA/
full-store-partial-alias.ll
16
define i32 @
signbit
(double %x) nounwind {
/external/v8/src/
win32-math.h
59
int
signbit
(double x);
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathinline.h
34
/* Test for negative number. Used in the
signbit
() macro. */
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathinline.h
34
/* Test for negative number. Used in the
signbit
() macro. */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathinline.h
34
/* Test for negative number. Used in the
signbit
() macro. */
/external/bison/lib/
signbitd.c
0
/*
signbit
() macro: Determine the sign bit of a floating-point number.
signbitf.c
0
/*
signbit
() macro: Determine the sign bit of a floating-point number.
signbitl.c
0
/*
signbit
() macro: Determine the sign bit of a floating-point number.
Completed in 2859 milliseconds
1
2
3
4
5
6
7
8
9