Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 510 for aligned (0.12 sec)

  1. src/go/printer/testdata/expressions.input

    	})(nil)
    }
    
    func _() {
    	// do not modify literals
    	_ = "tab1	tab2	tab3	end"  // string contains 3 tabs
    	_ = "tab1 tab2 tab3 end"  // same string with 3 blanks - may be unaligned because editors see tabs in strings
    	_ = ""  // this comment should be aligned with the one on the previous line
    	_ = ``
    	_ = `
    `
    _ = `foo
    		bar`
    	_ = `three spaces before the end of the line starting here:   
    they must not be removed`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  2. src/runtime/asm_mips64x.s

    // func asmcgocall_no_g(fn, arg unsafe.Pointer)
    // Call fn(arg) aligned appropriately for the gcc ABI.
    // Called on a system stack, and there may be no g yet (during needm).
    TEXT ·asmcgocall_no_g(SB),NOSPLIT,$0-16
    	MOVV	fn+0(FP), R25
    	MOVV	arg+8(FP), R4
    	JAL	(R25)
    	RET
    
    // func asmcgocall(fn, arg unsafe.Pointer) int32
    // Call fn(arg) on the scheduler stack,
    // aligned appropriately for the gcc ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/s390x/asm.go

    	default:
    		ldr.Errorf(s, "unexpected relocation variant %d", rv)
    		return t
    
    	case sym.RV_NONE:
    		return t
    
    	case sym.RV_390_DBL:
    		if t&1 != 0 {
    			ldr.Errorf(s, "%s+%v is not 2-byte aligned", ldr.SymName(r.Sym()), ldr.SymValue(r.Sym()))
    		}
    		return t >> 1
    	}
    }
    
    func addpltsym(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loader.Sym) {
    	if ldr.SymPlt(s) >= 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/archive/tar/common.go

    		}
    		pre = cur
    	}
    	return true
    }
    
    // alignSparseEntries mutates src and returns dst where each fragment's
    // starting offset is aligned up to the nearest block edge, and each
    // ending offset is aligned down to the nearest block edge.
    //
    // Even though the Go tar Reader and the BSD tar utility can handle entries
    // with arbitrary offsets and lengths, the GNU tar utility can only handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/metrics.go

    		&metrics.CounterOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           TopologyManagerAdmissionRequestsTotalKey,
    			Help:           "The number of admission requests where resources have to be aligned.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// TopologyManagerAdmissionErrorsTotal tracks the number of times the pod spec required the topology manager to admit a pod, but the admission failed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. src/runtime/asm_riscv64.s

    // func asmcgocall_no_g(fn, arg unsafe.Pointer)
    // Call fn(arg) aligned appropriately for the gcc ABI.
    // Called on a system stack, and there may be no g yet (during needm).
    TEXT ·asmcgocall_no_g(SB),NOSPLIT,$0-16
    	MOV	fn+0(FP), X5
    	MOV	arg+8(FP), X10
    	JALR	RA, (X5)
    	RET
    
    // func asmcgocall(fn, arg unsafe.Pointer) int32
    // Call fn(arg) on the scheduler stack,
    // aligned appropriately for the gcc ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  7. src/runtime/asm_s390x.s

    	MOVD	g, R2			// arg 0: G
    	// C functions expect 160 bytes of space on caller stack frame
    	// and an 8-byte aligned stack pointer
    	MOVD	R15, R9			// save current stack (R9 is preserved in the Linux ABI)
    	SUB	$160, R15		// reserve 160 bytes
    	MOVD    $~7, R6
    	AND 	R6, R15			// 8-byte align
    	BL	R11			// this call clobbers volatile registers according to Linux ABI (R0-R5, R14)
    	MOVD	R9, R15			// restore stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/cmd/internal/archive/archive.go

    		// We only care about name, size, and magic, unless in verbose mode.
    		// The fields are space-padded on the right.
    		// The size is in decimal.
    		// The file data - size bytes - follows the header.
    		// Headers are 2-byte aligned, so if size is odd, an extra padding
    		// byte sits between the file data and the next header.
    		// The file data that follows is padded to an even number of bytes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    			if span.spanclass.sizeclass() != 0 {
    				throw("GCProg for type that isn't large")
    			}
    			spaceNeeded := alignUp(unsafe.Sizeof(_type{}), goarch.PtrSize)
    			heapBitsOff := spaceNeeded
    			spaceNeeded += alignUp(typ.PtrBytes/goarch.PtrSize/8, goarch.PtrSize)
    			npages := alignUp(spaceNeeded, pageSize) / pageSize
    			var progSpan *mspan
    			systemstack(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/go/printer/testdata/expressions.golden

    	})(nil)
    }
    
    func _() {
    	// do not modify literals
    	_ = "tab1	tab2	tab3	end"	// string contains 3 tabs
    	_ = "tab1 tab2 tab3 end"	// same string with 3 blanks - may be unaligned because editors see tabs in strings
    	_ = ""				// this comment should be aligned with the one on the previous line
    	_ = ``
    	_ = `
    `
    	_ = `foo
    		bar`
    	_ = `three spaces before the end of the line starting here:   
    they must not be removed`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
Back to top