OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aExp
(Results
1 - 6
of
6
) sorted by relevancy
/src/lib/libc/softfloat/bits64/
softfloat.c
1395
int16
aExp
, shiftCount;
1400
aExp
= extractFloat32Exp( a );
1402
if ( (
aExp
== 0xFF ) && aSig ) aSign = 0;
1403
if (
aExp
) aSig |= 0x00800000;
1404
shiftCount = 0xAF -
aExp
;
1427
int16
aExp
, shiftCount;
1432
aExp
= extractFloat32Exp( a );
1434
shiftCount =
aExp
- 0x9E;
1438
if ( ! aSign || ( (
aExp
== 0xFF ) && aSig ) ) return 0x7FFFFFFF;
1442
else if (
aExp
<= 0x7E )
[
all
...]
softfloat-macros
589
`
aExp
' (the least significant bit) is 1, the integer returned approximates
590
2^31*sqrt(`a'/2^31), where `a' is considered an integer. If bit 0 of `
aExp
'
596
static bits32 estimateSqrt32( int16
aExp
, bits32 a )
610
if (
aExp
& 1 ) {
/src/sys/lib/libkern/
softfloat.c
1321
int16
aExp
, shiftCount;
1326
aExp
= extractFloat32Exp( a );
1328
if ( (
aExp
== 0xFF ) && aSig ) aSign = 0;
1329
if (
aExp
) aSig |= 0x00800000;
1330
shiftCount = 0xAF -
aExp
;
1352
int16
aExp
, shiftCount;
1357
aExp
= extractFloat32Exp( a );
1359
shiftCount =
aExp
- 0x9E;
1363
if ( ! aSign || ( (
aExp
== 0xFF ) && aSig ) ) return 0x7FFFFFFF;
1367
else if (
aExp
<= 0x7E )
[
all
...]
softfloat-macros.h
566
| `
aExp
' (the least significant bit) is 1, the integer returned approximates
567
| 2^31*sqrt(`a'/2^31), where `a' is considered an integer. If bit 0 of `
aExp
'
573
static bits32 estimateSqrt32( int16
aExp
, bits32 a )
587
if (
aExp
& 1 ) {
/src/lib/libc/softfloat/bits32/
softfloat.c
592
int16
aExp
, shiftCount;
598
aExp
= extractFloat32Exp( a );
600
shiftCount =
aExp
- 0x96;
602
if ( 0x9E <=
aExp
) {
605
if ( ! aSign || ( (
aExp
== 0xFF ) && aSig ) ) {
615
if (
aExp
< 0x7E ) {
616
aSigExtra =
aExp
| aSig;
663
int16
aExp
, shiftCount;
668
aExp
= extractFloat32Exp( a );
670
shiftCount =
aExp
- 0x9E
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
fp_trunc_impl.inc
110
const int
aExp
= aAbs >> srcSigBits;
111
const int shift = srcExpBias - dstExpBias -
aExp
+ 1;
Completed in 108 milliseconds
Indexes created Wed Oct 15 03:09:54 GMT 2025