Home
last modified time | relevance | path

Searched refs:intImpl (Results 1 – 3 of 3) sorted by relevance

/external/starlark-go/starlark/
Dint_generic.go10 type intImpl struct { struct
28 return Int{intImpl{small_: x}}
33 return Int{intImpl{big_: x}}
Dint_posix64.go38 type intImpl unsafe.Pointer type
51 return Int{intImpl(uintptr(x-math.MinInt32) + smallints)}
55 func makeBigInt(x *big.Int) Int { return Int{intImpl(x)} }
Dint.go20 type Int struct{ impl intImpl }