- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for x1 (0.11 sec)
-
src/cmd/asm/internal/asm/testdata/loong64enc1.s
XVANDV X1, X2, X3 // 43042675 XVORV X1, X2, X3 // 43842675 XVXORV X1, X2, X3 // 43042775 XVNORV X1, X2, X3 // 43842775 XVANDNV X1, X2, X3 // 43042875 XVORNV X1, X2, X3 // 43842875 XVANDV X1, X2 // 42042675 XVORV X1, X2 // 42842675 XVXORV X1, X2 // 42042775 XVNORV X1, X2 // 42842775 XVANDNV X1, X2 // 42042875 XVORNV X1, X2 // 42842875
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 27 00:46:52 UTC 2025 - 44.5K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
16(AX), X1 AESDEC X1, X0 ADDQ $0x20, AX Ldec192: MOVUPS (AX), X1 AESDEC X1, X0 MOVUPS 16(AX), X1 AESDEC X1, X0 ADDQ $0x20, AX Ldec128: MOVUPS (AX), X1 AESDEC X1, X0 MOVUPS 16(AX), X1 AESDEC X1, X0 MOVUPS 32(AX), X1 AESDEC X1, X0 MOVUPS 48(AX), X1 AESDEC X1, X0 MOVUPS 64(AX), X1 AESDEC X1, X0 MOVUPS 80(AX), X1 AESDEC X1, X0 MOVUPS 96(AX), X1 AESDEC X1, X0 MOVUPS 112(AX), X1 AESDEC X1, X0 MOVUPS 128(AX), X1 AESDEC X1, X0 MOVUPS 144(AX), X1 AESDECLAST X1, X0 MOVUPS X0, (DX) RET // func expandKeyAsm(nr int,...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64error.s
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. TEXT errors(SB),$0 VSHUF4IV $16, V1, V2 // ERROR "operand out of range 0 to 15" XVSHUF4IV $16, X1, X2 // ERROR "operand out of range 0 to 15" ADDV16 $1, R4, R5 // ERROR "the constant must be a multiple of 65536." ADDV16 $65535, R4, R5 // ERROR "the constant must be a multiple of 65536."
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Oct 28 01:21:57 UTC 2025 - 689 bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
private InstantiableFactoryMethodChosen(String name) { this.name = name; } public InstantiableFactoryMethodChosen(NotInstantiable x) { checkNotNull(x); this.name = "x1"; } public static InstantiableFactoryMethodChosen create(NotInstantiable x) { return new InstantiableFactoryMethodChosen(x); }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 36.3K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
x0 := p.getConstant(prog, op, &a[0]) x1 := p.getConstant(prog, op, &a[1]) x2 := int64(p.getRegister(prog, op, &a[2])) x3 := int64(p.getRegister(prog, op, &a[3])) x4 := int64(p.getRegister(prog, op, &a[4])) x5 := p.getConstant(prog, op, &a[5]) // Cond is handled specially for this instruction. offset, MRC, ok := arch.ARMMRCOffset(op, cond, x0, x1, x2, x3, x4, x5) if !ok {
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Oct 21 15:13:08 UTC 2025 - 26.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64.s
MOVF F0, F1 // d3000020 MOVF X1, F3 // d38100f0 MOVF F3, X1 // d38001e0 MOVF X0, F3 // d30100f0 MOVF $(0.0), F3 // d30100f0 // Converted to load of symbol (AUIPC + FLW) MOVF $(709.78271289338397), F3 // 970f000087a10f00 MOVD 4(X5), F0 // 07b04200 MOVD F0, 4(X5) // 27b20200 MOVD F0, F1 // d3000022 MOVD F3, X1 // d38001e2 MOVD X1, F3 // d38100f2
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 73.7K bytes - Viewed (0) -
doc/go_spec.html
Thus the length and capacity of a slice literal are the maximum element index plus one. A slice literal has the form </p> <pre> []T{x1, x2, … xn} </pre> <p> and is shorthand for a slice operation applied to an array: </p> <pre> tmp := [n]T{x1, x2, … xn} tmp[0 : n] </pre> <p> Within a composite literal of array, slice, or map type <code>T</code>,
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 02 23:07:19 UTC 2025 - 286.5K bytes - Viewed (1)