Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 160 for fInt64 (0.22 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVBZreg y:(ANDconst [c] _)) && uint64(c) <= 0xFF => y
    (MOVHZreg y:(ANDconst [c] _)) && uint64(c) <= 0xFFFF => y
    (MOVWZreg y:(ANDconst [c] _)) && uint64(c) <= 0xFFFFFFFF => y
    (MOVWZreg y:(AND (MOVDconst [c]) _)) && uint64(c) <= 0xFFFFFFFF => y
    
    // sign extend of small-positive and => small-positive-and
    (MOVBreg y:(ANDconst [c] _)) && uint64(c) <= 0x7F => y
    (MOVHreg y:(ANDconst [c] _)) && uint64(c) <= 0x7FFF => y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		for _, s := range si.syms {
    			ldr.SetSymValue(s, int64(pos))
    			sect := ldr.SymSect(s)
    			if sect != prevSect {
    				sect.Vaddr = uint64(pos)
    				prevSect = sect
    			}
    			if ldr.SubSym(s) != 0 {
    				log.Fatalf("%s: unexpected sub-symbols", ldr.SymName(s))
    			}
    			pos += uint64(ldr.SymSize(s))
    			if ctxt.IsWindows() {
    				pos = uint64(Rnd(int64(pos), PEFILEALIGN))
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVDload", argLength: 2, reg: gpload, aux: "SymOff", asm: "MOVD", typ: "UInt64", faultOnNilArg0: true, symEffect: "Read"},     // load from arg0 + auxInt + aux.  arg1=mem.
    		{name: "LDP", argLength: 2, reg: gpload2, aux: "SymOff", asm: "LDP", typ: "(UInt64,UInt64)", faultOnNilArg0: true, symEffect: "Read"}, // load from ptr = arg0 + auxInt + aux, returns the tuple <*(*uint64)ptr, *(*uint64)(ptr+8)>. arg1=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	}
    	return id
    }
    
    func assignID_64(text []int64, sa []int64, numLMS int) int {
    	id := 0
    	lastLen := int64(-1) // impossible
    	lastPos := int64(0)
    	for _, j := range sa[len(sa)-numLMS:] {
    		// Is the LMS-substring at index j new, or is it the same as the last one we saw?
    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint64(n) >= uint64(len(text)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    				case signed:
    					old.min, old.max = v.AuxInt, v.AuxInt
    					if v.AuxInt >= 0 {
    						old.umin, old.umax = uint64(v.AuxInt), uint64(v.AuxInt)
    					}
    				case unsigned:
    					old.umin = v.AuxUnsigned()
    					old.umax = old.umin
    					if int64(old.umin) >= 0 {
    						old.min, old.max = int64(old.umin), int64(old.umin)
    					}
    				}
    			}
    		}
    		lim := noLimit
    		switch d {
    		case signed:
    			c := w.AuxInt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    	cases := []struct {
    		name            string
    		schemaGenerator func(maxLength *int64) *schema.Structural
    		setMaxElements  int64
    
    		// calc costs expectations are checked against the generated schema without any max element limits set
    		expectedCalcCost           uint64
    		expectCalcCostExceedsLimit uint64
    
    		// calc costs expectations are checked against the generated schema with max element limits set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	pcs = make([]uintptr, 6)
    	recursionChainTop(1, pcs)
    	recursionStack := make([]uint64, len(pcs))
    	for i := range pcs {
    		recursionStack[i] = uint64(pcs[i])
    	}
    
    	period := int64(2000 * 1000) // 1/500*1e9 nanosec.
    
    	testCases := []struct {
    		name        string
    		input       []uint64          // following the input format assumed by profileBuilder.addCPUData.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	}
    }
    
    // pack returns sc packed into a uint64.
    func (sc scavChunkData) pack() uint64 {
    	return uint64(sc.inUse) |
    		(uint64(sc.lastInUse) << 16) |
    		(uint64(sc.scavChunkFlags) << (16 + logScavChunkInUseMax)) |
    		(uint64(sc.gen) << 32)
    }
    
    const (
    	// scavChunkHasFree indicates whether the chunk has anything left to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    	n += 1 + l + sovGenerated(uint64(l))
    	if len(m.Conditions) > 0 {
    		for _, e := range m.Conditions {
    			l = e.Size()
    			n += 1 + l + sovGenerated(uint64(l))
    		}
    	}
    	l = len(m.Message)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Reason)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.HostIP)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.CarpIP)
    	n += 1 + l + sovGenerated(uint64(l))
    	if m.StartTime != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    	n += 1 + l + sovGenerated(uint64(l))
    	if len(m.Conditions) > 0 {
    		for _, e := range m.Conditions {
    			l = e.Size()
    			n += 1 + l + sovGenerated(uint64(l))
    		}
    	}
    	l = len(m.Message)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Reason)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.HostIP)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.PodIP)
    	n += 1 + l + sovGenerated(uint64(l))
    	if m.StartTime != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
Back to top