Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,861 for nextB (0.05 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/memclr_ppc64x.s

    	XXLXOR  VS32, VS32, VS32 // clear VS32 (V0)
    	SLD	$56, R5, R7
    	STXVL   V0, R3, R7
    	RET
    #else
    	CMP   R5, $4
    	BLT   next2
    	MOVW  R0, 0(R3)
    	ADD   $4, R3
    	ADD   $-4, R5
    next2:
    	CMP   R5, $2
    	BLT   next1
    	MOVH  R0, 0(R3)
    	ADD   $2, R3
    	ADD   $-2, R5
    next1:
    	CMP   R5, $0
    	BC    12, 2, LR      // beqlr
    	MOVB  R0, 0(R3)
    	RET
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

        while (p->next_ != this) p = p->next_;
        p->next_ = next_;
        return false;
      }
    
     private:
      mutable linked_ptr_internal const* next_;
    };
    
    template <typename T>
    class linked_ptr {
     public:
      typedef T element_type;
    
      // Take over ownership of a raw pointer.  This should happen as soon as
      // possible after the object is created.
      explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/ssa/testdata/infloop.dlv-opt.nexts

    David Chase <******@****.***> 1579280635 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 17 23:14:48 UTC 2020
    - 179 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/testdata/scopes.dlv-opt.nexts

    David Chase <******@****.***> 1546465969 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 22:18:10 UTC 2019
    - 1.1K bytes
    - Viewed (0)
Back to top