OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shiftop
(Results
1 - 2
of
2
) sorted by null
/prebuilts/go/darwin-x86/test/fixedbugs/
issue9604b.go
109
type
shiftop
struct {
type
114
var shiftops = []
shiftop
{
115
shiftop
{"<<", func(x *big.Int, i uint) *big.Int { return new(big.Int).Lsh(x, i) }},
116
shiftop
{">>", func(x *big.Int, i uint) *big.Int { return new(big.Int).Rsh(x, i) }},
/prebuilts/go/linux-x86/test/fixedbugs/
issue9604b.go
109
type
shiftop
struct {
type
114
var shiftops = []
shiftop
{
115
shiftop
{"<<", func(x *big.Int, i uint) *big.Int { return new(big.Int).Lsh(x, i) }},
116
shiftop
{">>", func(x *big.Int, i uint) *big.Int { return new(big.Int).Rsh(x, i) }},
Completed in 547 milliseconds