Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,467 for fInt64 (0.3 sec)

  1. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // only used on 32-bit
    func int64div(int64, int64) int64
    func uint64div(uint64, uint64) uint64
    func int64mod(int64, int64) int64
    func uint64mod(uint64, uint64) uint64
    func float64toint64(float64) int64
    func float64touint64(float64) uint64
    func float64touint32(float64) uint32
    func int64tofloat64(int64) float64
    func int64tofloat32(int64) float32
    func uint64tofloat64(uint64) float64
    func uint64tofloat32(uint64) float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/helpers_linux_test.go

    	testCases := []struct {
    		input  int64
    		quota  int64
    		period uint64
    	}{
    		{
    			input:  int64(0),
    			quota:  int64(0),
    			period: uint64(0),
    		},
    		{
    			input:  int64(5),
    			quota:  int64(1000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(9),
    			quota:  int64(1000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(10),
    			quota:  int64(1000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    	Read_bytes                uint64
    	Write_bytes               uint64
    	Cancelled_write_bytes     uint64
    	Nvcsw                     uint64
    	Nivcsw                    uint64
    	Ac_utimescaled            uint64
    	Ac_stimescaled            uint64
    	Cpu_scaled_run_real_total uint64
    	Freepages_count           uint64
    	Freepages_delay_total     uint64
    	Thrashing_count           uint64
    	Thrashing_delay_total     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/encoding/binary/binary.go

    		byte(v>>16),
    		byte(v>>24),
    	)
    }
    
    func (littleEndian) Uint64(b []byte) uint64 {
    	_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
    		uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
    }
    
    func (littleEndian) PutUint64(b []byte, v uint64) {
    	_ = b[7] // early bounds check to guarantee safety of writes below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Read_bytes                uint64
    	Write_bytes               uint64
    	Cancelled_write_bytes     uint64
    	Nvcsw                     uint64
    	Nivcsw                    uint64
    	Ac_utimescaled            uint64
    	Ac_stimescaled            uint64
    	Cpu_scaled_run_real_total uint64
    	Freepages_count           uint64
    	Freepages_delay_total     uint64
    	Thrashing_count           uint64
    	Thrashing_delay_total     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/math/rand/rand.go

    // Uint64 returns a pseudo-random 64-bit value as a uint64.
    func (r *Rand) Uint64() uint64 {
    	if r.s64 != nil {
    		return r.s64.Uint64()
    	}
    	return uint64(r.Int63())>>31 | uint64(r.Int63())<<32
    }
    
    // Int31 returns a non-negative pseudo-random 31-bit integer as an int32.
    func (r *Rand) Int31() int32 { return int32(r.Int63() >> 32) }
    
    // Int returns a non-negative pseudo-random int.
    func (r *Rand) Int() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/symbolbuilder.go

    	return sb.setUintXX(arch, r, v, int64(arch.PtrSize))
    }
    
    func (sb *SymbolBuilder) SetUintptr(arch *sys.Arch, r int64, v uintptr) int64 {
    	return sb.setUintXX(arch, r, uint64(v), int64(arch.PtrSize))
    }
    
    func (sb *SymbolBuilder) SetAddrPlus(arch *sys.Arch, off int64, tgt Sym, add int64) int64 {
    	if sb.Type() == 0 {
    		sb.SetType(sym.SDATA)
    	}
    	if off+int64(arch.PtrSize) > sb.size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. src/math/rand/v2/rand_test.go

    }
    
    func BenchmarkInt64N1e8(b *testing.B) {
    	r := testRand()
    	var t int64
    	arg := keep(int64(1e8))
    	for n := b.N; n > 0; n-- {
    		t += r.Int64N(arg)
    	}
    	Sink = uint64(t)
    }
    
    func BenchmarkInt64N1e9(b *testing.B) {
    	r := testRand()
    	var t int64
    	arg := keep(int64(1e9))
    	for n := b.N; n > 0; n-- {
    		t += r.Int64N(arg)
    	}
    	Sink = uint64(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/magic.go

    func sdivisibleOK64(c int64) bool { return sdivisibleOK(64, c) }
    
    type sdivisibleData struct {
    	k   int64  // trailingZeros(c)
    	m   uint64 // m * (c>>k) mod 2^n == 1 multiplicative inverse of odd portion modulo 2^n
    	a   uint64 // ⎣(2^(n-1) - 1)/ (c>>k)⎦ & -(1<<k) additive constant
    	max uint64 // ⎣(2 a) / (1<<k)⎦ max value to for divisibility
    }
    
    func sdivisible(n uint, c int64) sdivisibleData {
    	d := uint64(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/iimport.go

    	constraint types.Type
    }
    
    type iimporter struct {
    	exportVersion int64
    	ipath         string
    	version       int
    
    	stringData  []byte
    	stringCache map[uint64]string
    	pkgCache    map[uint64]*types.Package
    
    	declData    []byte
    	pkgIndex    map[*types.Package]map[string]uint64
    	typCache    map[uint64]types.Type
    	tparamIndex map[ident]*types.TypeParam
    
    	fake          fakeFileSet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top