OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:signBit
(Results
1 - 18
of
18
) sorted by null
/external/compiler-rt/lib/
negdf2.c
20
return fromRep(toRep(a) ^
signBit
);
negsf2.c
21
return fromRep(toRep(a) ^
signBit
);
floatsisf.c
34
sign =
signBit
;
50
if (round >
signBit
) result++;
51
if (round ==
signBit
) result += result & 1;
floatunsisf.c
42
if (round >
signBit
) result++;
43
if (round ==
signBit
) result += result & 1;
subdf3.c
26
return __adddf3(a, fromRep(toRep(b) ^
signBit
));
subsf3.c
25
return __addsf3(a, fromRep(toRep(b) ^
signBit
));
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
;
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;
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
;
fp_lib.h
98
#define
signBit
(REP_C(1) << (significandBits + exponentBits))
99
#define absMask (
signBit
- 1U)
divdf3.c
28
const rep_t quotientSign = (toRep(a) ^ toRep(b)) &
signBit
;
divsf3.c
28
const rep_t quotientSign = (toRep(a) ^ toRep(b)) &
signBit
;
/external/clang/test/CodeGen/
struct-init.c
30
const uint32x2_t
signBit
= { (uint2) 0x80000000 };
/external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp
415
uint32_t
signBit
= (offset & 0x800000) >> 23;
417
uint32_t J1Bit = (I1Bit ^ 0x1) ^
signBit
;
419
uint32_t J2Bit = (I2Bit ^ 0x1) ^
signBit
;
424
uint32_t firstHalf = (((uint16_t)
signBit
<< 10) | (uint16_t)imm10Bits);
446
uint32_t
signBit
= (offset & 0x400000) >> 22;
448
uint32_t J1Bit = (I1Bit ^ 0x1) ^
signBit
;
450
uint32_t J2Bit = (I2Bit ^ 0x1) ^
signBit
;
455
uint32_t firstHalf = (((uint16_t)
signBit
<< 10) | (uint16_t)imm10HBits);
Completed in 156 milliseconds