Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for UInt32 (0.11 sec)

  1. cmd/object-api-datatypes_gen.go

    	var field []byte
    	_ = field
    	var zb0001 uint32
    	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts)
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	for zb0001 > 0 {
    		zb0001--
    		field, bts, err = msgp.ReadMapKeyZC(bts)
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "Parts":
    			var zb0002 uint32
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.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)
    (CMPWUconst (MOVDconst [x]) [y]) && uint32(x)==uint32(y) => (FlagEQ)
    (CMPWUconst (MOVDconst [x]) [y]) && uint32(x)<uint32(y) => (FlagLT)
    (CMPWUconst (MOVDconst [x]) [y]) && uint32(x)>uint32(y) => (FlagGT)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    		return false
    	}
    
    	certsLen := uint32(data[4])<<16 | uint32(data[5])<<8 | uint32(data[6])
    	if uint32(len(data)) != certsLen+7 {
    		return false
    	}
    
    	numCerts := 0
    	d := data[7:]
    	for certsLen > 0 {
    		if len(d) < 4 {
    			return false
    		}
    		certLen := uint32(d[0])<<16 | uint32(d[1])<<8 | uint32(d[2])
    		if uint32(len(d)) < 3+certLen {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	l := st.l
    	var start, end uint32
    	switch kind {
    	case pkgDef:
    		start = 0
    		end = uint32(r.ndef)
    	case hashed64Def:
    		start = uint32(r.ndef)
    		end = uint32(r.ndef + r.nhashed64def)
    	case hashedDef:
    		start = uint32(r.ndef + r.nhashed64def)
    		end = uint32(r.ndef + r.nhashed64def + r.nhasheddef)
    	case nonPkgDef:
    		start = uint32(r.ndef + r.nhashed64def + r.nhasheddef)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		panic(fmt.Sprintf("invalid PPC64 rotate mask: %x %d %d", uint64(mask), rotate, nbits))
    	} else if nbits == 32 {
    		mb = bits.LeadingZeros32(uint32(mask))
    		me = 32 - bits.TrailingZeros32(uint32(mask))
    		mbn = bits.LeadingZeros32(^uint32(mask))
    		men = 32 - bits.TrailingZeros32(^uint32(mask))
    	} else {
    		mb = bits.LeadingZeros64(uint64(mask))
    		me = 64 - bits.TrailingZeros64(uint64(mask))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_FaccessatAddr() *(func(dirfd int, path string, mode uint32, flags int) (err error))
    
    var Faccessat = enter_Faccessat
    
    func enter_Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {
    	funcref := get_FaccessatAddr()
    	if funcptrtest(GetZosLibVec()+SYS___FACCESSAT_A<<4, "") == 0 {
    		*funcref = impl_Faccessat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    // and the predicator: canDecode(x) return true.
    type instFormat struct {
    	mask  uint32
    	value uint32
    	op    Op
    	// args describe how to decode the instruction arguments.
    	// args is stored as a fixed-size array.
    	// if there are fewer than len(args) arguments, args[i] == 0 marks
    	// the end of the argument list.
    	args      instArgs
    	canDecode func(instr uint32) bool
    }
    
    var (
    	errShort   = fmt.Errorf("truncated instruction")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message ArchConfig {
      // Sets pod scheduling weight for amd64 arch
      uint32 amd64 = 1;
    
      // Sets pod scheduling weight for ppc64le arch.
      uint32 ppc64le = 2;
    
      // Sets pod scheduling weight for s390x arch.
      uint32 s390x = 3;
    
      // Sets pod scheduling weight for arm64 arch.
      uint32 arm64 = 4;
    }
    
    // Configuration for CNI.
    message CNIConfig {
      // Controls whether CNI is installed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	// (and thus 8-byte alignment even on 32-bit architectures).
    	bytesMarked uint64
    
    	markrootNext uint32 // next markroot job
    	markrootJobs uint32 // number of markroot jobs
    
    	nproc  uint32
    	tstart int64
    	nwait  uint32
    
    	// Number of roots of various root types. Set by gcMarkRootPrepare.
    	//
    	// nStackRoots == len(stackRoots), but we have nStackRoots for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    	(*atomic.Uint32)(p).Store(uint32(value))
    }
    
    func (p *goroutineProfileStateHolder) CompareAndSwap(old, new goroutineProfileState) bool {
    	return (*atomic.Uint32)(p).CompareAndSwap(uint32(old), uint32(new))
    }
    
    func goroutineProfileWithLabelsConcurrent(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
    	if len(p) == 0 {
    		// An empty slice is obviously too small. Return a rough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top