Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 210 for x1 (0.09 sec)

  1. 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)
  2. src/runtime/cgo/gcc_arm64.S

    	.cfi_offset 23, -48
    	.cfi_offset 24, -40
    	stp x25, x26, [sp, #32]
    	.cfi_offset 25, -64
    	.cfi_offset 26, -56
    	stp x27, x28, [sp, #16]
    	.cfi_offset 27, -80
    	.cfi_offset 28, -72
    
    	mov x19, x0
    	mov x20, x1
    	mov x0, x2
    
    	blr x20
    	blr x19
    
    	ldp x27, x28, [sp, #16]
    	.cfi_restore 27
    	.cfi_restore 28
    	ldp x25, x26, [sp, #32]
    	.cfi_restore 25
    	.cfi_restore 26
    	ldp x23, x24, [sp, #48]
    	.cfi_restore 23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	F4:   "F4",
    	F5:   "F5",
    	F6:   "F6",
    	F7:   "F7",
    	M0:   "M0",
    	M1:   "M1",
    	M2:   "M2",
    	M3:   "M3",
    	M4:   "M4",
    	M5:   "M5",
    	M6:   "M6",
    	M7:   "M7",
    	X0:   "X0",
    	X1:   "X1",
    	X2:   "X2",
    	X3:   "X3",
    	X4:   "X4",
    	X5:   "X5",
    	X6:   "X6",
    	X7:   "X7",
    	X8:   "X8",
    	X9:   "X9",
    	X10:  "X10",
    	X11:  "X11",
    	X12:  "X12",
    	X13:  "X13",
    	X14:  "X14",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. test/const7.go

    	if err != nil {
    		log.Fatalf("creating temp dir: %v\n", err)
    	}
    	defer os.RemoveAll(dir)
    
    	const bitLimit = 512
    	const charLimit = 10000 // compiler-internal constant length limit
    	testProg(dir, "x1", bitLimit, "")
    	testProg(dir, "x2", bitLimit+1, "constant overflow")
    	testProg(dir, "x3", charLimit-2, "constant overflow") // -2 because literal contains 0b prefix
    	testProg(dir, "x4", charLimit-1, "excessively long constant")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/cycles4.go

    }
    
    type T4 interface {
    	m() interface{T3}
    }
    
    func _(x T1, y T3) {
    	x = y
    }
    
    // Check that interfaces are type-checked in order of
    // (embedded interface) dependencies (was issue 7158).
    
    var x1 T5 = T7(nil)
    
    type T5 interface {
    	T6
    }
    
    type T6 interface {
    	m() T7
    }
    type T7 interface {
    	T5
    }
    
    // Actual test case from issue 7158.
    
    func wrapNode() Node {
    	return wrapElement()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/math/big/arith_test.go

    		}
    	}
    	//random tests
    	for ; i < testsNumber; i++ {
    		x1 := rndW()
    		x0 := rndW()
    		y := rndW()
    		if x1 >= y {
    			continue
    		}
    		rec := reciprocalWord(y)
    		qGot, rGot := divWW(x1, x0, y, rec)
    		qWant, rWant := bits.Div(uint(x1), uint(x0), uint(y))
    		if uint(qGot) != qWant || uint(rGot) != rWant {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  9. src/text/scanner/scanner.go

    func invalidSep(x string) int {
    	x1 := ' ' // prefix char, we only care if it's 'x'
    	d := '.'  // digit, one of '_', '0' (a digit), or '.' (anything else)
    	i := 0
    
    	// a prefix counts as a digit
    	if len(x) >= 2 && x[0] == '0' {
    		x1 = lower(rune(x[1]))
    		if x1 == 'x' || x1 == 'o' || x1 == 'b' {
    			d = '0'
    			i = 2
    		}
    	}
    
    	// mantissa and exponent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arm.go

    // in the usual way by the opcode itself. Asm must use AMRC for both instructions, so
    // we return the opcode for MRC so that asm doesn't need to import obj/arm.
    func ARMMRCOffset(op obj.As, cond string, x0, x1, x2, x3, x4, x5 int64) (offset int64, op0 obj.As, ok bool) {
    	op1 := int64(0)
    	if op == arm.AMRC {
    		op1 = 1
    	}
    	bits, ok := ParseARMCondition(cond)
    	if !ok {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
Back to top