- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for M0 (0.05 sec)
-
src/cmd/asm/internal/asm/testdata/386enc.s
TEXT asmtest(SB),DUPOK|NOSPLIT,$0 // Instructions that were encoded with BYTE sequences. // Included to simplify validation of CL that fixed that. MOVQ (AX), M0 // 0f6f00 MOVQ M0, 8(SP) // 0f7f442408 MOVQ 8(SP), M0 // 0f6f442408 MOVQ M0, (AX) // 0f7f00 MOVQ M0, (BX) // 0f7f03 // On non-64bit arch, Go asm allowed uint32 offsets instead of int32. // These tests check that property for backwards-compatibility.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Apr 11 18:32:50 UTC 2023 - 1.2K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
BYTE $0x38 BYTE $0x03 MOVD $p256ord<>+0x00(SB), R4 VL 16(R4), M0 VL 0(R4), M1 VL (0*16)(x_ptr), X0 VPDI $0x4, X0, X0, X0 VL (1*16)(x_ptr), X1 VPDI $0x4, X1, X1, X1 VL (0*16)(y_ptr), Y0 VPDI $0x4, Y0, Y0, Y0 VL (1*16)(y_ptr), Y1 VPDI $0x4, Y1, Y1, Y1 // ---------- VREPF $3, Y0, YDIG VMLF X0, YDIG, ADD1 VMLF ADD1, K0, MK0 VREPF $3, MK0, MK0 VMLF X1, YDIG, ADD2 VMLHF X0, YDIG, ADD1H VMLHF X1, YDIG, ADD2H VMALF M0, MK0, ADD1, RED1 VMALHF M0, MK0, ADD1, RED1H VMALF M1, MK0, ADD2, RED2 VMALHF M1, MK0, ADD2,...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
doc/go_spec.html
p.M0() // ((*p).T0).M0() M0 expects *T0 receiver p.M1() // ((*p).T1).M1() M1 expects T1 receiver p.M2() // p.M2() M2 expects *T2 receiver t.M2() // (&t).M2() M2 expects *T2 receiver, see section on Calls </pre> <p> but the following is invalid: </p> <pre> q.M0() // (*q).M0 is valid but not a field selector
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (1)