Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for ux (0.03 sec)

  1. src/encoding/binary/varint.go

    func AppendVarint(buf []byte, x int64) []byte {
    	ux := uint64(x) << 1
    	if x < 0 {
    		ux = ^ux
    	}
    	return AppendUvarint(buf, ux)
    }
    
    // PutVarint encodes an int64 into buf and returns the number of bytes written.
    // If the buffer is too small, PutVarint will panic.
    func PutVarint(buf []byte, x int64) int {
    	ux := uint64(x) << 1
    	if x < 0 {
    		ux = ^ux
    	}
    	return PutUvarint(buf, ux)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typeterm.go

    func (x *term) disjoint(y *term) bool {
    	if debug && (x.typ == nil || y.typ == nil) {
    		panic("invalid argument(s)")
    	}
    	ux := x.typ
    	if y.tilde {
    		ux = under(ux)
    	}
    	uy := y.typ
    	if x.tilde {
    		uy = under(uy)
    	}
    	return !Identical(ux, uy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. src/go/types/typeterm.go

    func (x *term) disjoint(y *term) bool {
    	if debug && (x.typ == nil || y.typ == nil) {
    		panic("invalid argument(s)")
    	}
    	ux := x.typ
    	if y.tilde {
    		ux = under(ux)
    	}
    	uy := y.typ
    	if x.tilde {
    		uy = under(uy)
    	}
    	return !Identical(ux, uy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/typeterm.go

    func (x *term) disjoint(y *term) bool {
    	if debug && (x.typ == nil || y.typ == nil) {
    		panic("invalid argument(s)")
    	}
    	ux := x.typ
    	if y.tilde {
    		ux = under(ux)
    	}
    	uy := y.typ
    	if x.tilde {
    		uy = under(uy)
    	}
    	return !types.Identical(ux, uy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. src/internal/pkgbits/encoder.go

    	n := binary.PutUvarint(buf[:], x)
    	_, err := w.Data.Write(buf[:n])
    	w.checkErr(err)
    }
    
    func (w *Encoder) rawVarint(x int64) {
    	// Zig-zag encode.
    	ux := uint64(x) << 1
    	if x < 0 {
    		ux = ^ux
    	}
    
    	w.rawUvarint(ux)
    }
    
    func (w *Encoder) rawReloc(r RelocKind, idx Index) int {
    	e := RelocEnt{r, idx}
    	if w.RelocMap != nil {
    		if i, ok := w.RelocMap[e]; ok {
    			return int(i)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager.go

    // CertificateRenewHandler defines required info for renewing a certificate
    type CertificateRenewHandler struct {
    	// Name of the certificate to be used for UX.
    	// This value can be used to trigger operations on this certificate
    	Name string
    
    	// LongName of the certificate to be used for UX
    	LongName string
    
    	// FileName defines the name (or the BaseName) of the certificate file
    	FileName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. test/divmod.go

    func idiv(x, y int64) (q, r int64) {
    	// special case for minint / -1 = minint
    	if x-1 > x && y == -1 {
    		return x, 0
    	}
    	ux := uint64(x)
    	uy := uint64(y)
    	if x < 0 {
    		ux = -ux
    	}
    	if y < 0 {
    		uy = -uy
    	}
    	uq, ur := udiv(ux, uy)
    	q = int64(uq)
    	r = int64(ur)
    	if x < 0 {
    		r = -r
    	}
    	if (x < 0) != (y < 0) {
    		q = -q
    	}
    	return q, r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 9.3K bytes
    - Viewed (0)
  8. src/debug/dwarf/buf.go

    }
    
    // Unsigned int is just a varint.
    func (b *buf) uint() uint64 {
    	x, _ := b.varint()
    	return x
    }
    
    // Signed int is a sign-extended varint.
    func (b *buf) int() int64 {
    	ux, bits := b.varint()
    	x := int64(ux)
    	if x&(1<<(bits-1)) != 0 {
    		x |= -1 << bits
    	}
    	return x
    }
    
    // Address-sized uint.
    func (b *buf) addr() uint64 {
    	switch b.format.addrsize() {
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVendor.java

            AZUL("azul systems", "Azul Zulu"),
            BELLSOFT("bellsoft", "BellSoft Liberica"),
            GRAAL_VM("graalvm community", "GraalVM Community"),
            HEWLETT_PACKARD("hewlett-packard", "HP-UX"),
            IBM("ibm", "ibm|international business machines corporation", "IBM"),
            JETBRAINS("jetbrains", "JetBrains"),
            MICROSOFT("microsoft", "Microsoft"),
            ORACLE("oracle", "Oracle"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 23:55:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/internal/pkgbits/decoder.go

    		s += 7
    	}
    	return x, overflow
    }
    
    var overflow = errors.New("pkgbits: readUvarint overflows a 64-bit integer")
    
    func (r *Decoder) rawVarint() int64 {
    	ux := r.rawUvarint()
    
    	// Zig-zag decode.
    	x := int64(ux >> 1)
    	if ux&1 != 0 {
    		x = ^x
    	}
    	return x
    }
    
    func (r *Decoder) rawReloc(k RelocKind, idx int) Index {
    	e := r.Relocs[idx]
    	assert(e.Kind == k)
    	return e.Idx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
Back to top