- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for y2 (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_ifma.s
VPMADD52LUQ Y3, Y9, K1, Y2 // 62f2b529b4d3 VPMADD52LUQ Y2, Y9, K1, Y2 // 62f2b529b4d2 VPMADD52LUQ Y9, Y9, K1, Y2 // 62d2b529b4d1 VPMADD52LUQ 17(SP)(BP*1), Y9, K1, Y2 // 62f2b529b4942c11000000 VPMADD52LUQ -7(CX)(DX*8), Y9, K1, Y2 // 62f2b529b494d1f9ffffff VPMADD52LUQ Y3, Y1, K1, Y2 // 62f2f529b4d3
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 13.2K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/amd64error.s
// "invalid VSIB address (missing vector index)" VPGATHERQQ Y2, (BP), Y1 // ERROR "invalid instruction" // AVX2GATHER mask/index/dest #UD cases. VPGATHERQQ Y2, (BP)(X2*2), Y2 // ERROR "mask, index, and destination registers should be distinct" VPGATHERQQ Y2, (BP)(X2*2), Y7 // ERROR "mask, index, and destination registers should be distinct" VPGATHERQQ Y2, (BP)(X7*2), Y2 // ERROR "mask, index, and destination registers should be distinct"
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Jun 14 00:03:57 GMT 2023 - 8.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi.s
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 28.7K bytes - Click Count (0) -
android/guava/src/com/google/common/math/LinearTransformation.java
* must not both be identical to the values given in the first mapping. If only the {@code x} * values are identical, the transformation is vertical. If only the {@code y} values are * identical, the transformation is horizontal (i.e. the slope is zero). */ public LinearTransformation and(double x2, double y2) { checkArgument(isFinite(x2) && isFinite(y2));Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 9.7K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/vpclmulqdq_avx512f.s
VPCLMULQDQ $0, Y15, Y2, Y31 // 62436d2844ff00 or 6243ed2844ff00 VPCLMULQDQ $0, Y22, Y2, Y31 // 62236d2844fe00 or 6223ed2844fe00 VPCLMULQDQ $0, Y20, Y2, Y31 // 62236d2844fc00 or 6223ed2844fc00 VPCLMULQDQ $0, 99(R15)(R15*4), Y2, Y31 // 62036d2844bcbf6300000000 or 6203ed2844bcbf6300000000
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 8.2K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/aes_avx512f.s
VAESDECLAST Y31, Y27, Y2 // 62922520dfd7 or 6292a520dfd7 VAESDECLAST Y3, Y27, Y2 // 62f22520dfd3 or 62f2a520dfd3 VAESDECLAST Y14, Y27, Y2 // 62d22520dfd6 or 62d2a520dfd6 VAESDECLAST -17(BP)(SI*8), Y27, Y2 // 62f22520df94f5efffffff or 62f2a520df94f5efffffff VAESDECLAST (R15), Y27, Y2 // 62d22520df17 or 62d2a520df17
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 29K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_bitalg.s
VPSHUFBITQMB Y14, Y2, K3, K6 // 62d26d2b8ff6 VPSHUFBITQMB Y8, Y2, K3, K6 // 62d26d2b8ff0 VPSHUFBITQMB Y20, Y2, K3, K6 // 62b26d2b8ff4 VPSHUFBITQMB -17(BP), Y2, K3, K6 // 62f26d2b8fb5efffffff VPSHUFBITQMB -15(R14)(R15*8), Y2, K3, K6 // 62926d2b8fb4fef1ffffff
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 10.4K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vnni.s
VPDPWSSD Y8, Y2, K3, Y14 // 62526d2b52f0 VPDPWSSD Y9, Y2, K3, Y14 // 62526d2b52f1 VPDPWSSD Y22, Y2, K3, Y14 // 62326d2b52f6 VPDPWSSD 15(R8)(R14*4), Y2, K3, Y14 // 62126d2b52b4b00f000000 VPDPWSSD -7(CX)(DX*4), Y2, K3, Y14 // 62726d2b52b491f9ffffff
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 27.5K bytes - Click Count (0) -
internal/s3select/sql/timestampfuncs.go
} duration := ts2.Sub(ts1) y1, m1, d1 := ts1.Date() y2, m2, d2 := ts2.Date() switch timePart { case timePartYear: dy := int64(y2 - y1) if m2 > m1 || (m2 == m1 && d2 >= d1) { return FromInt(dy), nil } return FromInt(dy - 1), nil case timePartMonth: m1 += time.Month(12 * y1) m2 += time.Month(12 * y2) return FromInt(int64(m2 - m1)), nil case timePartDay:
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 4.8K bytes - Click Count (0) -
misc/cgo/gmp/pi.go
tmp2.Add(tmp2, numer) if big.CmpInt(tmp2, denom) >= 0 { return -1 } return tmp1.Int64() } func nextTerm(k int64) { y2 := k*2 + 1 accum.Add(accum, tmp1.Lsh(numer, 1)) accum.Mul(accum, tmp1.SetInt64(y2)) numer.Mul(numer, tmp1.SetInt64(k)) denom.Mul(denom, tmp1.SetInt64(y2)) } func eliminateDigit(d int64) { accum.Sub(accum, tmp1.Mul(denom, tmp1.SetInt64(d))) accum.Mul(accum, ten) numer.Mul(numer, ten)
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Apr 10 22:32:35 GMT 2023 - 1.3K bytes - Click Count (0)