Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,467 for fInt64 (1.1 sec)

  1. cmd/http-stats.go

    type connStats struct {
    	internodeInputBytes  uint64
    	internodeOutputBytes uint64
    	s3InputBytes         uint64
    	s3OutputBytes        uint64
    }
    
    // Increase internode total input bytes
    func (s *connStats) incInternodeInputBytes(n int64) {
    	atomic.AddUint64(&s.internodeInputBytes, uint64(n))
    }
    
    // Increase internode total output bytes
    func (s *connStats) incInternodeOutputBytes(n int64) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/internal/zstd/zstd.go

    	// Figure out the maximum amount of data we need to retain
    	// for backreferences.
    	var windowSize uint64
    	if !singleSegment {
    		// Window descriptor. RFC 3.1.1.1.2.
    		windowDescriptor := r.scratch[0]
    		exponent := uint64(windowDescriptor >> 3)
    		mantissa := uint64(windowDescriptor & 7)
    		windowLog := exponent + 10
    		windowBase := uint64(1) << windowLog
    		windowAdd := (windowBase / 8) * mantissa
    		windowSize = windowBase + windowAdd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/encoding/gob/enc_helpers.go

    }
    
    func encUint64Slice(state *encoderState, v reflect.Value) bool {
    	slice, ok := v.Interface().([]uint64)
    	if !ok {
    		// It is kind uint64 but not type uint64. TODO: We can handle this unsafely.
    		return false
    	}
    	for _, x := range slice {
    		if x != 0 || state.sendZero {
    			state.encodeUint(x)
    		}
    	}
    	return true
    }
    
    func encUintptrArray(state *encoderState, v reflect.Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/wasm/asm.go

    	w.WriteByte(0x41) // i32.const
    	writeSleb128(w, int64(v))
    }
    
    func writeI64Const(w io.ByteWriter, v int64) {
    	w.WriteByte(0x42) // i64.const
    	writeSleb128(w, v)
    }
    
    func writeName(w nameWriter, name string) {
    	writeUleb128(w, uint64(len(name)))
    	w.Write([]byte(name))
    }
    
    func writeUleb128(w io.ByteWriter, v uint64) {
    	if v < 128 {
    		w.WriteByte(uint8(v))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/debug/macho/file.go

    				return nil, err
    			}
    			strtab, err := saferio.ReadDataAt(r, uint64(hdr.Strsize), int64(hdr.Stroff))
    			if err != nil {
    				return nil, err
    			}
    			var symsz int
    			if f.Magic == Magic64 {
    				symsz = 16
    			} else {
    				symsz = 12
    			}
    			symdat, err := saferio.ReadDataAt(r, uint64(hdr.Nsyms)*uint64(symsz), int64(hdr.Symoff))
    			if err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ADDE", argLength: 3, reg: gp2xer1xer, asm: "ADDE", typ: "(UInt64, UInt64)", commutative: true}, // arg0 + arg1 + CA (arg2) -> out, CA
    		{name: "ADDZE", argLength: 2, reg: gp1xer1xer, asm: "ADDZE", typ: "(UInt64, UInt64)"},                  // arg0 + CA (arg1) -> out, CA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/internal/profile/merge.go

    	locationsByID map[uint64]*Location
    	functionsByID map[uint64]*Function
    	mappingsByID  map[uint64]mapInfo
    
    	// Memoization tables for profile entities.
    	samples   map[sampleKey]*Sample
    	locations map[locationKey]*Location
    	functions map[functionKey]*Function
    	mappings  map[mappingKey]*Mapping
    }
    
    type mapInfo struct {
    	m      *Mapping
    	offset int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/loopbce.go

    }
    
    // addU returns x+y. Requires that x+y does not overflow an int64.
    func addU(x int64, y uint64) int64 {
    	if y >= 1<<63 {
    		if x >= 0 {
    			base.Fatalf("addU overflowed %d + %d", x, y)
    		}
    		x += 1<<63 - 1
    		x += 1
    		y -= 1 << 63
    	}
    	if addWillOverflow(x, int64(y)) {
    		base.Fatalf("addU overflowed %d + %d", x, y)
    	}
    	return x + int64(y)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    }
    
    type MachoSect struct {
    	name    string
    	segname string
    	addr    uint64
    	size    uint64
    	off     uint32
    	align   uint32
    	reloc   uint32
    	nreloc  uint32
    	flag    uint32
    	res1    uint32
    	res2    uint32
    }
    
    type MachoSeg struct {
    	name       string
    	vsize      uint64
    	vaddr      uint64
    	fileoffset uint64
    	filesize   uint64
    	prot1      uint32
    	prot2      uint32
    	nsect      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    		v0 := b.NewValue0(v.Pos, OpARM64MOVDconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(c)
    		v.AddArg2(x, v0)
    		return true
    	}
    	return false
    }
    func rewriteValueARM64latelower_OpARM64TSTWconst(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (TSTWconst [c] x)
    	// cond: !isARM64bitcon(uint64(c)|uint64(c)<<32)
    	// result: (TSTW x (MOVDconst [int64(c)]))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top