HomeSort by relevance Sort by last modified time
    Searched defs:MinPrec (Results 1 - 2 of 2) sorted by null

  /prebuilts/go/darwin-x86/src/math/big/
float.go 205 // MinPrec returns the minimum precision required to represent x exactly
208 func (x *Float) MinPrec() uint {
348 return x.prec <= uint32(x.exp) || x.MinPrec() <= uint(x.exp) // not enough bits for fractional mantissa
741 if x.MinPrec() <= 64 {
789 if x.MinPrec() <= uint(x.exp) {
796 if x.exp == 64 && x.MinPrec() == 1 {
1086 if x.MinPrec() <= exp {
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
float.go 205 // MinPrec returns the minimum precision required to represent x exactly
208 func (x *Float) MinPrec() uint {
348 return x.prec <= uint32(x.exp) || x.MinPrec() <= uint(x.exp) // not enough bits for fractional mantissa
741 if x.MinPrec() <= 64 {
789 if x.MinPrec() <= uint(x.exp) {
796 if x.exp == 64 && x.MinPrec() == 1 {
1086 if x.MinPrec() <= exp {
    [all...]

Completed in 86 milliseconds