Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,585 for room (0.05 sec)

  1. src/runtime/tagptr_64bit.go

    	// architectures except s390x.
    	//
    	// On AMD64, virtual addresses are 48-bit (or 57-bit) numbers sign extended to 64.
    	// We shift the address left 16 to eliminate the sign extended part and make
    	// room in the bottom for the count.
    	//
    	// On s390x, virtual addresses are 64-bit. There's not much we
    	// can do about this, so we just hope that the kernel doesn't
    	// get to really high addresses and panic if it does.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/aes.go

    		panic("cipher: message too large for GCM")
    	}
    	if len(dst)+len(plaintext)+gcmTagSize < len(dst) {
    		panic("cipher: message too large for buffer")
    	}
    
    	// Make room in dst to append plaintext+overhead.
    	n := len(dst)
    	for cap(dst) < n+len(plaintext)+gcmTagSize {
    		dst = append(dst[:cap(dst)], 0)
    	}
    	dst = dst[:n+len(plaintext)+gcmTagSize]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/stackcheck.go

    		// the same function multiple times at different
    		// depths, but lets us find all paths.
    		for _, root := range roots {
    			ctxt.Errorf(root, "nosplit stack over %d byte limit", limit)
    			chain := []stackCheckChain{{stackCheckEdge{0, root}, false}}
    			sc.report(root, limit, &chain)
    		}
    	}
    }
    
    func newStackCheck(ctxt *Link, graph bool) *stackCheck {
    	sc := &stackCheck{
    		ctxt:      ctxt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho_combine_dwarf.go

    //
    // With internal linking, DWARF is embedded into the executable, this lets us do the
    // same for external linking.
    // exef is the file of the executable with no DWARF. It must have enough room in the macho
    // header to add the DWARF sections. (Use ld's -headerpad option)
    // exem is the macho representation of exef.
    // dsym is the path to the macho file containing DWARF from dsymutil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. test/maplinear.go

    			m[complex(float64(i), float64(i))] = 1
    		}
    	})
    
    	// ~70ms on a 1.6GHz Zeon.
    	// The iterate/delete idiom currently takes expected
    	// O(n lg n) time.  Fortunately, the checkLinear test
    	// leaves enough wiggle room to include n lg n time
    	// (it actually tests for O(n^log_2(3)).
    	// To prevent false positives, average away variation
    	// by doing multiple rounds within a single run.
    	checkLinear("iterdelete", 2500, func(n int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/log/slog/level.go

    // verbosity is thus the negation of event severity, and the default verbosity
    // of 0 accepts all events at least as severe as INFO.
    //
    // Third, we wanted some room between levels to accommodate schemes with named
    // levels between ours. For example, Google Cloud Logging defines a Notice level
    // between Info and Warn. Since there are only a few of these intermediate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/runtime/sys_plan9_amd64.s

    	RET
    
    	// save args
    	MOVQ	ureg+0(FP), CX
    	MOVQ	note+8(FP), DX
    
    	// change stack
    	MOVQ	g_m(BX), BX
    	MOVQ	m_gsignal(BX), R10
    	MOVQ	(g_stack+stack_hi)(R10), BP
    	MOVQ	BP, SP
    
    	// make room for args and g
    	SUBQ	$128, SP
    
    	// save g
    	MOVQ	g(AX), BP
    	MOVQ	BP, 32(SP)
    
    	// g = m->gsignal
    	MOVQ	R10, g(AX)
    
    	// load args and call sighandler
    	MOVQ	CX, 0(SP)
    	MOVQ	DX, 8(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    // NewIfreq creates an Ifreq with the input network interface name after
    // validating the name does not exceed IFNAMSIZ-1 (trailing NULL required)
    // bytes.
    func NewIfreq(name string) (*Ifreq, error) {
    	// Leave room for terminating NULL byte.
    	if len(name) >= IFNAMSIZ {
    		return nil, EINVAL
    	}
    
    	var ifr ifreq
    	copy(ifr.Ifrn[:], name)
    
    	return &Ifreq{raw: ifr}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/registry/key.go

    )
    
    // Key is a handle to an open Windows registry key.
    // Keys can be obtained by calling OpenKey; there are
    // also some predefined root keys such as CURRENT_USER.
    // Keys can be used directly in the Windows API.
    type Key syscall.Handle
    
    const (
    	// Windows defines some predefined root keys that are always open.
    	// An application can use these keys as entry points to the registry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/fuzz/mutator.go

    	// maxPerVal will represent the maximum number of bytes that each value be
    	// allowed after mutating, giving an equal amount of capacity to each line.
    	// Allow a little wiggle room for the encoding.
    	maxPerVal := maxBytes/len(vals) - 100
    
    	// Pick a random value to mutate.
    	// TODO: consider mutating more than one value at a time.
    	i := m.rand(len(vals))
    	switch v := vals[i].(type) {
    	case int:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top