Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 227 for aligned (0.34 sec)

  1. src/cmd/internal/obj/ppc64/asm_test.go

    	pgms := []struct {
    		text   []byte
    		align  string
    		hasNop bool
    	}{
    		{[]byte(x0pgm), "align=0x0", false},     // No alignment or nop adjustments needed
    		{[]byte(x16pgm), "align=0x20", false},   // Increased alignment needed
    		{[]byte(x32pgm), "align=0x40", false},   // Worst case alignment needed
    		{[]byte(x64pgm), "align=0x0", true},     // 0 aligned is default (16B) alignment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/text/tabwriter/tabwriter.go

    				}
    			} else {
    				// non-empty cell
    				useTabs = false
    				if b.flags&AlignRight == 0 { // align left
    					b.write0(b.buf[pos : pos+c.size])
    					pos += c.size
    					if j < len(b.widths) {
    						b.writePadding(c.width, b.widths[j], false)
    					}
    				} else { // align right
    					if j < len(b.widths) {
    						b.writePadding(c.width, b.widths[j], false)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/gc.go

    		maxPageCache = (8 << 10) * 64
    	)
    
    	// How big the allocations are needs to depend on the page size.
    	// If the page size is too big and the allocations are too small,
    	// they might not be aligned to the physical page size, so the scavenger
    	// will gloss over them.
    	pageSize := os.Getpagesize()
    	var allocChunk int
    	if pageSize <= 8<<10 {
    		allocChunk = 64 << 10
    	} else {
    		allocChunk = 512 << 10
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  4. src/runtime/race_amd64.s

    // Arguments are passed in DI, SI, DX, CX, R8, R9, the rest is on stack.
    // Callee-saved registers are: BX, BP, R12-R15.
    // SP must be 16-byte aligned.
    // On Windows:
    // Arguments are passed in CX, DX, R8, R9, the rest is on stack.
    // Callee-saved registers are: BX, BP, DI, SI, R12-R15.
    // SP must be 16-byte aligned. Windows also requires "stack-backing" for the 4 register arguments:
    // https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		// we don't want to do it every time. But if _stext happens to be
    		// page-aligned but isn't the same as Vaddr, we would symbolize
    		// wrong. So if the name the addresses aren't page aligned, or if
    		// the name is "vmlinux" we read _stext. We can be wrong if: (1)
    		// someone passes a kernel path that doesn't contain "vmlinux" AND
    		// (2) _stext is page-aligned AND (3) _stext is not at Vaddr
    		symbols, err := ef.Symbols()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    		expectedHints []topologymanager.TopologyHint
    	}{
    		{
    			// CPU available on numa node[0 ,1]. CPU on numa node 0 can satisfy request of 2 CPU's
    			description:   "AlignBySocket:false, Preferred hints does not contains socket aligned hints",
    			pod:           *testPod1,
    			container:     *testContainer1,
    			defaultCPUSet: cpuset.New(2, 3, 11),
    			topology:      topoDualSocketMultiNumaPerSocketHT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/go/printer/printer.go

    	}
    	// len(lines) > 1
    
    	// The heuristic in this function tries to handle a few
    	// common patterns of /*-style comments: Comments where
    	// the opening /* and closing */ are aligned and the
    	// rest of the comment text is aligned and indented with
    	// blanks or tabs, cases with a vertical "line of stars"
    	// on the left, and cases where the closing */ is on the
    	// same line as the last comment text.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  8. src/runtime/mranges.go

    	}
    	return a
    }
    
    // takeFromFront takes len bytes from the front of the address range, aligning
    // the base to align first. On success, returns the aligned start of the region
    // taken and true.
    func (a *addrRange) takeFromFront(len uintptr, align uint8) (uintptr, bool) {
    	base := alignUp(a.base.addr(), uintptr(align)) + len
    	if base > a.limit.addr() {
    		return 0, false
    	}
    	a.base = offAddr{base}
    	return base - len, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // the runtime mapping with file offset mapOff and memory size mapSz. We skip
    // over segments zero file size because their file offset values are unreliable.
    // Even if overlapping, a segment is not selected if its aligned file offset is
    // greater than the mapping file offset, or if the mapping includes the last
    // page of the segment, but not the full segment and the mapping includes
    // additional pages after the segment end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                    @Override
                    void execute(ComponentMetadataContext context) {
                        def id = context.details.id
                        if (id.group == "aligned") {
                            context.details.belongsTo('aligned:virtual:1.0')
                            context.details.allVariants {
                                withCapabilities {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top