OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SIGN_MASK
(Results
1 - 9
of
9
) sorted by null
/libcore/luni/src/main/java/java/lang/
StrictMath.java
[
all
...]
Math.java
[
all
...]
RealToString.java
68
boolean positive = (inputNumberBits & Double.
SIGN_MASK
) == 0;
135
boolean positive = (inputNumberBits & Float.
SIGN_MASK
) == 0;
Double.java
33
static final long
SIGN_MASK
= 0x8000000000000000L;
Float.java
33
static final int
SIGN_MASK
= 0x80000000;
/libcore/luni/src/main/native/
cbigint.cpp
90
#define
SIGN_MASK
(0x8000000000000000LL)
96
#define
SIGN_MASK
(0x8000000000000000L)
101
#define
SIGN_MASK
(0x8000000000000000)
625
if (test64 >
SIGN_MASK
|| ((test64 ==
SIGN_MASK
) && (mantissa & 1)))
627
else if (test64 ==
SIGN_MASK
)
/external/qemu/target-i386/
helper_template.h
22
#define
SIGN_MASK
(((target_ulong)1) << (DATA_BITS - 1))
181
of = ((CC_DST & DATA_MASK) ==
SIGN_MASK
) << 11;
203
of = ((CC_DST & DATA_MASK) == ((target_ulong)
SIGN_MASK
- 1)) << 11;
331
#undef
SIGN_MASK
/external/valgrind/main/VEX/priv/
guest_amd64_helpers.c
174
/* const */ ULong
SIGN_MASK
= 1ULL << (__data_bits - 1); \
181
SIGN_MASK
=
SIGN_MASK
; \
310
of = ((res & DATA_MASK) ==
SIGN_MASK
) << 11; \
331
== ((ULong)
SIGN_MASK
- 1)) << 11; \
[
all
...]
guest_x86_helpers.c
132
/* const */ UInt
SIGN_MASK
= 1 << (__data_bits - 1); \
139
SIGN_MASK
=
SIGN_MASK
; \
268
of = ((res & DATA_MASK) ==
SIGN_MASK
) << 11; \
289
== ((UInt)
SIGN_MASK
- 1)) << 11; \
[
all
...]
Completed in 377 milliseconds