Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 110 for bytereg (0.59 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    var (
    	ap_Reg_16_20                     = &argField{Type: TypeReg, Shift: 0, BitFields: BitFields{{16, 5, 0}}}
    	ap_NegOffset_31_31_6_10_shift3   = &argField{Type: TypeNegOffset, Shift: 3, BitFields: BitFields{{31, 1, 0}, {6, 5, 0}}}
    	ap_Reg_11_15                     = &argField{Type: TypeReg, Shift: 0, BitFields: BitFields{{11, 5, 0}}}
    	ap_Reg_6_10                      = &argField{Type: TypeReg, Shift: 0, BitFields: BitFields{{6, 5, 0}}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 200.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    func isRuntimeDepPkg(pkg string) bool {
    	switch pkg {
    	case "runtime",
    		"sync/atomic",          // runtime may call to sync/atomic, due to go:linkname
    		"internal/abi",         // used by reflectcall (and maybe more)
    		"internal/bytealg",     // for IndexByte
    		"internal/chacha8rand", // for rand
    		"internal/cpu":         // for cpu features
    		return true
    	}
    	return strings.HasPrefix(pkg, "runtime/internal/") && !strings.HasSuffix(pkg, "_test")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/reflect/value.go

    		// as a default value doesn't makes sense here.
    		panic(&ValueError{"reflect.Value.IsZero", v.Kind()})
    	}
    }
    
    // isZero For all zeros, performance is not as good as
    // return bytealg.Count(b, byte(0)) == len(b)
    func isZero(b []byte) bool {
    	if len(b) == 0 {
    		return true
    	}
    	const n = 32
    	// Align memory addresses to 8 bytes.
    	for uintptr(unsafe.Pointer(&b[0]))%8 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    // of a function, before the frame has been constructed, so the standard
    // addressing for the parameters will be wrong.
    func SpillSlotAddr(spill ssa.Spill, baseReg int16, extraOffset int64) obj.Addr {
    	return obj.Addr{
    		Name:   obj.NAME_NONE,
    		Type:   obj.TYPE_MEM,
    		Reg:    baseReg,
    		Offset: spill.Offset + extraOffset,
    	}
    }
    
    var (
    	BoundsCheckFunc [ssa.BoundsKindCount]*obj.LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TypeCont", Const, 0},
    		{"TypeDir", Const, 0},
    		{"TypeFifo", Const, 0},
    		{"TypeGNULongLink", Const, 1},
    		{"TypeGNULongName", Const, 1},
    		{"TypeGNUSparse", Const, 3},
    		{"TypeLink", Const, 0},
    		{"TypeReg", Const, 0},
    		{"TypeRegA", Const, 0},
    		{"TypeSymlink", Const, 0},
    		{"TypeXGlobalHeader", Const, 0},
    		{"TypeXHeader", Const, 0},
    		{"Writer", Type, 0},
    	},
    	"archive/zip": {
    		{"(*File).DataOffset", Method, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg archive/tar, const TypeCont ideal-char
    pkg archive/tar, const TypeDir ideal-char
    pkg archive/tar, const TypeFifo ideal-char
    pkg archive/tar, const TypeLink ideal-char
    pkg archive/tar, const TypeReg ideal-char
    pkg archive/tar, const TypeRegA ideal-char
    pkg archive/tar, const TypeSymlink ideal-char
    pkg archive/tar, const TypeXGlobalHeader ideal-char
    pkg archive/tar, const TypeXHeader ideal-char
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg archive/tar, const TypeGNULongLink ideal-char
    pkg archive/tar, const TypeGNULongName = 76
    pkg archive/tar, const TypeGNULongName ideal-char
    pkg archive/tar, const TypeLink = 49
    pkg archive/tar, const TypeReg = 48
    pkg archive/tar, const TypeRegA = 0
    pkg archive/tar, const TypeSymlink = 50
    pkg archive/tar, const TypeXGlobalHeader = 103
    pkg archive/tar, const TypeXHeader = 120
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top