OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newRat
(Results
1 - 2
of
2
) sorted by null
/prebuilts/go/darwin-x86/src/go/constant/
value.go
191
func
newRat
() *big.Rat { return new(big.Rat) }
195
func i64tor(x int64Val) ratVal { return ratVal{
newRat
().SetInt64(int64(x))} }
197
func itor(x intVal) ratVal { return ratVal{
newRat
().SetInt(x.val)} }
255
r, _ :=
newRat
().SetString(lit)
307
return ratVal{
newRat
().SetFloat64(x)}
807
return makeRat(
newRat
().Neg(y.val))
985
return makeRat(big.
NewRat
(a, b))
1015
return makeRat(
newRat
().SetFrac(a, b))
1036
c :=
newRat
()
/prebuilts/go/linux-x86/src/go/constant/
value.go
191
func
newRat
() *big.Rat { return new(big.Rat) }
195
func i64tor(x int64Val) ratVal { return ratVal{
newRat
().SetInt64(int64(x))} }
197
func itor(x intVal) ratVal { return ratVal{
newRat
().SetInt(x.val)} }
255
r, _ :=
newRat
().SetString(lit)
307
return ratVal{
newRat
().SetFloat64(x)}
807
return makeRat(
newRat
().Neg(y.val))
985
return makeRat(big.
NewRat
(a, b))
1015
return makeRat(
newRat
().SetFrac(a, b))
1036
c :=
newRat
()
Completed in 418 milliseconds