Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Potato (0.07 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    // me | mb<<8 | rotate<<16 | nbits<<24 where me and mb can
    // be used to regenerate the input mask.
    func encodePPC64RotateMask(rotate, mask, nbits int64) int64 {
    	var mb, me, mbn, men int
    
    	// Determine boundaries and then decode them
    	if mask == 0 || ^mask == 0 || rotate >= nbits {
    		panic(fmt.Sprintf("invalid PPC64 rotate mask: %x %d %d", uint64(mask), rotate, nbits))
    	} else if nbits == 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)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (RotateLeft(32|64) ...) => ((ROTLW|ROTL) ...)
    
    // Constant rotate generation
    (ROTLW  x (MOVDconst [c])) => (ROTLWconst  x [c&31])
    (ROTL   x (MOVDconst [c])) => (ROTLconst   x [c&63])
    
    // Combine rotate and mask operations
    (ANDconst [m] (ROTLWconst [r] x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,m,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)
  3. cmd/batch-handlers.go

    		batchLogIf(j.ctx, err)
    		return
    	}
    	for result := range results {
    		if result.Err != nil {
    			batchLogIf(j.ctx, result.Err)
    			continue
    		}
    		// ignore batch-replicate.bin and batch-rotate.bin entries
    		if strings.HasSuffix(result.Item.Name, slashSeparator) {
    			continue
    		}
    		req := &BatchJobRequest{}
    		if err := req.load(ctx, j.objLayer, result.Item.Name); err != nil {
    			batchLogIf(ctx, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top