Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for boothW6 (0.12 sec)

  1. src/crypto/internal/nistec/p256_asm.go

    	p256Sqr(t0, t0, 47)
    	p256Mul(z, z, t0)
    	p256Sqr(z, z, 2)
    	p256Mul(out, in, z)
    }
    
    func boothW5(in uint) (int, int) {
    	var s uint = ^((in >> 5) - 1)
    	var d uint = (1 << 6) - in - 1
    	d = (d & s) | (in & (^s))
    	d = (d >> 1) + (d & 1)
    	return int(d), int(s & 1)
    }
    
    func boothW6(in uint) (int, int) {
    	var s uint = ^((in >> 6) - 1)
    	var d uint = (1 << 7) - in - 1
    	d = (d & s) | (in & (^s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top