Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,863 for next0 (0.05 sec)

  1. 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)
  2. src/go/printer/testdata/parser.go

    	case token.ADD, token.SUB, token.NOT, token.XOR, token.AND, token.RANGE:
    		pos, op := p.pos, p.tok
    		p.next()
    		x := p.parseUnaryExpr(false)
    		return &ast.UnaryExpr{pos, op, p.checkExpr(x)}
    
    	case token.ARROW:
    		// channel type or receive expression
    		pos := p.pos
    		p.next()
    		if p.tok == token.CHAN {
    			p.next()
    			value := p.parseType()
    			return &ast.ChanType{pos, ast.RECV, value}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    //	(e.g., pass list via a channel over which to range).
    func (p *printer) exprList(prev0 token.Pos, list []ast.Expr, depth int, mode exprListMode, next0 token.Pos, isIncomplete bool) {
    	if len(list) == 0 {
    		if isIncomplete {
    			prev := p.posFor(prev0)
    			next := p.posFor(next0)
    			if prev.IsValid() && prev.Line == next.Line {
    				p.print("/* " + filteredMsg + " */")
    			} else {
    				p.print(newline)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    				typ = p.parseType()
    			}
    		}
    	case token.MUL:
    		star := p.pos
    		p.next()
    		if p.tok == token.LPAREN {
    			// *(T)
    			p.error(p.pos, "cannot parenthesize embedded type")
    			p.next()
    			typ = p.parseQualifiedIdent(nil)
    			// expect closing ')' but no need to complain if missing
    			if p.tok == token.RPAREN {
    				p.next()
    			}
    		} else {
    			// *T
    			typ = p.parseQualifiedIdent(nil)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K 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