OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:babs
(Results
1 - 21
of
21
) sorted by null
/external/compiler-rt/lib/builtins/
comparedf2.c
56
const rep_t
bAbs
= bInt & absMask;
59
if (aAbs > infRep ||
bAbs
> infRep) return LE_UNORDERED;
62
if ((aAbs |
bAbs
) == 0) return LE_EQUAL;
101
const rep_t
bAbs
= bInt & absMask;
103
if (aAbs > infRep ||
bAbs
> infRep) return GE_UNORDERED;
104
if ((aAbs |
bAbs
) == 0) return GE_EQUAL;
121
const rep_t
bAbs
= toRep(b) & absMask;
122
return aAbs > infRep ||
bAbs
> infRep;
comparesf2.c
56
const rep_t
bAbs
= bInt & absMask;
59
if (aAbs > infRep ||
bAbs
> infRep) return LE_UNORDERED;
62
if ((aAbs |
bAbs
) == 0) return LE_EQUAL;
101
const rep_t
bAbs
= bInt & absMask;
103
if (aAbs > infRep ||
bAbs
> infRep) return GE_UNORDERED;
104
if ((aAbs |
bAbs
) == 0) return GE_EQUAL;
121
const rep_t
bAbs
= toRep(b) & absMask;
122
return aAbs > infRep ||
bAbs
> infRep;
comparetf2.c
56
const rep_t
bAbs
= bInt & absMask;
59
if (aAbs > infRep ||
bAbs
> infRep) return LE_UNORDERED;
62
if ((aAbs |
bAbs
) == 0) return LE_EQUAL;
99
const rep_t
bAbs
= bInt & absMask;
101
if (aAbs > infRep ||
bAbs
> infRep) return GE_UNORDERED;
102
if ((aAbs |
bAbs
) == 0) return GE_EQUAL;
116
const rep_t
bAbs
= toRep(b) & absMask;
117
return aAbs > infRep ||
bAbs
> infRep;
fp_add_impl.inc
21
const rep_t
bAbs
= bRep & absMask;
25
bAbs
- REP_C(1) >= infRep - REP_C(1)) {
29
if (
bAbs
> infRep) return fromRep(toRep(b) | quietBit);
39
if (
bAbs
== infRep) return b;
44
if (!
bAbs
) return fromRep(toRep(a) & toRep(b));
49
if (!
bAbs
) return a;
53
if (
bAbs
> aAbs) {
fp_mul_impl.inc
30
const rep_t
bAbs
= toRep(b) & absMask;
35
if (
bAbs
> infRep) return fromRep(toRep(b) | quietBit);
39
if (
bAbs
) return fromRep(aAbs | productSign);
44
if (
bAbs
== infRep) {
46
if (aAbs) return fromRep(
bAbs
| productSign);
54
if (!
bAbs
) return fromRep(productSign);
60
if (
bAbs
< implicitBit) scale += normalize(&bSignificand);
divdf3.c
39
const rep_t
bAbs
= toRep(b) & absMask;
44
if (
bAbs
> infRep) return fromRep(toRep(b) | quietBit);
48
if (
bAbs
== infRep) return fromRep(qnanRep);
54
if (
bAbs
== infRep) return fromRep(quotientSign);
58
if (!
bAbs
) return fromRep(qnanRep);
63
if (!
bAbs
) return fromRep(infRep | quotientSign);
69
if (
bAbs
< implicitBit) scale -= normalize(&bSignificand);
divsf3.c
39
const rep_t
bAbs
= toRep(b) & absMask;
44
if (
bAbs
> infRep) return fromRep(toRep(b) | quietBit);
48
if (
bAbs
== infRep) return fromRep(qnanRep);
54
if (
bAbs
== infRep) return fromRep(quotientSign);
58
if (!
bAbs
) return fromRep(qnanRep);
63
if (!
bAbs
) return fromRep(infRep | quotientSign);
69
if (
bAbs
< implicitBit) scale -= normalize(&bSignificand);
divtf3.c
37
const rep_t
bAbs
= toRep(b) & absMask;
42
if (
bAbs
> infRep) return fromRep(toRep(b) | quietBit);
46
if (
bAbs
== infRep) return fromRep(qnanRep);
52
if (
bAbs
== infRep) return fromRep(quotientSign);
56
if (!
bAbs
) return fromRep(qnanRep);
61
if (!
bAbs
) return fromRep(infRep | quotientSign);
67
if (
bAbs
< implicitBit) scale -= normalize(&bSignificand);
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
rat.go
300
babs
:= b.abs
301
if len(
babs
) == 0 {
304
if &z.a == b || alias(z.a.abs,
babs
) {
305
babs
= nat(nil).set(
babs
) // make a copy
308
z.b.abs = z.b.abs.set(
babs
)
/prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
rat.go
297
babs
:= b.abs
298
if len(
babs
) == 0 {
301
if &z.a == b || alias(z.a.abs,
babs
) {
302
babs
= nat(nil).set(
babs
) // make a copy
305
z.b.abs = z.b.abs.set(
babs
)
/prebuilts/go/darwin-x86/src/math/big/
rat.go
297
babs
:= b.abs
298
if len(
babs
) == 0 {
301
if &z.a == b || alias(z.a.abs,
babs
) {
302
babs
= nat(nil).set(
babs
) // make a copy
305
z.b.abs = z.b.abs.set(
babs
)
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
rat.go
300
babs
:= b.abs
301
if len(
babs
) == 0 {
304
if &z.a == b || alias(z.a.abs,
babs
) {
305
babs
= nat(nil).set(
babs
) // make a copy
308
z.b.abs = z.b.abs.set(
babs
)
/prebuilts/go/linux-x86/src/cmd/compile/internal/big/
rat.go
297
babs
:= b.abs
298
if len(
babs
) == 0 {
301
if &z.a == b || alias(z.a.abs,
babs
) {
302
babs
= nat(nil).set(
babs
) // make a copy
305
z.b.abs = z.b.abs.set(
babs
)
/prebuilts/go/linux-x86/src/math/big/
rat.go
297
babs
:= b.abs
298
if len(
babs
) == 0 {
301
if &z.a == b || alias(z.a.abs,
babs
) {
302
babs
= nat(nil).set(
babs
) // make a copy
305
z.b.abs = z.b.abs.set(
babs
)
/external/boringssl/src/crypto/curve25519/
curve25519.c
3521
uint8_t
babs
= b - (((-bnegative) & b) << 1);
local
[
all
...]
/prebuilts/sdk/renderscript/lib/x86/
libcompiler_rt.a
[
all
...]
/prebuilts/sdk/renderscript/lib/arm64/
libcompiler_rt.a
223
??? ?*???k@?jJ? ?? T?g? ?N?_?K?w? ?K??k! QJ!?K)A??qk T()L? ql T? 2?2hK??(?K!? ???H%?j??*K J?C?I ?(?? q??? @?)??(?g? ?N?_?????(????Android clang version 3.8.256229 (based on LLVM 3.8.256229) external/compiler-rt/lib/builtins/adddf3.c /proc/self/cwd long unsigned int __uint64_t uint64_t rep_t toRep x double fp_t rep f i __addXf3__ a b aRep bRep aAbs
bAbs