Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,432 for fInt64 (0.11 sec)

  1. src/internal/xcoff/file.go

    			if err := binary.Read(sr, binary.BigEndian, shdr); err != nil {
    				return nil, err
    			}
    			s.Name = cstring(shdr.Sname[:])
    			s.VirtualAddress = uint64(shdr.Svaddr)
    			s.Size = uint64(shdr.Ssize)
    			scnptr = uint64(shdr.Sscnptr)
    			s.Type = shdr.Sflags
    			s.Relptr = uint64(shdr.Srelptr)
    			s.Nreloc = uint32(shdr.Snreloc)
    		case U64_TOCMAGIC:
    			shdr := new(SectionHeader64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.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)
  3. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Start) },         // optional uint64 memory_offset = 2
    	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Limit) },         // optional uint64 memory_limit = 3
    	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Offset) },        // optional uint64 file_offset = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/log/slog/value.go

    }
    
    // Int64 returns v's value as an int64. It panics
    // if v is not a signed integer.
    func (v Value) Int64() int64 {
    	if g, w := v.Kind(), KindInt64; g != w {
    		panic(fmt.Sprintf("Value kind is %s, not %s", g, w))
    	}
    	return int64(v.num)
    }
    
    // Uint64 returns v's value as a uint64. It panics
    // if v is not an unsigned integer.
    func (v Value) Uint64() uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    	tagLocation_ID        = 1 // uint64
    	tagLocation_MappingID = 2 // uint64
    	tagLocation_Address   = 3 // uint64
    	tagLocation_Line      = 4 // repeated Line
    
    	// message Line
    	tagLine_FunctionID = 1 // uint64
    	tagLine_Line       = 2 // int64
    
    	// message Function
    	tagFunction_ID         = 1 // uint64
    	tagFunction_Name       = 2 // int64 (string table index)
    	tagFunction_SystemName = 3 // int64 (string table index)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    	GCAssistTime    int64 // GC assists
    	GCDedicatedTime int64 // GC dedicated mark workers + pauses
    	GCIdleTime      int64 // GC idle mark workers
    	GCPauseTime     int64 // GC pauses (all GOMAXPROCS, even if just 1 is running)
    	GCTotalTime     int64
    
    	ScavengeAssistTime int64 // background scavenger
    	ScavengeBgTime     int64 // scavenge assists
    	ScavengeTotalTime  int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/runtime/debuglog.go

    		pos++
    	}
    	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 (r *debugLogReader) peek() (tick uint64) {
    	// Consume any sync records.
    	size := uint64(0)
    	for size == 0 {
    		if r.begin+debugLogHeaderSize > r.end {
    			return ^uint64(0)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/internal/profile/profile.go

    	strX int64
    	numX int64 // Integer value for this label
    }
    
    // Mapping corresponds to Profile.Mapping
    type Mapping struct {
    	ID              uint64
    	Start           uint64
    	Limit           uint64
    	Offset          uint64
    	File            string
    	BuildID         string
    	HasFunctions    bool
    	HasFilenames    bool
    	HasLineNumbers  bool
    	HasInlineFrames bool
    
    	fileX    int64
    	buildIDX int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/types.go

    	return Xadd(&u.value, delta)
    }
    
    // Uint64 is an atomically accessed uint64 value.
    //
    // 8-byte aligned on all platforms, unlike a regular uint64.
    //
    // A Uint64 must not be copied.
    type Uint64 struct {
    	noCopy noCopy
    	_      align64
    	value  uint64
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (u *Uint64) Load() uint64 {
    	return Load64(&u.value)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/internal/profile/encode.go

    	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Start) },         // optional uint64 memory_offset = 2
    	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Limit) },         // optional uint64 memory_limit = 3
    	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Offset) },        // optional uint64 file_offset = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top