Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 965 for add64 (0.41 sec)

  1. src/crypto/internal/hpke/hpke.go

    		return nil, errors.New("unsupported KEM id")
    	}
    	return kemInfo.curve.NewPublicKey(bytes)
    }
    
    type uint128 struct {
    	hi, lo uint64
    }
    
    func (u uint128) addOne() uint128 {
    	lo, carry := bits.Add64(u.lo, 1, 0)
    	return uint128{u.hi + carry, lo}
    }
    
    func (u uint128) bitLen() int {
    	return bits.Len64(u.hi) + bits.Len64(u.lo)
    }
    
    func (u uint128) bytes() []byte {
    	b := make([]byte, 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. test/codegen/bits.go

    	// amd64:"BTSQ\t[$]63"
    	n += a | (1 << 63)
    
    	// amd64:"BTSQ\t[$]60"
    	n += a | (1 << 60)
    
    	// amd64:"ORQ\t[$]1"
    	n += a | (1 << 0)
    
    	return n
    }
    
    func bitoff64(a, b uint64) (n uint64) {
    	// amd64:"BTRQ"
    	n += b &^ (1 << (a & 63))
    
    	// amd64:"BTRQ\t[$]63"
    	n += a &^ (1 << 63)
    
    	// amd64:"BTRQ\t[$]60"
    	n += a &^ (1 << 60)
    
    	// amd64:"ANDQ\t[$]-2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    					continue
    				}
    				v.reset(OpAdd64)
    				v.AddArg2(y, z)
    				return true
    			}
    		}
    		break
    	}
    	// match: (Add64 (Add64 i:(Const64 <t>) z) x)
    	// cond: (z.Op != OpConst64 && x.Op != OpConst64)
    	// result: (Add64 i (Add64 <t> z x))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpAdd64 {
    				continue
    			}
    			_ = v_0.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Add16", argLength: 2, commutative: true},
    	{name: "Add32", argLength: 2, commutative: true},
    	{name: "Add64", argLength: 2, commutative: true},
    	{name: "AddPtr", argLength: 2}, // For address calculations.  arg0 is a pointer and arg1 is an int.
    	{name: "Add32F", argLength: 2, commutative: true},
    	{name: "Add64F", argLength: 2, commutative: true},
    
    	{name: "Sub8", argLength: 2}, // arg0 - arg1
    	{name: "Sub16", argLength: 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		}
    	}
    	addF("math", "RoundToEven",
    		makeRoundAMD64(ssa.OpRoundToEven),
    		sys.AMD64)
    	addF("math", "Floor",
    		makeRoundAMD64(ssa.OpFloor),
    		sys.AMD64)
    	addF("math", "Ceil",
    		makeRoundAMD64(ssa.OpCeil),
    		sys.AMD64)
    	addF("math", "Trunc",
    		makeRoundAMD64(ssa.OpTrunc),
    		sys.AMD64)
    
    	/******** math/bits ********/
    	addF("math/bits", "TrailingZeros64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritedec64.go

    	}
    	return false
    }
    func rewriteValuedec64_OpAdd64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Add64 x y)
    	// result: (Int64Make (Add32withcarry <typ.Int32> (Int64Hi x) (Int64Hi y) (Select1 <types.TypeFlags> (Add32carry (Int64Lo x) (Int64Lo y)))) (Select0 <typ.UInt32> (Add32carry (Int64Lo x) (Int64Lo y))))
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64.s

    Cherry Zhang <******@****.***> 1554826227 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 3.3K bytes
    - Viewed (0)
Back to top