OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:floatBits
(Results
1 - 7
of
7
) sorted by null
/prebuilts/go/darwin-x86/src/strconv/
atof.go
258
func (d *decimal)
floatBits
(flt *floatInfo) (b uint64, overflow bool) {
456
b, ovf := ext.
floatBits
(&float32info)
469
b, ovf := d.
floatBits
(&float32info)
495
b, ovf := ext.
floatBits
(&float64info)
508
b, ovf := d.
floatBits
(&float64info)
extfloat.go
125
//
floatBits
returns the bits of the float64 that best approximates
128
func (f *extFloat)
floatBits
(flt *floatInfo) (bits uint64, overflow bool) {
/prebuilts/go/linux-x86/src/strconv/
atof.go
258
func (d *decimal)
floatBits
(flt *floatInfo) (b uint64, overflow bool) {
456
b, ovf := ext.
floatBits
(&float32info)
469
b, ovf := d.
floatBits
(&float32info)
495
b, ovf := ext.
floatBits
(&float64info)
508
b, ovf := d.
floatBits
(&float64info)
extfloat.go
125
//
floatBits
returns the bits of the float64 that best approximates
128
func (f *extFloat)
floatBits
(flt *floatInfo) (bits uint64, overflow bool) {
/prebuilts/go/darwin-x86/src/encoding/gob/
encode.go
204
//
floatBits
returns a uint64 holding the bits of a floating-point number.
210
func
floatBits
(f float64) uint64 {
219
bits :=
floatBits
(f)
230
rpart :=
floatBits
(real(c))
231
ipart :=
floatBits
(imag(c))
/prebuilts/go/linux-x86/src/encoding/gob/
encode.go
204
//
floatBits
returns a uint64 holding the bits of a floating-point number.
210
func
floatBits
(f float64) uint64 {
219
bits :=
floatBits
(f)
230
rpart :=
floatBits
(real(c))
231
ipart :=
floatBits
(imag(c))
/libcore/ojluni/src/main/java/sun/misc/
FloatingDecimal.java
[
all
...]
Completed in 437 milliseconds