Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for bitcast (0.23 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	case 'Z':
    		return st.localName()
    	case 'U':
    		a, isCast := st.unqualifiedName(nil)
    		if isCast {
    			st.setTemplate(a, nil)
    		}
    		return a, false
    	case 'S':
    		if len(st.str) < 2 {
    			st.advance(1)
    			st.fail("expected substitution index")
    		}
    		var a AST
    		isCast := false
    		subst := false
    		if st.str[1] == 't' {
    			st.advance(2)
    			a, isCast = st.unqualifiedName(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		dst = add1(dst)
    		bits >>= 8
    	}
    	return totalBits
    }
    
    // materializeGCProg allocates space for the (1-bit) pointer bitmask
    // for an object of size ptrdata.  Then it fills that space with the
    // pointer bitmask specified by the program prog.
    // The bitmask starts at s.startAddr.
    // The result must be deallocated with dematerializeGCProg.
    func materializeGCProg(ptrdata uintptr, prog *byte) *mspan {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	mask_3 := (mask_1 & mask_2) << uint(GetPPC64Shiftsh(int64(sld)))
    	r_2 := GetPPC64Shiftsh(int64(sld))
    	r_3 := (r_1 + r_2) & 31 // This can wrap.
    
    	// Verify the result is still a valid bitmask of <= 32 bits.
    	if !isPPC64WordRotateMask(int64(mask_3)) || uint64(uint32(mask_3)) != mask_3 {
    		return 0
    	}
    	return encodePPC64RotateMask(r_3, int64(mask_3), 32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    	plugin "k8s.io/kubernetes/pkg/kubelet/cm/devicemanager/plugin/v1beta1"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager/bitmask"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager"
    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AND (MOVDconst [m]) (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    
    // Note, any rotated word bitmask is still a valid word bitmask.
    (ROTLWconst [r] (AND (MOVDconst [m]) x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,rotateLeft32(m,r),32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		var s *mspan
    		if r.useGCProg() {
    			// This path is pretty unlikely, an object large enough
    			// to have a GC program allocated on the stack.
    			// We need some space to unpack the program into a straight
    			// bitmask, which we allocate/free here.
    			// TODO: it would be nice if there were a way to run a GC
    			// program without having to store all its bits. We'd have
    			// to change from a Lempel-Ziv style program to something else.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top