HomeSort by relevance Sort by last modified time
    Searched refs:Chan (Results 26 - 50 of 91) sorted by null

12 3 4

  /external/llvm/lib/Target/AMDGPU/
R600InstrInfo.cpp 373 unsigned Chan = RI.getHWRegChan(Reg);
374 Result.push_back(std::make_pair(Index, Chan));
639 unsigned Chan = RI.getHWRegChan(Src.first->getReg());
640 Consts.push_back((Index << 2) | Chan);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 278 // chan Elem
279 // <-chan Elem
280 // chan<- Elem
335 Chan, Value Expr // Chan <- Value
  /prebuilts/go/darwin-x86/src/go/types/
typestring.go 192 case *Chan:
197 s = "chan "
198 // chan (<-chan T) requires parentheses
199 if c, _ := t.elem.(*Chan); c != nil && c.dir == RecvOnly {
203 s = "chan<- "
205 s = "<-chan "
builtins.go 164 case *Slice, *Chan:
187 c, _ := x.typ.Underlying().(*Chan)
430 case *Map, *Chan:
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
nodes.go 278 // chan Elem
279 // <-chan Elem
280 // chan<- Elem
335 Chan, Value Expr // Chan <- Value
  /prebuilts/go/linux-x86/src/go/types/
typestring.go 192 case *Chan:
197 s = "chan "
198 // chan (<-chan T) requires parentheses
199 if c, _ := t.elem.(*Chan); c != nil && c.dir == RecvOnly {
203 s = "chan<- "
205 s = "<-chan "
builtins.go 164 case *Slice, *Chan:
187 c, _ := x.typ.Underlying().(*Chan)
430 case *Map, *Chan:
  /prebuilts/go/darwin-x86/src/cmd/vet/
cgo.go 9 // Specifically, it warns about attempts to pass a Go chan, map, func,
122 case *types.Chan, *types.Map, *types.Signature, *types.Slice:
types.go 93 // (Recursion arises from the compound types {map,chan,slice} which
142 case *types.Chan:
  /prebuilts/go/linux-x86/src/cmd/vet/
cgo.go 9 // Specifically, it warns about attempts to pass a Go chan, map, func,
122 case *types.Chan, *types.Map, *types.Signature, *types.Slice:
types.go 93 // (Recursion arises from the compound types {map,chan,slice} which
142 case *types.Chan:
  /prebuilts/go/darwin-x86/src/reflect/
all_test.go 76 {struct{ x (chan<- string) }{}, "chan<- string"},
79 c chan *int32
83 "struct { c chan *int32; d float32 }",
88 c func(chan *integer, *int8)
91 "struct { c func(chan *reflect_test.integer, *int8) }",
196 {new(chan<- string), "chan<- string"},
199 c chan *int32
202 "struct { c chan *int32; d float32 }{chan *int32, 0}"
    [all...]
type.go 110 // Chan: ChanDir, Elem
123 // It panics if the type's Kind is not Chan.
141 // It panics if the type's Kind is not Array, Chan, Map, Ptr, or Slice.
244 Chan
340 RecvDir ChanDir = 1 << iota // <-chan
341 SendDir // chan<-
342 BothDir = RecvDir | SendDir // chan
355 rtype `reflect:"chan"`
616 Chan: "chan",
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
all_test.go 76 {struct{ x (chan<- string) }{}, "chan<- string"},
79 c chan *int32
83 "struct { c chan *int32; d float32 }",
88 c func(chan *integer, *int8)
91 "struct { c func(chan *reflect_test.integer, *int8) }",
196 {new(chan<- string), "chan<- string"},
199 c chan *int32
202 "struct { c chan *int32; d float32 }{chan *int32, 0}"
    [all...]
type.go 110 // Chan: ChanDir, Elem
123 // It panics if the type's Kind is not Chan.
141 // It panics if the type's Kind is not Array, Chan, Map, Ptr, or Slice.
244 Chan
340 RecvDir ChanDir = 1 << iota // <-chan
341 SendDir // chan<-
342 BothDir = RecvDir | SendDir // chan
355 rtype `reflect:"chan"`
616 Chan: "chan",
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
print.go 24 case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice:
walk.go 199 Walk(v, n.Chan)
  /prebuilts/go/darwin-x86/src/text/template/
exec.go 296 case reflect.Chan, reflect.Func, reflect.Ptr, reflect.Interface:
347 case reflect.Chan:
684 case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice:
923 case reflect.Chan, reflect.Func:
  /prebuilts/go/linux-x86/src/go/ast/
print.go 24 case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice:
walk.go 199 Walk(v, n.Chan)
  /prebuilts/go/linux-x86/src/text/template/
exec.go 296 case reflect.Chan, reflect.Func, reflect.Ptr, reflect.Interface:
347 case reflect.Chan:
684 case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice:
923 case reflect.Chan, reflect.Func:
  /prebuilts/go/darwin-x86/src/runtime/
select.go 39 c *hchan // chan
100 print("selectsend s=", sel, " pc=", hex(cas.pc), " chan=", cas.c, " so=", cas.so, "\n")
137 print("selectrecv s=", sel, " pc=", hex(cas.pc), " chan=", cas.c, " so=", cas.so, "\n")
681 selectSend // case Chan <- Send
682 selectRecv // case <-Chan:
  /prebuilts/go/linux-x86/src/runtime/
select.go 39 c *hchan // chan
100 print("selectsend s=", sel, " pc=", hex(cas.pc), " chan=", cas.c, " so=", cas.so, "\n")
137 print("selectrecv s=", sel, " pc=", hex(cas.pc), " chan=", cas.c, " so=", cas.so, "\n")
681 selectSend // case Chan <- Send
682 selectRecv // case <-Chan:
  /prebuilts/go/darwin-x86/src/encoding/gob/
encoder.go 163 case reflect.Chan, reflect.Func:
  /prebuilts/go/linux-x86/src/encoding/gob/
encoder.go 163 case reflect.Chan, reflect.Func:

Completed in 502 milliseconds

12 3 4