Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 508 for y$ (0.03 sec)

  1. src/math/big/arith_ppc64x.s

    	MOVDU 32(R8), R15     // R15 = x[i+3]
    	MOVD  8(R9), R16      // R16 = y[i]
    	MOVD  16(R9), R17     // R17 = y[i+1]
    	MOVD  24(R9), R18     // R18 = y[i+2]
    	MOVDU 32(R9), R19     // R19 = y[i+3]
    	ADDE  R11, R16, R20   // R20 = x[i] + y[i] + CA
    	ADDE  R12, R17, R21   // R21 = x[i+1] + y[i+1] + CA
    	ADDE  R14, R18, R22   // R22 = x[i+2] + y[i+2] + CA
    	ADDE  R15, R19, R23   // R23 = x[i+3] + y[i+3] + CA
    	MOVD  R20, 8(R10)     // z[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/under.go

    	if x, _ := x.(*Chan); x != nil {
    		if y, _ := y.(*Chan); y != nil && Identical(x.elem, y.elem) {
    			// We have channels that differ in direction only.
    			// If there's an unrestricted channel, select the restricted one.
    			switch {
    			case x.dir == SendRecv:
    				return y
    			case y.dir == SendRecv:
    				return x
    			}
    		}
    	}
    
    	// types are different
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm.go

    	p256Inverse(y, &p.z)
    	p256Sqr(x, y, 1)
    	p256Mul(y, y, x)
    
    	p256Mul(x, &p.x, x)
    	p256Mul(y, &p.y, y)
    
    	p256FromMont(x, x)
    	p256FromMont(y, y)
    }
    
    // BytesX returns the encoding of the x-coordinate of p, as specified in SEC 1,
    // Version 2.0, Section 2.3.5, or an error if p is the point at infinity.
    func (p *P256Point) BytesX() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    			check.representable(y, Typ[Uint])
    			if y.mode == invalid {
    				x.mode = invalid
    				return
    			}
    		}
    	} else {
    		// Check that RHS is otherwise at least of integer type.
    		switch {
    		case allInteger(y.typ):
    			if !allUnsigned(y.typ) && !check.verifyVersionf(y, go1_13, invalidOp+"signed shift count %s", y) {
    				x.mode = invalid
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/crypto/cipher/gcm.go

    func (g *gcm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
    	var y gcmFieldElement
    	g.update(&y, additionalData)
    	g.update(&y, ciphertext)
    
    	y.low ^= uint64(len(additionalData)) * 8
    	y.high ^= uint64(len(ciphertext)) * 8
    
    	g.mul(&y)
    
    	byteorder.BePutUint64(out, y.low)
    	byteorder.BePutUint64(out[8:], y.high)
    
    	subtle.XORBytes(out, out, tagMask[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/go/types/under.go

    	if x, _ := x.(*Chan); x != nil {
    		if y, _ := y.(*Chan); y != nil && Identical(x.elem, y.elem) {
    			// We have channels that differ in direction only.
    			// If there's an unrestricted channel, select the restricted one.
    			switch {
    			case x.dir == SendRecv:
    				return y
    			case y.dir == SendRecv:
    				return x
    			}
    		}
    	}
    
    	// types are different
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat.go

    func ctMask(on choice) uint { return -uint(on) }
    
    // ctEq returns 1 if x == y, and 0 otherwise. The execution time of this
    // function does not depend on its inputs.
    func ctEq(x, y uint) choice {
    	// If x != y, then either x - y or y - x will generate a carry.
    	_, c1 := bits.Sub(x, y, 0)
    	_, c2 := bits.Sub(y, x, 0)
    	return not(choice(c1 | c2))
    }
    
    // Nat represents an arbitrary natural number
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/validators.cc

    // Returns true if the given `op`
    //   * has an attribute with the given `name`,
    //   * and the attribute is an integer list of the form [1, X, Y, 1],
    // and writes X, Y as 32-bit integer attribute to `x`, `y`.
    bool TFIntListIs1XY1(Operation *op, StringRef name, IntegerAttr *x,
                         IntegerAttr *y) {
      auto attr = op->getAttrOfType<ArrayAttr>(name);
      if (!attr) return false;
    
      auto elements = attr.getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. test/codegen/mathbits.go

    	// mips64: "MULVU"
    	// riscv64:"MULHU","MUL"
    	return bits.Mul64(x, y)
    }
    
    func Mul64HiOnly(x, y uint64) uint64 {
    	// arm64:"UMULH",-"MUL"
    	// riscv64:"MULHU",-"MUL\t"
    	hi, _ := bits.Mul64(x, y)
    	return hi
    }
    
    func Mul64LoOnly(x, y uint64) uint64 {
    	// arm64:"MUL",-"UMULH"
    	// riscv64:"MUL\t",-"MULHU"
    	_, lo := bits.Mul64(x, y)
    	return lo
    }
    
    // --------------- //
    //    bits.Div*    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritegeneric.go

    		break
    	}
    	// match: (Add16 x (Sub16 y x))
    	// result: y
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpSub16 {
    				continue
    			}
    			_ = v_1.Args[1]
    			y := v_1.Args[0]
    			if x != v_1.Args[1] {
    				continue
    			}
    			v.copyOf(y)
    			return true
    		}
    		break
    	}
    	// match: (Add16 x (Add16 y (Sub16 z x)))
    	// result: (Add16 y z)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
Back to top