Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DECQ (0.5 sec)

  1. test/codegen/arithmetic.go

    	ef -= arr[b]
    	// 386:`SUBL\s[A-Z]+,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[c] -= b
    	// 386:`ADDL\s[$]-15,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[d] -= 15
    	// 386:`DECL\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[b]--
    	// amd64:`DECQ\s64\([A-Z]+\)`
    	arr[8]--
    	// 386:"SUBL\t4"
    	// amd64:"SUBQ\t8"
    	return arr[0] - arr[1]
    }
    
    func SubFromConst(a int) int {
    	// ppc64x: `SUBC\tR[0-9]+,\s[$]40,\sR`
    	b := 40 - a
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    				atomic.AddInt32(&p.activeMRFWorkers, 1)
    				replicateObject(p.ctx, v, p.objLayer)
    				atomic.AddInt32(&p.activeMRFWorkers, -1)
    				globalReplicationStats.decQ(v.Bucket, v.Size, v.DeleteMarker, v.OpType)
    
    			default:
    				bugLogIf(p.ctx, fmt.Errorf("unknown mrf replication type: %T", oi), "unknown-mrf-replicate-type")
    			}
    		case <-p.mrfWorkerKillCh:
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	// xor in seed
    	PXOR	X0, X8
    	PXOR	X1, X9
    	PXOR	X2, X10
    	PXOR	X3, X11
    	PXOR	X4, X12
    	PXOR	X5, X13
    	PXOR	X6, X14
    	PXOR	X7, X15
    
    	// compute number of remaining 128-byte blocks
    	DECQ	CX
    	SHRQ	$7, CX
    
    	PCALIGN $16
    aesloop:
    	// scramble state
    	AESENC	X8, X8
    	AESENC	X9, X9
    	AESENC	X10, X10
    	AESENC	X11, X11
    	AESENC	X12, X12
    	AESENC	X13, X13
    	AESENC	X14, X14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top