OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:floatx80
(Results
1 - 6
of
6
) sorted by null
/external/qemu/fpu/
softfloat-native.h
91
#ifdef
FLOATX80
92
typedef long double
floatx80
;
typedef
103
#ifdef
FLOATX80
105
floatx80
f;
140
#ifdef
FLOATX80
146
#ifdef
FLOATX80
157
#ifdef
FLOATX80
158
floatx80
int32_to_floatx80( int STATUS_PARAM);
167
#ifdef
FLOATX80
168
floatx80
int64_to_floatx80( int64_t STATUS_PARAM)
[
all
...]
softfloat.h
78
| The macro `
FLOATX80
' must be defined to enable the extended double-precision
79
| floating-point format `
floatx80
'. If this macro is not defined, the
80
| `
floatx80
' type will not be defined, and none of the functions that either
81
| input or output the `
floatx80
' type will be defined. The same applies to
86
#define
FLOATX80
91
#define
FLOATX80
152
#ifdef
FLOATX80
156
}
floatx80
;
typedef in typeref:struct:__anon27028
157
#define make_floatx80(exp, mant) ((
floatx80
) { mant, exp })
204
#ifdef
FLOATX80
[
all
...]
softfloat-native.c
20
#ifdef
FLOATX80
100
#ifdef
FLOATX80
101
floatx80
int32_to_floatx80(int v STATUS_PARAM)
103
return (
floatx80
)v;
122
#ifdef
FLOATX80
123
floatx80
int64_to_floatx80( int64_t v STATUS_PARAM)
125
return (
floatx80
)v;
169
#ifdef
FLOATX80
170
floatx80
float32_to_floatx80( float32 a STATUS_PARAM)
298
#ifdef
FLOATX80
[
all
...]
softfloat-specialize.h
526
#ifdef
FLOATX80
531
| function for other types as
floatx80
has an explicit bit.
534
int floatx80_is_quiet_nan(
floatx80
a )
553
| function for other types as
floatx80
has an explicit bit.
556
int floatx80_is_signaling_nan(
floatx80
a )
577
floatx80
floatx80_maybe_silence_nan(
floatx80
a )
601
static commonNaNT floatx80ToCommonNaN(
floatx80
a STATUS_PARAM)
623
static
floatx80
commonNaNToFloatx80( commonNaNT a STATUS_PARAM)
625
floatx80
z
[
all
...]
softfloat.c
67
#ifdef
FLOATX80
567
#ifdef
FLOATX80
574
INLINE uint64_t extractFloatx80Frac(
floatx80
a )
586
INLINE int32 extractFloatx80Exp(
floatx80
a )
598
INLINE flag extractFloatx80Sign(
floatx80
a )
628
INLINE
floatx80
packFloatx80( flag zSign, int32 zExp, uint64_t zSig )
630
floatx80
z;
662
static
floatx80
[
all
...]
/external/qemu/target-i386/
cpu.h
497
#ifdef
FLOATX80
502
typedef
floatx80
CPU86_LDouble;
Completed in 2380 milliseconds