Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 272 for facility (0.18 sec)

  1. src/internal/cpu/cpu.go

    	HasSHA512 bool // K{I,L}MD-SHA-512 functions
    	HasSHA3   bool // K{I,L}MD-SHA3-{224,256,384,512} and K{I,L}MD-SHAKE-{128,256} functions
    	HasVX     bool // vector facility. Note: the runtime sets this when it processes auxv records.
    	HasVXE    bool // vector-enhancements facility 1
    	HasKDSA   bool // elliptic curve functions
    	HasECDSA  bool // NIST curves
    	HasEDDSA  bool // Edwards curves
    	_         CacheLinePad
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/syscall/route_bsd.go

    	}
    }
    
    // RouteRIB returns routing information base, as known as RIB,
    // which consists of network facility information, states and
    // parameters.
    //
    // Deprecated: Use golang.org/x/net/route instead.
    func RouteRIB(facility, param int) ([]byte, error) {
    	mib := []_C_int{CTL_NET, AF_ROUTE, 0, 0, _C_int(facility), _C_int(param)}
    	// Find size.
    	n := uintptr(0)
    	if err := sysctl(mib, nil, &n, nil, 0); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_s390x.go

    package crc32
    
    import "internal/cpu"
    
    const (
    	vxMinLen    = 64
    	vxAlignMask = 15 // align to 16 bytes
    )
    
    // hasVX reports whether the machine has the z/Architecture
    // vector facility installed and enabled.
    var hasVX = cpu.S390X.HasVX
    
    // vectorizedCastagnoli implements CRC32 using vector instructions.
    // It is defined in crc32_s390x.s.
    //
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/bytealg/indexbyte_s390x.s

    	MOVD	R3, 0(R2)
    	RET
    
    notfound:
    	MOVD	$-1, 0(R2)
    	RET
    
    large:
    	MOVBZ	internal∕cpu·S390X+const_offsetS390xHasVX(SB), R1
    	CMPBNE	R1, $0, vectorimpl
    
    srstimpl:                       // no vector facility
    	MOVBZ	R5, R0          // c needs to be in R0, leave until last minute as currently R0 is expected to be 0
    srstloop:
    	WORD	$0xB25E0083     // srst %r8, %r3 (search the range [R3, R8))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_s390x.s

    TEXT ·stfle(SB), NOSPLIT|NOFRAME, $0-32
    	MOVD $ret+0(FP), R1
    	MOVD $3, R0          // last doubleword index to store
    	XC   $32, (R1), (R1) // clear 4 doublewords (32 bytes)
    	WORD $0xb2b01000     // store facility list extended (STFLE)
    	RET
    
    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KM-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasSHA512 bool // K{I,L}MD-SHA-512 functions
    	HasSHA3   bool // K{I,L}MD-SHA3-{224,256,384,512} and K{I,L}MD-SHAKE-{128,256} functions
    	HasVX     bool // vector facility
    	HasVXE    bool // vector-enhancements facility 1
    	_         CacheLinePad
    }
    
    func init() {
    	archInit()
    	initOptions()
    	processOptions()
    }
    
    // options contains the cpu debug options that can be used in GODEBUG.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_s390x.s

    TEXT ·stfle(SB), NOSPLIT|NOFRAME, $0-32
    	MOVD $ret+0(FP), R1
    	MOVD $3, R0          // last doubleword index to store
    	XC   $32, (R1), (R1) // clear 4 doublewords (32 bytes)
    	WORD $0xb2b01000     // store facility list extended (STFLE)
    	RET
    
    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KM-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/net/net_fake_test.go

    //go:build js || wasip1
    
    package net
    
    // GOOS=js and GOOS=wasip1 do not have typical socket networking capabilities
    // found on other platforms. To help run test suites of the stdlib packages,
    // an in-memory "fake network" facility is implemented.
    //
    // The tests in this files are intended to validate the behavior of the fake
    // network stack on these platforms.
    
    import (
    	"errors"
    	"syscall"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/Checksum.java

     * from one repository to the other (either by end of lines, additional line
     * at the end of the file, ...). Because they are different doesn't mean that
     * they are compromised, so this is a facility for the user to declare "I know
     * I should use a single source of truth but the infrastructure is hard or
     * impossible to fix so let's trust this source".
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/syscall/netlink_linux.go

    }
    
    var pageBufPool = &sync.Pool{New: func() any {
    	b := make([]byte, Getpagesize())
    	return &b
    }}
    
    // NetlinkRIB returns routing information base, as known as RIB, which
    // consists of network facility information, states and parameters.
    func NetlinkRIB(proto, family int) ([]byte, error) {
    	s, err := Socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_ROUTE)
    	if err != nil {
    		return nil, err
    	}
    	defer Close(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top