OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:implicitBit
(Results
1 - 15
of
15
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatsisf.c
44
result = (rep_t)a << shift ^
implicitBit
;
47
result = (rep_t)a >> shift ^
implicitBit
;
floatunsisf.c
36
result = (rep_t)a << shift ^
implicitBit
;
39
result = (rep_t)a >> shift ^
implicitBit
;
floatunditf.c
33
result = (rep_t)a << shift ^
implicitBit
;
floatunsitf.c
33
result = (rep_t)a << shift ^
implicitBit
;
divsf3.c
66
if (aAbs <
implicitBit
) scale += normalize(&aSignificand);
67
if (bAbs <
implicitBit
) scale -= normalize(&bSignificand);
73
aSignificand |=
implicitBit
;
74
bSignificand |=
implicitBit
;
135
if (quotient < (
implicitBit
<< 1)) {
floatditf.c
42
result = (rep_t)aAbs << shift ^
implicitBit
;
floatsidf.c
45
result = (rep_t)(unsigned int)a << shift ^
implicitBit
;
floatsitf.c
42
result = (rep_t)aAbs << shift ^
implicitBit
;
floatunsidf.c
35
result = (rep_t)a << shift ^
implicitBit
;
divdf3.c
66
if (aAbs <
implicitBit
) scale += normalize(&aSignificand);
67
if (bAbs <
implicitBit
) scale -= normalize(&bSignificand);
73
aSignificand |=
implicitBit
;
74
bSignificand |=
implicitBit
;
150
if (quotient < (
implicitBit
<< 1)) {
divtf3.c
66
if (aAbs <
implicitBit
) scale += normalize(&aSignificand);
67
if (bAbs <
implicitBit
) scale -= normalize(&bSignificand);
73
aSignificand |=
implicitBit
;
74
bSignificand |=
implicitBit
;
168
if (quotient < (
implicitBit
<< 1)) {
fp_fixint_impl.inc
25
const rep_t significand = (aAbs & significandMask) |
implicitBit
;
fp_fixuint_impl.inc
23
const rep_t significand = (aAbs & significandMask) |
implicitBit
;
fp_mul_impl.inc
59
if (aAbs <
implicitBit
) scale += normalize(&aSignificand);
60
if (bAbs <
implicitBit
) scale += normalize(&bSignificand);
66
aSignificand |=
implicitBit
;
67
bSignificand |=
implicitBit
;
81
if (productHi &
implicitBit
) productExponent++;
fp_lib.h
221
#define
implicitBit
(REP_C(1) << significandBits)
222
#define significandMask (
implicitBit
- 1U)
228
#define quietBit (
implicitBit
>> 1)
242
const int shift = rep_clz(*significand) - rep_clz(
implicitBit
);
Completed in 62 milliseconds
Indexes created Mon Sep 29 03:10:08 GMT 2025