Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for getpfr0 (0.1 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_arm64.s

    	// mrs x0, ID_AA64ISAR1_EL1 = d5380620
    	WORD	$0xd5380620
    	MOVD	R0, ret+0(FP)
    	RET
    
    // func getpfr0() uint64
    TEXT ·getpfr0(SB),NOSPLIT,$0-8
    	// get Processor Feature Register 0 into x0
    	// mrs x0, ID_AA64PFR0_EL1 = d5380400
    	WORD	$0xd5380400
    	MOVD	R0, ret+0(FP)
    	RET
    
    // func getzfr0() uint64
    TEXT ·getzfr0(SB),NOSPLIT,$0-8
    	// get SVE Feature Register 0 into x0
    	// mrs	x0, ID_AA64ZFR0_EL1 = d5380480
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 937 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gccgo
    
    package cpu
    
    func getisar0() uint64 { return 0 }
    func getisar1() uint64 { return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 299 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc
    
    package cpu
    
    func getisar0() uint64
    func getisar1() uint64
    func getpfr0() uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 278 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    // TestARM64minimalFeatures.
    func setMinimalFeatures() {
    	ARM64.HasASIMD = true
    	ARM64.HasFP = true
    }
    
    func readARM64Registers() {
    	Initialized = true
    
    	parseARM64SystemRegisters(getisar0(), getisar1(), getpfr0())
    }
    
    func parseARM64SystemRegisters(isar0, isar1, pfr0 uint64) {
    	// ID_AA64ISAR0_EL1
    	switch extractBits(isar0, 4, 7) {
    	case 1:
    		ARM64.HasAES = true
    	case 2:
    		ARM64.HasAES = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/authentication/AbstractAuthentication.java

                }
                DefaultHostAndPort that = (DefaultHostAndPort) o;
                return getPort() == that.getPort() &&
                        Objects.equals(getHost(), that.getHost());
            }
    
            @Override
            public int hashCode() {
                return Objects.hash(getHost(), getPort());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

        def cleanup() {
            communicator.stop()
        }
    
        def "knows port"() {
            expect:
            communicator.getPort() != -1
        }
    
        def "does not know port after stopping"() {
            when:
            communicator.stop()
    
            then:
            communicator.getPort() == -1
        }
    
        def "can receive lock id and type"() {
            FileLockPacketPayload receivedPayload
    
            start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/buildServiceFromWorkAction/kotlin/buildSrc/src/main/java/WebServer.java

        interface Params extends BuildServiceParameters {
            Property<Integer> getPort();
    
            DirectoryProperty getResources();
        }
    
        private final URI uri;
    
        public WebServer() throws URISyntaxException {
            // Use the parameters
            int port = getParameters().getPort().get();
            uri = new URI(String.format("https://localhost:%d/", port));
    
            // Start the server ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/buildServiceUsingServiceReference/groovy/buildSrc/src/main/java/WebServer.java

        interface Params extends BuildServiceParameters {
            Property<Integer> getPort();
    
            DirectoryProperty getResources();
        }
    
        private final URI uri;
    
        public WebServer() throws URISyntaxException {
            // Use the parameters
            int port = getParameters().getPort().get();
            uri = new URI(String.format("https://localhost:%d/", port));
    
            // Start the server ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParser.java

            if(uri.getPath() == null){
                uri = new URI(uri.getScheme(), uri.getUserInfo(), uri.getHost(), uri.getPort(), "/", uri.getQuery(), uri.getFragment());
            }else if (!uri.getPath().endsWith("/") && !uri.getPath().endsWith(".html")) {
                uri = new URI(uri.getScheme(), uri.getUserInfo(), uri.getHost(), uri.getPort(), uri.getPath() + "/", uri.getQuery(), uri.getFragment());
    
            }
            return uri;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/syscall/exec_solaris_test.go

    // license that can be found in the LICENSE file.
    
    //go:build solaris
    
    package syscall
    
    import "unsafe"
    
    //go:cgo_import_dynamic libc_Getpgid getpgid "libc.so"
    //go:cgo_import_dynamic libc_Getpgrp getpgrp "libc.so"
    
    //go:linkname libc_Getpgid libc_Getpgid
    //go:linkname libc_Getpgrp libc_Getpgrp
    
    var (
    	libc_Getpgid,
    	libc_Getpgrp libcFunc
    )
    
    func Getpgid(pid int) (pgid int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top