OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:zSig
(Results
1 - 3
of
3
) sorted by relevancy
/src/lib/libc/softfloat/bits32/
softfloat.c
169
Packs the sign `zSign', exponent `zExp', and significand `
zSig
' into a
172
together to form the result. This means that any integer portion of `
zSig
'
175
than the desired result exponent whenever `
zSig
' is a complete, normalized
179
INLINE float32 packFloat32( flag zSign, int16 zExp, bits32
zSig
)
182
return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) +
zSig
;
189
and significand `
zSig
', and returns the proper single-precision floating-
199
The input significand `
zSig
' has its binary point between bits 30
201
significand must be normalized or smaller. If `
zSig
' is not normalized,
203
and it must not require rounding. In the usual case that `
zSig
' is
209
static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32
zSig
)
[
all
...]
/src/sys/lib/libkern/
softfloat.c
281
| Packs the sign `zSign', exponent `zExp', and significand `
zSig
' into a
284
| together to form the result. This means that any integer portion of `
zSig
'
287
| than the desired result exponent whenever `
zSig
' is a complete, normalized
291
INLINE float32 packFloat32( flag zSign, int16 zExp, bits32
zSig
)
294
return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) +
zSig
;
300
| and significand `
zSig
', and returns the proper single-precision floating-
310
| The input significand `
zSig
' has its binary point between bits 30
312
| significand must be normalized or smaller. If `
zSig
' is not normalized,
314
| and it must not require rounding. In the usual case that `
zSig
' is
320
static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32
zSig
)
[
all
...]
/src/lib/libc/softfloat/bits64/
softfloat.c
275
Packs the sign `zSign', exponent `zExp', and significand `
zSig
' into a
278
together to form the result. This means that any integer portion of `
zSig
'
281
than the desired result exponent whenever `
zSig
' is a complete, normalized
285
INLINE float32 packFloat32( flag zSign, int16 zExp, bits32
zSig
)
288
return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) +
zSig
;
295
and significand `
zSig
', and returns the proper single-precision floating-
305
The input significand `
zSig
' has its binary point between bits 30
307
significand must be normalized or smaller. If `
zSig
' is not normalized,
309
and it must not require rounding. In the usual case that `
zSig
' is
315
static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32
zSig
)
[
all
...]
Completed in 13 milliseconds
Indexes created Wed Oct 01 07:09:59 GMT 2025