Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gp1a (0.1 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SHRQconst", argLength: 1, reg: gp11, asm: "SHRQ", aux: "Int8", resultInArg0: true, clobberFlags: true},
    		{name: "SHRLconst", argLength: 1, reg: gp11, asm: "SHRL", aux: "Int8", resultInArg0: true, clobberFlags: true},
    		{name: "SHRWconst", argLength: 1, reg: gp11, asm: "SHRW", aux: "Int8", resultInArg0: true, clobberFlags: true},
    		{name: "SHRBconst", argLength: 1, reg: gp11, asm: "SHRB", aux: "Int8", resultInArg0: true, clobberFlags: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/runtime/proc.go

    		n = max
    	}
    	if n > int32(len(pp.runq))/2 {
    		n = int32(len(pp.runq)) / 2
    	}
    
    	sched.runqsize -= n
    
    	gp := sched.runq.pop()
    	n--
    	for ; n > 0; n-- {
    		gp1 := sched.runq.pop()
    		runqput(pp, gp1, false)
    	}
    	return gp
    }
    
    // pMask is an atomic bitstring with one bit per P.
    type pMask []uint32
    
    // read returns true if P id's bit is set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top