Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for outRegs (0.19 sec)

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

    						maxOutIdx = out.idx
    					}
    					outRegs[out.idx] = r
    					used |= regMask(1) << r
    					s.tmpused |= regMask(1) << r
    				}
    				// Record register choices
    				if v.Type.IsTuple() {
    					var outLocs LocPair
    					if r := outRegs[0]; r != noRegister {
    						outLocs[0] = &s.registers[r]
    					}
    					if r := outRegs[1]; r != noRegister {
    						outLocs[1] = &s.registers[r]
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    			}
    			if !bytes.Equal(inRegs, lt.inRegs) {
    				t.Errorf("funcLayout(%v, %v).inRegs=%v, want %v", lt.typ, lt.rcvr, inRegs, lt.inRegs)
    			}
    			if !bytes.Equal(outRegs, lt.outRegs) {
    				t.Errorf("funcLayout(%v, %v).outRegs=%v, want %v", lt.typ, lt.rcvr, outRegs, lt.outRegs)
    			}
    			if ptrs && len(stack) == 0 || !ptrs && len(stack) > 0 {
    				t.Errorf("funcLayout(%v, %v) pointers flag=%v, want %v", lt.typ, lt.rcvr, ptrs, !ptrs)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/reflect/export_test.go

    //
    // Bitmaps like stack, gc, inReg, and outReg are expanded such that each bit
    // takes up one byte, so that writing out test cases is a little clearer.
    // If ptrs is false, gc will be nil.
    func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack, gc, inReg, outReg []byte, ptrs bool) {
    	var ft *abi.Type
    	var abid abiDesc
    	if rcvr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/runtime/heapdump.go

    	dumpint(uint64(uintptr(unsafe.Pointer(fint))))
    	dumpint(uint64(uintptr(unsafe.Pointer(ot))))
    }
    
    type childInfo struct {
    	// Information passed up from the callee frame about
    	// the layout of the outargs region.
    	argoff uintptr   // where the arguments start in the frame
    	arglen uintptr   // size of args region
    	args   bitvector // if args.n >= 0, pointer map of args region
    	sp     *uint8    // callee sp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. docs/debugging/README.md

    Example:
    
    ```sh
    minio server /data{1...4}
    ```
    
    The command takes no flags
    
    ```sh
    mc support diagnostics myminio/
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    // but does not have the ManagedGatewayLabel, we won't overwrite it.
    // This ensures we don't accidentally take over some resource we weren't supposed to, which could cause outages.
    // Note K8s doesn't have a perfect way to "conditionally SSA", but its close enough (https://github.com/kubernetes/kubernetes/issues/116156).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	inAllAfterWin     uint32
    	inSomeAfterWin    uint32
    	inOutOfOrder      uint32
    	inAfterClose      uint32
    	inWinProbes       uint32
    	inWinUpdates      uint32
    	outWinUpdates     uint32
    	outSegs           uint64
    	outDelayAcks      uint32
    	outRsts           uint32
    	retransSegs       uint32
    	retransTimeouts   uint32
    	retransDrops      uint32
    	pmtuRetrans       uint32
    	pmtuErrors        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top