OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lobits
(Results
1 - 3
of
3
) sorted by null
/frameworks/compile/libbcc/runtime/lib/ppc/
fixunstfdi.c
30
const doublebits
lobits
= { .d = x.s.lo };
local
31
int64_t tailMantissa =
lobits
.x & INT64_C(0x000fffffffffffff);
36
const int64_t negationMask = ((int64_t)(
lobits
.x)) >> 63;
41
const int biasedTailExponent = (int)(
lobits
.x >> 52) & 0x7ff;
fixtfdi.c
35
const doublebits
lobits
= { .d = x.s.lo };
local
36
int64_t tailMantissa =
lobits
.x & INT64_C(0x000fffffffffffff);
41
const int64_t loNegationMask = ((int64_t)(
lobits
.x)) >> 63;
47
const int biasedTailExponent = (int)(
lobits
.x >> 52) & 0x7ff;
82
const doublebits
lobits
= { .d = x.s.lo };
local
83
int64_t tailMantissa =
lobits
.x & INT64_C(0x000fffffffffffff);
90
const int biasedTailExponent = (int)(
lobits
.x >> 52) & 0x7ff;
/external/llvm/lib/Support/
APInt.cpp
772
///
LoBits
- This function returns the low "numBits" bits of this APInt.
999
uint64_t
lobits
= Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD);
1000
mantissa = hibits |
lobits
;
[
all
...]
Completed in 238 milliseconds