Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for maskstr (0.97 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// This field will remain optional even if it graduates.
    	// +optional
    	StorageVersionHash string `json:"storageVersionHash,omitempty" protobuf:"bytes,10,opt,name=storageVersionHash"`
    }
    
    // Verbs masks the value so protobuf can generate
    //
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type Verbs []string
    
    func (vs Verbs) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    				fmt.Printf("v%d no longer available in %s:%s\n", vid, loc, c)
    			}
    			a[i], a = a[len(a)-1], a[:len(a)-1]
    			break
    		}
    	}
    	e.cache[vid] = a
    
    	// Update register masks.
    	if r, ok := loc.(*Register); ok {
    		e.usedRegs &^= regMask(1) << uint(r.num)
    		if cr.final {
    			e.finalRegs &^= regMask(1) << uint(r.num)
    		}
    		e.rematerializeableRegs &^= regMask(1) << uint(r.num)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (ANDQ (MOVQconst [c]) x) && isUint64PowerOfTwo(^c) && uint64(^c) >= 1<<31 => (BTRQconst [int8(log64(^c))] x)
    
    // Special-case bit patterns on first/last bit.
    // generic.rules changes ANDs of high-part/low-part masks into a couple of shifts,
    // for instance:
    //    x & 0xFFFF0000 -> (x >> 16) << 16
    //    x & 0x80000000 -> (x >> 31) << 31
    //
    // In case the mask is just one bit (like second example above), it conflicts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top