runtime.sudog.parent (field)
30 uses
runtime (current package)
runtime2.go#L375: parent *sudog // semaRoot binary tree
sema.go#L250: s.parent = t.parent
sema.go#L254: s.prev.parent = s
sema.go#L257: s.next.parent = s
sema.go#L265: t.parent = nil
sema.go#L301: s.parent = last
sema.go#L305: for s.parent != nil && s.parent.ticket > s.ticket {
sema.go#L306: if s.parent.prev == s {
sema.go#L307: root.rotateRight(s.parent)
sema.go#L309: if s.parent.next != s {
sema.go#L312: root.rotateLeft(s.parent)
sema.go#L345: t.parent = s.parent
sema.go#L348: t.prev.parent = t
sema.go#L352: t.next.parent = t
sema.go#L372: if s.parent != nil {
sema.go#L373: if s.parent.prev == s {
sema.go#L374: s.parent.prev = nil
sema.go#L376: s.parent.next = nil
sema.go#L382: s.parent = nil
sema.go#L394: p := x.parent
sema.go#L399: x.parent = y
sema.go#L402: b.parent = x
sema.go#L405: y.parent = p
sema.go#L422: p := y.parent
sema.go#L427: y.parent = x
sema.go#L430: b.parent = y
sema.go#L433: x.parent = p
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |