OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:absMask
(Results
1 - 8
of
8
) sorted by null
/external/compiler-rt/lib/builtins/
comparedf2.c
55
const rep_t aAbs = aInt &
absMask
;
56
const rep_t bAbs = bInt &
absMask
;
100
const rep_t aAbs = aInt &
absMask
;
101
const rep_t bAbs = bInt &
absMask
;
120
const rep_t aAbs = toRep(a) &
absMask
;
121
const rep_t bAbs = toRep(b) &
absMask
;
comparesf2.c
55
const rep_t aAbs = aInt &
absMask
;
56
const rep_t bAbs = bInt &
absMask
;
100
const rep_t aAbs = aInt &
absMask
;
101
const rep_t bAbs = bInt &
absMask
;
120
const rep_t aAbs = toRep(a) &
absMask
;
121
const rep_t bAbs = toRep(b) &
absMask
;
comparetf2.c
55
const rep_t aAbs = aInt &
absMask
;
56
const rep_t bAbs = bInt &
absMask
;
98
const rep_t aAbs = aInt &
absMask
;
99
const rep_t bAbs = bInt &
absMask
;
115
const rep_t aAbs = toRep(a) &
absMask
;
116
const rep_t bAbs = toRep(b) &
absMask
;
divdf3.c
38
const rep_t aAbs = toRep(a) &
absMask
;
39
const rep_t bAbs = toRep(b) &
absMask
;
divsf3.c
38
const rep_t aAbs = toRep(a) &
absMask
;
39
const rep_t bAbs = toRep(b) &
absMask
;
divtf3.c
36
const rep_t aAbs = toRep(a) &
absMask
;
37
const rep_t bAbs = toRep(b) &
absMask
;
fp_lib.h
224
#define
absMask
(signBit - 1U)
225
#define exponentMask (
absMask
^ significandMask)
/external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c
1108
unsigned long long
absMask
= ~(1ULL << (type.width - 1));
1109
LLVMValueRef mask = lp_build_const_int_vec(bld->gallivm, type, ((unsigned long long)
absMask
));
[
all
...]
Completed in 489 milliseconds