Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 984 for nextB (0.04 sec)

  1. src/cmd/compile/internal/ssa/looprotate.go

    			if nextIdx >= len(f.Blocks) { // reached end of function (maybe impossible?)
    				break
    			}
    			nextb := f.Blocks[nextIdx]
    			if nextb == p { // original loop predecessor is next
    				break
    			}
    			if loopnest.b2l[nextb.ID] == loop {
    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    		// Swap b and p so that we'll handle p before b when moving blocks.
    		f.Blocks[idToIdx[loop.header.ID]] = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/heading.go

    	if id == "" {
    		p.corner = true // goldmark accepts {#}
    		return "", s
    	}
    	return s[i+2 : j], s[:i]
    }
    
    func newSetextHeading(p *parseState, s line) (line, bool) {
    	var n int
    	peek := s
    	if p.nextB() == p.para() && peek.trimSetext(&n) {
    		p.closeBlock()
    		para, ok := p.last().(*Paragraph)
    		if !ok {
    			return s, false
    		}
    		p.deleteLast()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/list.go

    	for i := 0; i < 3 && tt.trimSpace(1, 1, false); i++ {
    		m++
    	}
    	if !tt.trimSpace(1, 1, true) {
    		n += m
    		t = tt
    	}
    
    	// point of no return
    
    	var list *listBuilder
    	if c, ok := p.nextB().(*listBuilder); ok {
    		list = c
    	}
    	if list == nil || list.bullet != rune(bullet) {
    		// “When the first list item in a list interrupts a paragraph—that is,
    		// when it starts on a line that would otherwise count as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/parse.go

    	}
    
    	return ps.root, ps.corner
    }
    
    func (p *parseState) curB() blockBuilder {
    	if p.lineDepth < len(p.stack) {
    		return p.stack[p.lineDepth].builder
    	}
    	return nil
    }
    
    func (p *parseState) nextB() blockBuilder {
    	if p.lineDepth+1 < len(p.stack) {
    		return p.stack[p.lineDepth+1].builder
    	}
    	return nil
    }
    func (p *parseState) trimStack(depth int) {
    	if len(p.stack) < depth {
    		panic("trimStack")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/runtime/gc_test.go

    	type X struct {
    		c     chan error
    		nextx *X
    	}
    	type Y struct {
    		X
    		nexty *Y
    		p     *int
    	}
    	var head *Y
    	for i := 0; i < 10; i++ {
    		p := &Y{}
    		p.c = make(chan error)
    		if head != nil {
    			p.nextx = &head.X
    		}
    		p.nexty = head
    		p.p = new(int)
    		*p.p = 42
    		head = p
    		runtime.GC()
    	}
    	for p := head; p != nil; p = p.nexty {
    		if *p.p != 42 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_ppc64x.s

    	CMP	IN_LEN, $8
    	BLT	next4
    	MOVD	0(MASK_PTR), R14
    	MOVD	0(BLK_INP), R15
    	XOR	R14, R15, R14
    	MOVD	R14, 0(BLK_OUT)
    	ADD	$8, R16
    	ADD	$-8, IN_LEN
    next4:
    	CMP	IN_LEN, $4
    	BLT	next2
    	MOVWZ	(BLK_INP)(R16), R15
    	MOVWZ	(MASK_PTR)(R16), R14
    	XOR	R14, R15, R14
    	MOVW	R14, (R16)(BLK_OUT)
    	ADD	$4, R16
    	ADD	$-4, IN_LEN
    next2:
    	CMP	IN_LEN, $2
    	BLT	next1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_ppc64le.s

    	// now reduce the tail
    
    	CMP	$0,R7
    	BEQ	next1
    
    	LVX	(R4),V16
    	LVX	(R3),V17
    	VPMSUMW	V16,V17,V16
    	VXOR	V0,V16,V0
    	BC	18,0,next1
    
    	LVX	(R4+off16),V16
    	LVX	(R3+off16),V17
    	VPMSUMW	V16,V17,V16
    	VXOR	V0,V16,V0
    	BC	18,0,next1
    
    	LVX	(R4+off32),V16
    	LVX	(R3+off32),V17
    	VPMSUMW	V16,V17,V16
    	VXOR	V0,V16,V0
    	BC	18,0,next1
    
    	LVX	(R4+off48),V16
    	LVX	(R3+off48),V17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/runtime/export_test.go

    	ready := new(uint32)
    	for i := 0; i < iters; i++ {
    		*ready = 0
    		next0 := (i & 1) == 0
    		next1 := (i & 2) == 0
    		runqput(p, &gs[0], next0)
    		go func() {
    			for atomic.Xadd(ready, 1); atomic.Load(ready) != 2; {
    			}
    			if runqempty(p) {
    				println("next:", next0, next1)
    				throw("queue is empty")
    			}
    			done <- true
    		}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    // is simultaneously being destroyed.
    func (tl traceLocker) GoSwitch(nextg *g, destroy bool) {
    	// Emit a GoWaiting status if necessary for the unblocked goroutine.
    	w := tl.eventWriter(traceGoRunning, traceProcRunning)
    	// Careful: don't use the event writer. We never want status or in-progress events
    	// to trigger more in-progress events.
    	w.w = emitUnblockStatus(w.w, nextg, tl.gen)
    	ev := traceEvGoSwitch
    	if destroy {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/runtime/select.go

    	x := sgp.prev
    	y := sgp.next
    	if x != nil {
    		if y != nil {
    			// middle of queue
    			x.next = y
    			y.prev = x
    			sgp.next = nil
    			sgp.prev = nil
    			return
    		}
    		// end of queue
    		x.next = nil
    		q.last = x
    		sgp.prev = nil
    		return
    	}
    	if y != nil {
    		// start of queue
    		y.prev = nil
    		q.first = y
    		sgp.next = nil
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top