Home | History | Annotate | Download | only in ken

Lines Matching defs:recv

26 	sc, rc chan int // send and recv chan
27 sv, rv int // send and recv seq
103 func (c *Chan) recv(v int) bool {
104 // print("recv ", v, "\n");
116 func recv(c *Chan) {
124 if c.recv(v) {
168 if r0.recv(v) {
172 if r1.recv(v) {
176 if r2.recv(v) {
180 if r3.recv(v) {
207 // direct send to direct recv
211 go recv(c)
214 // direct send to select recv
228 // select send to direct recv
233 go recv(ca[0])
234 go recv(ca[1])
235 go recv(ca[2])
236 go recv(ca[3])
242 // select send to select recv
269 go recv(ca[8])
270 go recv(ca[9])
271 go recv(ca[10])
272 go recv(ca[11])