Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for power9 (0.16 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    6. Align directive
    
    Go asm supports the PCALIGN directive, which indicates that the next instruction should be aligned
    to a specified boundary by padding with NOOP instruction. The alignment value supported on arm64
    must be a power of 2 and in the range of [8, 2048].
    
    Examples:
    
    	PCALIGN $16
    	MOVD $2, R0          // This instruction is aligned with 16 bytes.
    	PCALIGN $1024
    	MOVD $3, R1          // This instruction is aligned with 1024 bytes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/go/types/sizes.go

    	f := stdSizes.Sizeof
    	if conf.Sizes != nil {
    		f = conf.Sizes.Sizeof
    	}
    	return f(T)
    }
    
    // align returns the smallest y >= x such that y % a == 0.
    // a must be within 1 and 8 and it must be a power of 2.
    // The result may be negative due to overflow.
    func align(x, a int64) int64 {
    	assert(x >= 0 && 1 <= a && a <= 8 && a&(a-1) == 0)
    	return (x + a - 1) &^ (a - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/runtime/mksizeclasses.go

    	// computed with:
    	//
    	// 	Algorithm 2: Algorithm to select the number of fractional bits
    	// 	and the scaled approximate reciprocal in the case of unsigned
    	// 	integers.
    	//
    	// 	if d is a power of two then
    	// 		Let F ← log₂(d) and c = 1.
    	// 	else
    	// 		Let F ← N + L where L is the smallest integer
    	// 		such that d ≤ (2^(N+L) mod d) + 2^L.
    	// 	end if
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/base/base.go

    // this feature, we should consider/propose a better way to accomplish it.
    func AdjustStartingHeap(requestedHeapGoal uint64) {
    	logHeapTweaks := Debug.GCAdjust == 1
    	mp := runtime.GOMAXPROCS(0)
    	gcConcurrency := Flag.LowerC
    
    	const (
    		goal   = "/gc/heap/goal:bytes"
    		count  = "/gc/cycles/total:gc-cycles"
    		allocs = "/gc/heap/allocs:bytes"
    		frees  = "/gc/heap/frees:bytes"
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top