Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for aconsize (0.24 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    			}
    			c.instoffset = c.autosize + a.Offset
    			return c.aconsize()
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-FP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = c.autosize + a.Offset + 4
    			return c.aconsize()
    		}
    
    		return C_GOK
    
    	case obj.TYPE_BRANCH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    //
    //go:nosplit
    func (span *mspan) writeHeapBitsSmall(x, dataSize uintptr, typ *_type) (scanSize uintptr) {
    	// The objects here are always really small, so a single load is sufficient.
    	src0 := readUintptr(typ.GCData)
    
    	// Create repetitions of the bitmap if we have a small array.
    	bits := span.elemsize / goarch.PtrSize
    	scanSize = typ.PtrBytes
    	src := src0
    	switch typ.Size_ {
    	case goarch.PtrSize:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	}
    	if opts.MinimizeLimit > 0 || opts.MinimizeTimeout > 0 {
    		for _, t := range opts.Types {
    			if isMinimizable(t) {
    				c.minimizationAllowed = true
    				break
    			}
    		}
    	}
    
    	covSize := len(coverage())
    	if covSize == 0 {
    		fmt.Fprintf(c.opts.Log, "warning: the test binary was not built with coverage instrumentation, so fuzzing will run without coverage guidance and may be inefficient\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    		n = s.base() + s.elemsize - b
    		n = min(n, maxObletBytes)
    		tp = s.typePointersOfUnchecked(s.base())
    		tp = tp.fastForward(b-tp.addr, b+n)
    	} else {
    		tp = s.typePointersOfUnchecked(b)
    	}
    
    	var scanSize uintptr
    	for {
    		var addr uintptr
    		if tp, addr = tp.nextFast(); addr == 0 {
    			if tp, addr = tp.next(b + n); addr == 0 {
    				break
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys WTSFreeMemory(ptr uintptr) = wtsapi32.WTSFreeMemory
    //sys WTSGetActiveConsoleSessionId() (sessionID uint32)
    
    type ACL struct {
    	aclRevision byte
    	sbz1        byte
    	aclSize     uint16
    	aceCount    uint16
    	sbz2        uint16
    }
    
    type SECURITY_DESCRIPTOR struct {
    	revision byte
    	sbz1     byte
    	control  SECURITY_DESCRIPTOR_CONTROL
    	owner    *SID
    	group    *SID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top