Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 160 for fInt64 (0.6 sec)

  1. src/cmd/compile/internal/types/type.go

    func (t *Type) ArgWidth() int64 {
    	t.wantEtype(TFUNC)
    	return t.extra.(*Func).Argwid
    }
    
    func (t *Type) Size() int64 {
    	if t.kind == TSSA {
    		if t == TypeInt128 {
    			return 16
    		}
    		return 0
    	}
    	CalcSize(t)
    	return t.width
    }
    
    func (t *Type) Alignment() int64 {
    	CalcSize(t)
    	return int64(t.align)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    			n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize))
    		}
    	}
    	l = len(m.SignerName)
    	n += 1 + l + sovGenerated(uint64(l))
    	if m.ExpirationSeconds != nil {
    		n += 1 + sovGenerated(uint64(*m.ExpirationSeconds))
    	}
    	return n
    }
    
    func (m *CertificateSigningRequestStatus) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    			n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize))
    		}
    	}
    	if m.SignerName != nil {
    		l = len(*m.SignerName)
    		n += 1 + l + sovGenerated(uint64(l))
    	}
    	if m.ExpirationSeconds != nil {
    		n += 1 + sovGenerated(uint64(*m.ExpirationSeconds))
    	}
    	return n
    }
    
    func (m *CertificateSigningRequestStatus) Size() (n int) {
    	if m == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    		// someone can set a really big memory limit that isn't maxInt64.
    		if uint64(scav)+inuse > uint64(limit) {
    			bytesToScavenge = uintptr(uint64(scav) + inuse - uint64(limit))
    			forceScavenge = true
    		}
    	}
    	if goal := scavenge.gcPercentGoal.Load(); goal != ^uint64(0) && growth > 0 {
    		// We just caused a heap growth, so scavenge down what will soon be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    		}
    	}
    	return n
    }
    
    func (m *ForZone) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	return n
    }
    
    func sovGenerated(x uint64) (n int) {
    	return (math_bits.Len64(x|1) + 6) / 7
    }
    func sozGenerated(x uint64) (n int) {
    	return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    	var l int
    	_ = l
    	l = len(m.Level)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.AuditID)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Stage)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.RequestURI)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Verb)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = m.User.Size()
    	n += 1 + l + sovGenerated(uint64(l))
    	if m.ImpersonatedUser != nil {
    		l = m.ImpersonatedUser.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // consistency with the corresponding package for other operating systems.
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
    
    func NsecToTimespec(nsec int64) (ts Timespec) {
    	ts.Sec = nsec / 1e9
    	ts.Nsec = nsec % 1e9
    	return
    }
    
    // TODO(brainman): fix all needed for net
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    func (ctxt *Link) xdefine(p string, t sym.SymKind, v int64) loader.Sym {
    	s := ctxt.defineInternal(p, t)
    	ctxt.loader.SetSymValue(s, v)
    	return s
    }
    
    func datoff(ldr *loader.Loader, s loader.Sym, addr int64) int64 {
    	if uint64(addr) >= Segdata.Vaddr {
    		return int64(uint64(addr) - Segdata.Vaddr + Segdata.Fileoff)
    	}
    	if uint64(addr) >= Segtext.Vaddr {
    		return int64(uint64(addr) - Segtext.Vaddr + Segtext.Fileoff)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    		}
    	}
    	return n
    }
    
    func (m *ForZone) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	return n
    }
    
    func sovGenerated(x uint64) (n int) {
    	return (math_bits.Len64(x|1) + 6) / 7
    }
    func sozGenerated(x uint64) (n int) {
    	return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	storedObj := &example.Pod{}
    	err := store.GuaranteedUpdate(ctx, key, storedObj, true, nil,
    		func(_ runtime.Object, _ storage.ResponseMeta) (runtime.Object, *uint64, error) {
    			ttl := uint64(1)
    			return updateObj, &ttl, nil
    		}, nil)
    	if err != nil {
    		t.Fatalf("Update failed: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top