Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for M4 (0.02 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	RIP:  "IP",
    	F0:   "F0",
    	F1:   "F1",
    	F2:   "F2",
    	F3:   "F3",
    	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",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/math/bits/bits.go

    	// The following pattern shows the general approach:
    	//
    	//   x = x>>1&(m0&m) + x&(m0&m)
    	//   x = x>>2&(m1&m) + x&(m1&m)
    	//   x = x>>4&(m2&m) + x&(m2&m)
    	//   x = x>>8&(m3&m) + x&(m3&m)
    	//   x = x>>16&(m4&m) + x&(m4&m)
    	//   x = x>>32&(m5&m) + x&(m5&m)
    	//   return int(x)
    	//
    	// Masking (& operations) can be left away when there's no
    	// danger that a field's sum will carry over into the next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

            def m3 = ivyRepo.module('org.test', 'm3', '1.0')
                .dependsOn(m2)
                .publish()
            mavenRepo.module('org.test', 'm4', '1.0')
                .dependsOn(m3)
                .publish()
    
            buildFile << """
    dependencies {
        conf group: 'org.test', name: 'm4', version: '1.0'
    }
    """
            expect:
            succeeds 'checkDep'
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256block_amd64.s

    #define rounds12to59(m,c,a,t,sha256Msg1,movop)			\
    	movop			(m,msg)				\
    	PADDD			(c*32)(sha256Constants), msg	\
    	SHA256RNDS2		msg, state0, state1		\
    	VMOVDQA			m, m4				\
    	PALIGNR			$4, a, m4			\
    	PADDD			m4, t				\
    	SHA256MSG2		m, t				\
    	PSHUFD			$0x0e, msg, msg			\
    	SHA256RNDS2		msg, state1, state0		\
    	sha256Msg1		(m,a)
    
    TEXT ·block(SB), 0, $536-32
    	CMPB	·useSHA(SB), $1
    	JE	sha_ni
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. src/go/types/issues_test.go

    import "b"
    type I4 interface {
    	M4(_ struct { *string })
    }
    var _ I4 = b.S{}
    `,
    			`package b
    type S struct{}
    func (S) M4(struct { *string }) {}
    `,
    			`6:12: cannot use b[.]S{} [(]value of type b[.]S[)] as I4 value in variable declaration: b[.]S does not implement I4 [(]wrong type for method M4[)]
    .*have M4[(]struct{[*]string /[*] package b [*]/ }[)]
    .*want M4[(]struct{[*]string /[*] package main [*]/ }[)]`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/issues_test.go

    import "b"
    type I4 interface {
    	M4(_ struct { *string })
    }
    var _ I4 = b.S{}
    `,
    			`package b
    type S struct{}
    func (S) M4(struct { *string }) {}
    `,
    			`6:12: cannot use b[.]S{} [(]value of type b[.]S[)] as I4 value in variable declaration: b[.]S does not implement I4 [(]wrong type for method M4[)]
    .*have M4[(]struct{[*]string /[*] package b [*]/ }[)]
    .*want M4[(]struct{[*]string /[*] package main [*]/ }[)]`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

             <trusted-key id="B000000000000000000000000000000000000000">
                <trusting name="m3" version="1.4" file="file.zip"/>
                <trusting name="m4" file="other-file.zip" regex="true"/>
             </trusted-key>
             <trusted-key id="C000000000000000000000000000000000000000" group="g3" name="m2" version="1.0" regex="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

            builder.addTrustedKey("D000000000000000000000000000000000000000", null, "m3", "1.4", "file.zip", false)
            builder.addTrustedKey("D000000000000000000000000000000000000000", null, "m4", null, "other-file.zip", true)
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. test/nilptr3.go

    }
    func m2(m map[int][800]byte) byte {
    	v := m[3] // ERROR "removed nil check"
    	return v[5]
    }
    func m3(m map[int][80]byte) (byte, bool) {
    	v, ok := m[3] // ERROR "removed nil check"
    	return v[5], ok
    }
    func m4(m map[int][800]byte) (byte, bool) {
    	v, ok := m[3] // ERROR "removed nil check"
    	return v[5], ok
    }
    func p1() byte {
    	p := new([100]byte)
    	return p[5] // ERROR "removed nil check"
    }
    
    type SS struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv11-ECDHE-ECDSA-AES

    000002d0  f8 ee ad 64 46 6e 53 1d  d6 57 55 6a 4c bc 37 1f  |...dFnS..WUjL.7.|
    000002e0  e7 9c c4 bb 23 cb af 27  2a 19 94 02 42 01 35 b4  |....#..'*...B.5.|
    000002f0  a1 f0 c2 6d 34 f0 05 a7  25 9a 22 6c 3e 41 e7 a0  |...m4...%."l>A..|
    00000300  1e 8f 5a 28 b1 5a 88 46  48 7e 40 93 f2 38 9d 33  |..Z(.Z.FH~@..8.3|
    00000310  6b b5 92 ed 6d 44 07 03  c8 77 ee 3a 80 37 1e f9  |k...mD...w.:.7..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top