Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 189 for T65536 (0.28 sec)

  1. src/internal/goarch/goarch_arm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = ARM
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 4
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 328 bytes
    - Viewed (0)
  2. test/fixedbugs/issue49767.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	ch := make(chan struct{ v [65536]byte }) // ERROR "channel element type too large"
    	close(ch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 20:49:56 UTC 2021
    - 300 bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/volume_stats_test.go

    							CapacityBytes:  newUint64Pointer(1.0434699264e+10),
    							UsedBytes:      newUint64Pointer(4.21789696e+09),
    							InodesFree:     newUint64Pointer(655344),
    							Inodes:         newUint64Pointer(655360),
    							InodesUsed:     newUint64Pointer(16),
    						},
    						Name:   "test",
    						PVCRef: nil,
    					},
    					{
    						FsStats: statsapi.FsStats{
    							Time:           metav1.Now(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/internal/goarch/goarch_mips.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = MIPS
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 4
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 329 bytes
    - Viewed (0)
  5. src/image/color/ycbcr.go

    	//	R = (65536*Y' +  91881 *(Cr-128)                  + adjustment) >> 16
    	//	G = (65536*Y' -  22554 *(Cb-128) - 46802*(Cr-128) + adjustment) >> 16
    	//	B = (65536*Y' + 116130 *(Cb-128)                  + adjustment) >> 16
    	// A constant rounding adjustment of 1<<15, one half of 1<<16, would mean
    	// round-to-nearest when dividing by 65536 (shifting right by 16).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashing.java

      private static final int BYTE_MAX_SIZE = 1 << Byte.SIZE; // 2^8 = 256
      private static final int BYTE_MASK = (1 << Byte.SIZE) - 1; // 2^8 - 1 = 255
    
      private static final int SHORT_MAX_SIZE = 1 << Short.SIZE; // 2^16 = 65_536
      private static final int SHORT_MASK = (1 << Short.SIZE) - 1; // 2^16 - 1 = 65_535
    
      /**
       * Returns the power of 2 hashtable size required to hold the expected number of items or the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  7. src/internal/goarch/goarch_mipsle.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = MIPS
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 4
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 329 bytes
    - Viewed (0)
  8. src/internal/goarch/goarch_ppc64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = PPC64
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 32
    	_StackAlign          = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 326 bytes
    - Viewed (0)
  9. src/internal/goarch/goarch_wasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = WASM
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 1
    	_MinFrameSize        = 0
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 329 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/mulconst_test.go

    		for i := 0; i < b.N; i++ {
    			x *= -120
    		}
    		mulSinkI32 = x
    	})
    	// 65537x = 65536x + x
    	b.Run("65537", func(b *testing.B) {
    		x := int32(1)
    		for i := 0; i < b.N; i++ {
    			x *= 65537
    		}
    		mulSinkI32 = x
    	})
    	// 65538x = 65536x + 2x
    	b.Run("65538", func(b *testing.B) {
    		x := int32(1)
    		for i := 0; i < b.N; i++ {
    			x *= 65538
    		}
    		mulSinkI32 = x
    	})
    }
    
    func BenchmarkMulconstI64(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 15:39:44 UTC 2020
    - 4.3K bytes
    - Viewed (0)
Back to top