OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:float64
(Results
1 - 11
of
11
) sorted by relevancy
/src/lib/libc/arch/aarch64/softfloat/
softfloat.h
58
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
129
float64
int32_to_float64( int32 );
130
float64
uint32_to_float64( uint32 );
140
float64
int64_to_float64( long long );
158
float64
float32_to_float64( float32 );
191
int float64_to_int32(
float64
);
192
int float64_to_int32_round_to_zero(
float64
);
193
unsigned int float64_to_uint32_round_to_zero(
float64
);
194
long long float64_to_int64(
float64
);
195
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/lib/libc/arch/arm/softfloat/
softfloat.h
56
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
123
float64
int32_to_float64( int32 );
124
float64
uint32_to_float64( uint32 );
135
float64
int64_to_float64( long long );
158
float64
float32_to_float64( float32 );
193
int float64_to_int32(
float64
);
194
int float64_to_int32_round_to_zero(
float64
);
196
unsigned int float64_to_uint32_round_to_zero(
float64
);
199
long long float64_to_int64(
float64
);
200
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/lib/libc/arch/mips/softfloat/
softfloat.h
57
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
124
float64
int32_to_float64( int32 );
125
float64
uint32_to_float64( uint32 );
136
float64
int64_to_float64( long long );
159
float64
float32_to_float64( float32 );
194
int float64_to_int32(
float64
);
195
int float64_to_int32_round_to_zero(
float64
);
197
unsigned int float64_to_uint32_round_to_zero(
float64
);
200
long long float64_to_int64(
float64
);
201
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/lib/libc/arch/or1k/softfloat/
softfloat.h
55
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
122
float64
int32_to_float64( int32 );
123
float64
uint32_to_float64( uint32 );
133
float64
int64_to_float64( long long );
151
float64
float32_to_float64( float32 );
186
int float64_to_int32(
float64
);
187
int float64_to_int32_round_to_zero(
float64
);
188
unsigned int float64_to_uint32_round_to_zero(
float64
);
189
long long float64_to_int64(
float64
);
190
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/lib/libc/arch/powerpc/softfloat/
softfloat.h
55
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
122
float64
int32_to_float64( int32 );
123
float64
uint32_to_float64( uint32 );
133
float64
int64_to_float64( long long );
151
float64
float32_to_float64( float32 );
186
int float64_to_int32(
float64
);
187
int float64_to_int32_round_to_zero(
float64
);
188
unsigned int float64_to_uint32_round_to_zero(
float64
);
189
long long float64_to_int64(
float64
);
190
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/lib/libc/arch/sh3/softfloat/
softfloat.h
55
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
122
float64
int32_to_float64( int32 );
123
float64
uint32_to_float64( uint32 );
134
float64
int64_to_float64( long long );
157
float64
float32_to_float64( float32 );
192
int float64_to_int32(
float64
);
193
int float64_to_int32_round_to_zero(
float64
);
195
unsigned int float64_to_uint32_round_to_zero(
float64
);
198
long long float64_to_int64(
float64
);
199
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/lib/libc/arch/sparc64/softfloat/
softfloat.h
57
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
124
float64
int32_to_float64( int32 );
125
float64
uint32_to_float64( uint32 );
135
float64
int64_to_float64( long long );
153
float64
float32_to_float64( float32 );
186
int float64_to_int32(
float64
);
187
int float64_to_int32_round_to_zero(
float64
);
188
unsigned int float64_to_uint32_round_to_zero(
float64
);
189
long long float64_to_int64(
float64
);
190
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/regress/lib/libc/ieeefp/testfloat/include/
softfloat.h
86
typedef uint64_t
float64
;
typedef in typeref:typename:uint64_t
156
float64
int32_to_float64( int );
165
float64
int64_to_float64( int64_t );
185
float64
float32_to_float64( float32 );
220
int float64_to_int32(
float64
);
221
int float64_to_int32_round_to_zero(
float64
);
223
int64_t float64_to_int64(
float64
);
224
int64_t float64_to_int64_round_to_zero(
float64
);
226
float32 float64_to_float32(
float64
);
228
floatx80 float64_to_floatx80(
float64
);
[
all
...]
/src/sys/lib/libkern/
softfloat.h
83
typedef u_int64_t
float64
;
typedef in typeref:typename:u_int64_t
155
float64
int32_to_float64( int );
164
float64
int64_to_float64( int64_t );
182
float64
float32_to_float64( float32 );
213
int float64_to_int32(
float64
);
214
int float64_to_int32_round_to_zero(
float64
);
216
int64_t float64_to_int64(
float64
);
217
uint64_t float64_to_uint64(
float64
);
218
int64_t float64_to_int64_round_to_zero(
float64
);
220
float32 float64_to_float32(
float64
);
[
all
...]
/src/lib/libc/arch/m68k/softfloat/
softfloat.h
57
typedef unsigned long long
float64
;
typedef in typeref:typename:unsigned long long
126
float64
int32_to_float64( int32 );
127
float64
uint32_to_float64( uint32 );
137
float64
int64_to_float64( long long );
155
float64
float32_to_float64( float32 );
190
int float64_to_int32(
float64
);
191
int float64_to_int32_round_to_zero(
float64
);
192
unsigned int float64_to_uint32_round_to_zero(
float64
);
193
long long float64_to_int64(
float64
);
194
long long float64_to_int64_round_to_zero(
float64
);
[
all
...]
/src/lib/libc/softfloat/templates/
softfloat.h
50
typedef !!!bits64
float64
;
typedef in typeref:typename:!!!bits64
115
float64
int32_to_float64( !!!int32 );
123
float64
int64_to_float64( !!!int64 );
140
float64
float32_to_float64( float32 );
173
!!!int32 float64_to_int32(
float64
);
174
!!!int32 float64_to_int32_round_to_zero(
float64
);
175
!!!int64 float64_to_int64(
float64
);
176
!!!int64 float64_to_int64_round_to_zero(
float64
);
177
float32 float64_to_float32(
float64
);
179
floatx80 float64_to_floatx80(
float64
);
[
all
...]
Completed in 15 milliseconds
Indexes created Sun Sep 21 19:09:51 GMT 2025