Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 284 for x1 (0.05 sec)

  1. src/crypto/internal/edwards25519/field/fe_alias_test.go

    	return func(v, x Element) bool {
    		x1, v1 := x, x
    
    		// Calculate a reference f(x) without aliasing.
    		if out := f(&v, &x); out != &v && isInBounds(out) {
    			return false
    		}
    
    		// Test aliasing the argument and the receiver.
    		if out := f(&v1, &v1); out != &v1 || v1 != v {
    			return false
    		}
    
    		// Ensure the arguments was not modified.
    		return x == x1
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue26213/test26213.go

    package issue26213
    
    /*
    #include "jni.h"
    */
    import "C"
    import (
    	"testing"
    )
    
    func Test26213(t *testing.T) {
    	var x1 C.jobject = 0 // Note: 0, not nil. That makes sure we use uintptr for these types.
    	_ = x1
    	var x2 C.jclass = 0
    	_ = x2
    	var x3 C.jthrowable = 0
    	_ = x3
    	var x4 C.jstring = 0
    	_ = x4
    	var x5 C.jarray = 0
    	_ = x5
    	var x6 C.jbooleanArray = 0
    	_ = x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 835 bytes
    - Viewed (0)
  3. test/fixedbugs/issue23719.go

    	v2 := [2]int32{-1, 99}
    	if v1 == v2 {
    		panic("bad comparison")
    	}
    
    	w1 := [2]int16{-1, 88}
    	w2 := [2]int16{-1, 99}
    	if w1 == w2 {
    		panic("bad comparison")
    	}
    	x1 := [4]int16{-1, 88, 88, 88}
    	x2 := [4]int16{-1, 99, 99, 99}
    	if x1 == x2 {
    		panic("bad comparison")
    	}
    
    	a1 := [2]int8{-1, 88}
    	a2 := [2]int8{-1, 99}
    	if a1 == a2 {
    		panic("bad comparison")
    	}
    	b1 := [4]int8{-1, 88, 88, 88}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 18:24:33 UTC 2018
    - 826 bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi.s

    	VPERMI2B X15, X1, K7, X31                          // 6242750f75ff
    	VPERMI2B X0, X1, K7, X31                           // 6262750f75f8
    	VPERMI2B X16, X1, K7, X31                          // 6222750f75f8
    	VPERMI2B 17(SP), X1, K7, X31                       // 6262750f75bc2411000000
    	VPERMI2B -17(BP)(SI*4), X1, K7, X31                // 6262750f75bcb5efffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 28.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_indirect_tidy.txt

    replace (
    	a v0.0.0 => ./a
    	b v0.0.0 => ./b
    	i v0.0.0 => ./i
    	x v0.1.0 => ./x1
    	x v0.2.0 => ./x2
    )
    -- main.go --
    package main
    
    import _ "a"
    
    func main() {}
    -- a/go.mod --
    module a
    go 1.13
    require (
    	x v0.2.0
    	b v0.0.0
    )
    -- a/a.go --
    package a
    -- b/go.mod --
    module b
    go 1.13
    require x v0.1.0
    -- x1/go.mod --
    module x
    go 1.13
    require (
    	b v0.0.0
    	i v0.0.0
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 19:43:01 UTC 2019
    - 804 bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_riscv64.S

     * Called from standard RISCV ELF psABI, where x8-x9, x18-x27, f8-f9 and
     * f18-f27 are callee-save, so they must be saved explicitly, along with
     * x1 (LR).
     */
    .globl crosscall1
    crosscall1:
    	sd	x1, -200(sp)
    	addi	sp, sp, -200
    	sd	x8, 8(sp)
    	sd	x9, 16(sp)
    	sd	x18, 24(sp)
    	sd	x19, 32(sp)
    	sd	x20, 40(sp)
    	sd	x21, 48(sp)
    	sd	x22, 56(sp)
    	sd	x23, 64(sp)
    	sd	x24, 72(sp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/image/geom.go

    var ZR Rectangle
    
    // Rect is shorthand for [Rectangle]{Pt(x0, y0), [Pt](x1, y1)}. The returned
    // rectangle has minimum and maximum coordinates swapped if necessary so that
    // it is well-formed.
    func Rect(x0, y0, x1, y1 int) Rectangle {
    	if x0 > x1 {
    		x0, x1 = x1, x0
    	}
    	if y0 > y1 {
    		y0, y1 = y1, y0
    	}
    	return Rectangle{Point{x0, y0}, Point{x1, y1}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (BIC x0 x1:(SLLconst [c] y)) && clobberIfDead(x1) => (BICshiftLL x0 y [c])
    (BIC x0 x1:(SRLconst [c] y)) && clobberIfDead(x1) => (BICshiftRL x0 y [c])
    (BIC x0 x1:(SRAconst [c] y)) && clobberIfDead(x1) => (BICshiftRA x0 y [c])
    (BIC x0 x1:(RORconst [c] y)) && clobberIfDead(x1) => (BICshiftRO x0 y [c])
    (ORN x0 x1:(SLLconst [c] y)) && clobberIfDead(x1) => (ORNshiftLL x0 y [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		// Diagonal round.
    		x0, x4, x8, x12 = quarterRound(x0, x4, x8, x12)
    		x1, x5, x9, x13 = quarterRound(x1, x5, x9, x13)
    		x2, x6, x10, x14 = quarterRound(x2, x6, x10, x14)
    		x3, x7, x11, x15 = quarterRound(x3, x7, x11, x15)
    
    		// Column round.
    		x0, x5, x10, x15 = quarterRound(x0, x5, x10, x15)
    		x1, x6, x11, x12 = quarterRound(x1, x6, x11, x12)
    		x2, x7, x8, x13 = quarterRound(x2, x7, x8, x13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	VCVTPS2QQ X19, K3, X1                              // 62b17d0b7bcb
    	VCVTPS2QQ X13, K3, X1                              // 62d17d0b7bcd
    	VCVTPS2QQ X2, K3, X1                               // 62f17d0b7bca
    	VCVTPS2QQ (BX), K3, X1                             // 62f17d0b7b0b
    	VCVTPS2QQ -17(BP)(SI*1), K3, X1                    // 62f17d0b7b8c35efffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 194.8K bytes
    - Viewed (0)
Back to top