Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 145 for int2 (0.08 sec)

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

    (Lsh32x64 x (Const64 [c])) && uint64(c) < 32 => (SLLconst x [int32(c)])
    (Rsh32x64 x (Const64 [c])) && uint64(c) < 32 => (SRAconst x [int32(c)])
    (Rsh32Ux64 x (Const64 [c])) && uint64(c) < 32 => (SRLconst x [int32(c)])
    (Lsh16x64 x (Const64 [c])) && uint64(c) < 16 => (SLLconst x [int32(c)])
    (Rsh16x64 x (Const64 [c])) && uint64(c) < 16 => (SRAconst (SLLconst <typ.UInt32> x [16]) [int32(c+16)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    		p.As = AEBREAK
    
    	case AMOV:
    		if p.From.Type == obj.TYPE_CONST && p.From.Name == obj.NAME_NONE && p.From.Reg == obj.REG_NONE && int64(int32(p.From.Offset)) != p.From.Offset {
    			ctz := bits.TrailingZeros64(uint64(p.From.Offset))
    			val := p.From.Offset >> ctz
    			if int64(int32(val)) == val {
    				// It's ok. We can handle constants with many trailing zeros.
    				break
    			}
    			// Put >32-bit constants in memory and load them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    		return MemImmediate{Rn, AddrOffset, int32(imm12 << 2)}
    
    	case arg_Xns_mem_optional_imm12_8_unsigned:
    		Rn := RegSP(X0) + RegSP(x>>5&(1<<5-1))
    		imm12 := (x >> 10) & (1<<12 - 1)
    		return MemImmediate{Rn, AddrOffset, int32(imm12 << 3)}
    
    	case arg_Xns_mem_optional_imm7_4_signed:
    		Rn := RegSP(X0) + RegSP(x>>5&(1<<5-1))
    		imm7 := (x >> 15) & (1<<7 - 1)
    		return MemImmediate{Rn, AddrOffset, ((int32(imm7 << 2)) << 23) >> 23}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func Socket(domain, typ, proto int) (fd Handle, err error) {
    	if domain == AF_INET6 && SocketDisableIPv6 {
    		return InvalidHandle, syscall.EAFNOSUPPORT
    	}
    	return socket(int32(domain), int32(typ), int32(proto))
    }
    
    func SetsockoptInt(fd Handle, level, opt int, value int) (err error) {
    	v := int32(value)
    	return Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(&v)), int32(unsafe.Sizeof(v)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    }
    
    func SetsockoptInet4Addr(fd Handle, level, opt int, value [4]byte) (err error) {
    	return Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(&value[0])), 4)
    }
    func SetsockoptIPMreq(fd Handle, level, opt int, mreq *IPMreq) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CMPWconst (MOVDconst [x]) [y]) && int32(x)==int32(y) => (FlagEQ)
    (CMPWconst (MOVDconst [x]) [y]) && int32(x)<int32(y)  => (FlagLT)
    (CMPWconst (MOVDconst [x]) [y]) && int32(x)>int32(y)  => (FlagGT)
    
    (CMPconst (MOVDconst [x]) [y]) && x==y => (FlagEQ)
    (CMPconst (MOVDconst [x]) [y]) && x<y  => (FlagLT)
    (CMPconst (MOVDconst [x]) [y]) && x>y  => (FlagGT)
    
    (CMPWUconst (MOVDconst [x]) [y]) && int32(x)==int32(y)  => (FlagEQ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,8,opt,name=revisionHistoryLimit"`
    
    	// Minimum number of seconds for which a newly created pod should be ready
    	// without any of its container crashing for it to be considered available.
    	// Defaults to 0 (pod will be considered available as soon as it is ready)
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. pkg/controller/history/controller_history_test.go

    		}
    	}
    	ss1 := newStatefulSet(3, "ss1", types.UID("ss1"), map[string]string{"foo": "bar"})
    	ss1.Status.CollisionCount = new(int32)
    	ss2 := newStatefulSet(3, "ss2", types.UID("ss2"), map[string]string{"goo": "car"})
    	ss2.Status.CollisionCount = new(int32)
    	ss1Rev1, err := NewControllerRevision(ss1, parentKind, ss1.Spec.Template.Labels, rawTemplate(&ss1.Spec.Template), 1, ss1.Status.CollisionCount)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/types.go

    type ScaleSpec struct {
    	// desired number of instances for the scaled object.
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    }
    
    // ScaleStatus represents the current status of a scale subresource.
    type ScaleStatus struct {
    	// actual number of observed instances of the scaled object.
    	Replicas int32 `json:"replicas" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    		{`package u1c; type _ interface{~int}`, `~int`, `~int`},
    		{`package u2c; type _ interface{int | string}`, `int | string`, `int | string`},
    		{`package u3c; type _ interface{int | string | ~bool}`, `int | string | ~bool`, `int | string | ~bool`},
    		{`package u3c; type _ interface{int | string | ~bool}`, `int | string`, `int | string`},
    		{`package u3c; type _ interface{int | string | ~bool}`, `~bool`, `~bool`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top