Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 244 for add64 (0.04 sec)

  1. src/crypto/internal/nistec/fiat/p224_fiat64.go

    	var x10 uint64
    	var x11 uint64
    	x10, x11 = bits.Add64(x9, x6, uint64(0x0))
    	var x12 uint64
    	var x13 uint64
    	x12, x13 = bits.Add64(x7, x4, uint64(p224Uint1(x11)))
    	var x15 uint64
    	_, x15 = bits.Add64(x1, x2, uint64(0x0))
    	var x16 uint64
    	var x17 uint64
    	x16, x17 = bits.Add64(uint64(0x0), x8, uint64(p224Uint1(x15)))
    	var x18 uint64
    	var x19 uint64
    	x18, x19 = bits.Add64(uint64(0x0), x10, uint64(p224Uint1(x17)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  2. test/codegen/mathbits.go

    	// riscv64: "ADD",-"SLTU"
    	r, _ := bits.Add64(x, y, ci)
    	return r
    }
    
    func Add64M(p, q, r *[3]uint64) {
    	var c uint64
    	r[0], c = bits.Add64(p[0], q[0], c)
    	// arm64:"ADCS",-"ADD\t",-"CMP"
    	// amd64:"ADCQ",-"NEGL",-"SBBQ",-"NEGQ"
    	// ppc64x: -"ADDC", "ADDE", -"ADDZE"
    	// s390x:"ADDE",-"ADDC\t[$]-1,"
    	r[1], c = bits.Add64(p[1], q[1], c)
    	r[2], c = bits.Add64(p[2], q[2], c)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p256_fiat64.go

    	x47, x48 = bits.Add64(x46, x43, uint64(0x0))
    	var x49 uint64
    	var x50 uint64
    	x49, x50 = bits.Add64(x44, x41, uint64(p256Uint1(x48)))
    	var x51 uint64
    	var x52 uint64
    	x51, x52 = bits.Add64(x42, x39, uint64(p256Uint1(x50)))
    	x53 := (uint64(p256Uint1(x52)) + x40)
    	var x54 uint64
    	var x55 uint64
    	x54, x55 = bits.Add64(x31, x45, uint64(0x0))
    	var x56 uint64
    	var x57 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/scalar_fiat.go

    	var x47 uint64
    	var x48 uint64
    	x47, x48 = bits.Add64(x42, x39, uint64(fiatScalarUint1(x46)))
    	var x49 uint64
    	var x50 uint64
    	x49, x50 = bits.Add64(x40, x37, uint64(fiatScalarUint1(x48)))
    	var x51 uint64
    	var x52 uint64
    	x51, x52 = bits.Add64(x31, x43, uint64(0x0))
    	var x53 uint64
    	var x54 uint64
    	x53, x54 = bits.Add64(x33, x45, uint64(fiatScalarUint1(x52)))
    	var x55 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  5. src/math/bits/bits_test.go

    		{12345, 67890, 1, 80236, 0},
    		{_M64, 1, 0, 0, 1},
    		{_M64, 0, 1, 0, 1},
    		{_M64, 1, 1, 1, 1},
    		{_M64, _M64, 0, _M64 - 1, 1},
    		{_M64, _M64, 1, _M64, 1},
    	} {
    		test("Add64", Add64, a.x, a.y, a.c, a.z, a.cout)
    		test("Add64 symmetric", Add64, a.y, a.x, a.c, a.z, a.cout)
    		test("Sub64", Sub64, a.z, a.x, a.c, a.y, a.cout)
    		test("Sub64 symmetric", Sub64, a.z, a.y, a.c, a.x, a.cout)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm.go

    	return int(b)
    }
    
    // p256Add sets res = x + y.
    func p256Add(res, x, y *p256Element) {
    	var c, b uint64
    	t1 := make([]uint64, 4)
    	t1[0], c = bits.Add64(x[0], y[0], 0)
    	t1[1], c = bits.Add64(x[1], y[1], c)
    	t1[2], c = bits.Add64(x[2], y[2], c)
    	t1[3], c = bits.Add64(x[3], y[3], c)
    	t2 := make([]uint64, 4)
    	t2[0], b = bits.Sub64(t1[0], p256P[0], 0)
    	t2[1], b = bits.Sub64(t1[1], p256P[1], b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/math/bits/bits.go

    	sum = uint32(sum64)
    	carryOut = uint32(sum64 >> 32)
    	return
    }
    
    // Add64 returns the sum with carry of x, y and carry: sum = x + y + carry.
    // The carry input must be 0 or 1; otherwise the behavior is undefined.
    // The carryOut output is guaranteed to be 0 or 1.
    //
    // This function's execution time does not depend on the inputs.
    func Add64(x, y, carry uint64) (sum, carryOut uint64) {
    	sum = x + y + carry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. api/go1.12.txt

    pkg syscall (freebsd-amd64), type Dirent struct, Off int64
    pkg syscall (freebsd-amd64), type Dirent struct, Pad0 uint8
    pkg syscall (freebsd-amd64), type Dirent struct, Pad1 uint16
    pkg syscall (freebsd-amd64), type Stat_t struct, Blksize int32
    pkg syscall (freebsd-amd64), type Stat_t struct, Dev uint64
    pkg syscall (freebsd-amd64), type Stat_t struct, Gen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 21:21:53 UTC 2019
    - 13.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Arg {n} [off]) && is64BitInt(v.Type) && config.BigEndian && !v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin") =>
      (Int64Make
        (Arg <typ.UInt32> {n} [off])
        (Arg <typ.UInt32> {n} [off+4]))
    
    (Add64 x y) =>
    	(Int64Make
    		(Add32withcarry <typ.Int32>
    			(Int64Hi x)
    			(Int64Hi y)
    			(Select1 <types.TypeFlags> (Add32carry (Int64Lo x) (Int64Lo y))))
    		(Select0 <typ.UInt32> (Add32carry (Int64Lo x) (Int64Lo y))))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  10. src/strconv/ftoaryu.go

    		pow[0] += 1
    	}
    	e2 += mulByLog10Log2(q) - 127 + 119
    
    	// long multiplication
    	l1, l0 := bits.Mul64(m, pow[0])
    	h1, h0 := bits.Mul64(m, pow[1])
    	mid, carry := bits.Add64(l1, h0, 0)
    	h1 += carry
    	return h1<<9 | mid>>55, e2, mid<<9 == 0 && l0 == 0
    }
    
    func divisibleByPower5(m uint64, k int) bool {
    	if m == 0 {
    		return true
    	}
    	for i := 0; i < k; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
Back to top