Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for x1 (0.04 sec)

  1. src/runtime/asm_386.s

    	// 16 bytes loaded at this address won't cross
    	// a page boundary, so we can load it directly.
    	MOVOU	-16(AX), X1
    	ADDL	BX, BX
    	PAND	masks<>(SB)(BX*8), X1
    
    final1:
    	PXOR	X0, X1	// xor data with seed
    	AESENC	X1, X1  // scramble combo 3 times
    	AESENC	X1, X1
    	AESENC	X1, X1
    	MOVL	X1, (DX)
    	RET
    
    endofpage:
    	// address ends in 1111xxxx. Might be up against
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/crypto/md5/md5block.go

    		// eliminate bounds checks on p
    		q := p[i:]
    		q = q[:BlockSize:BlockSize]
    
    		// save current state
    		aa, bb, cc, dd := a, b, c, d
    
    		// load input block
    		x0 := byteorder.LeUint32(q[4*0x0:])
    		x1 := byteorder.LeUint32(q[4*0x1:])
    		x2 := byteorder.LeUint32(q[4*0x2:])
    		x3 := byteorder.LeUint32(q[4*0x3:])
    		x4 := byteorder.LeUint32(q[4*0x4:])
    		x5 := byteorder.LeUint32(q[4*0x5:])
    		x6 := byteorder.LeUint32(q[4*0x6:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/array_grad_test.cc

      // so we get back [nullptr, 1].
    
      AbstractTensorHandlePtr x1;
      {
        AbstractTensorHandle* x1_raw = nullptr;
        status_ = TestScalarTensorHandle<float, TF_FLOAT>(
            immediate_execution_ctx_.get(), 1.0f, &x1_raw);
        ASSERT_EQ(errors::OK, status_.code()) << status_.message();
        x1.reset(x1_raw);
      }
    
      AbstractTensorHandlePtr x2;
      {
        AbstractTensorHandle* x2_raw = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/image/draw/draw.go

    				drawCopySrc(
    					dst0.Pix[d0:], dst0.Stride, r, src0.Pix[s0:], src0.Stride, sp, 8*r.Dx())
    				return
    			}
    		}
    	}
    
    	x0, x1, dx := r.Min.X, r.Max.X, 1
    	y0, y1, dy := r.Min.Y, r.Max.Y, 1
    	if processBackward(dst, r, src, sp) {
    		x0, x1, dx = x1-1, x0-1, -1
    		y0, y1, dy = y1-1, y0-1, -1
    	}
    
    	// FALLBACK1.17
    	//
    	// Try the draw.RGBA64Image and image.RGBA64Image interfaces, part of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64.go

    		v0.AuxInt = int64ToAuxInt(c)
    		v0.AddArg2(x1, y)
    		v.AddArg(v0)
    		return true
    	}
    	// match: (CMP x0 x1:(SRLconst [c] y))
    	// cond: clobberIfDead(x1)
    	// result: (CMPshiftRL x0 y [c])
    	for {
    		x0 := v_0
    		x1 := v_1
    		if x1.Op != OpARM64SRLconst {
    			break
    		}
    		c := auxIntToInt64(x1.AuxInt)
    		y := x1.Args[0]
    		if !(clobberIfDead(x1)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Closer.java

       * @throws IOException when the given throwable is an IOException
       * @throws X1 when the given throwable is of the declared type X1
       * @throws X2 when the given throwable is of the declared type X2
       */
      public <X1 extends Exception, X2 extends Exception> RuntimeException rethrow(
          Throwable e, Class<X1> declaredType1, Class<X2> declaredType2) throws IOException, X1, X2 {
        checkNotNull(e);
        thrown = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/Closer.java

       * @throws IOException when the given throwable is an IOException
       * @throws X1 when the given throwable is of the declared type X1
       * @throws X2 when the given throwable is of the declared type X2
       */
      public <X1 extends Exception, X2 extends Exception> RuntimeException rethrow(
          Throwable e, Class<X1> declaredType1, Class<X2> declaredType2) throws IOException, X1, X2 {
        checkNotNull(e);
        thrown = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    		}
    		q[j] = qhat
    	}
    
    	putNat(qhatvp)
    }
    
    // greaterThan reports whether the two digit numbers x1 x2 > y1 y2.
    // TODO(rsc): In contradiction to most of this file, x1 is the high
    // digit and x2 is the low digit. This should be fixed.
    func greaterThan(x1, x2, y1, y2 Word) bool {
    	return x1 > y1 || x1 == y1 && x2 > y2
    }
    
    // divRecursiveThreshold is the number of divisor digits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

    .exampleblock[data-lang=kotlin] > .content .title {
        background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'><linearGradient id='g' gradientUnits='userSpaceOnUse' x1='8' y1='0' x2='0' y2='8'><stop offset='0' stop-color='%23e44857'/><stop offset='.4689' stop-color='%23c711e1'/><stop offset='1' stop-color='%237f52ff'/></linearGradient><polygon fill='url(%23g)' points='8 8 0 8 0 0 8 0 4 4'/></svg>");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa_legacy.go

    	e := hashToInt(hash, c)
    	w := new(big.Int).ModInverse(s, N)
    
    	u1 := e.Mul(e, w)
    	u1.Mod(u1, N)
    	u2 := w.Mul(r, w)
    	u2.Mod(u2, N)
    
    	x1, y1 := c.ScalarBaseMult(u1.Bytes())
    	x2, y2 := c.ScalarMult(pub.X, pub.Y, u2.Bytes())
    	x, y := c.Add(x1, y1, x2, y2)
    
    	if x.Sign() == 0 && y.Sign() == 0 {
    		return false
    	}
    	x.Mod(x, N)
    	return x.Cmp(r) == 0
    }
    
    var one = new(big.Int).SetInt64(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top