Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 272 for facility (0.13 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    }
    
    // facility is a bit index for the named facility.
    type facility uint8
    
    const (
    	// mandatory facilities
    	zarch  facility = 1  // z architecture mode is active
    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    	dfp    facility = 42 // decimal-floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_s390x.go

    		}
    	}
    	return true
    }
    
    // facility is a bit index for the named facility.
    type facility uint8
    
    const (
    	// mandatory facilities
    	zarch  facility = 1  // z architecture mode is active
    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    	dfp    facility = 42 // decimal-floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  3. src/log/syslog/syslog.go

    	"fmt"
    	"log"
    	"net"
    	"os"
    	"strings"
    	"sync"
    	"time"
    )
    
    // The Priority is a combination of the syslog facility and
    // severity. For example, [LOG_ALERT] | [LOG_FTP] sends an alert severity
    // message from the FTP facility. The default severity is [LOG_EMERG];
    // the default facility is [LOG_KERN].
    type Priority int
    
    const severityMask = 0x07
    const facilityMask = 0xf8
    
    const (
    	// Severity.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. pkg/ctrlz/options.go

    	cmd.PersistentFlags().Uint16Var(&o.Port, "ctrlz_port", o.Port,
    		"The IP port to use for the ControlZ introspection facility")
    	cmd.PersistentFlags().StringVar(&o.Address, "ctrlz_address", o.Address,
    		"The IP Address to listen on for the ControlZ introspection facility. Use '*' to indicate all addresses.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/internal/bytealg/count_s390x.s

    	SRD   $4, R_LEN, R_ITER    // R_ITER is the number of 16-byte chunks
    	MOVBZ (R_TMP), R_TMP       // load bool indicating support for vector facility
    	CGIJ  $EQ, R_TMP, $0, novx // jump to scalar code if the vector facility is not available
    
    	// Start of vector code (have vector facility).
    	//
    	// Set R_LEN to be the length mod 16 minus 1 to use as an index for
    	// vector 'load with length' (VLL). It will be in the range [-1,14].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    // instructions. It must only be called if the vector facility (vx) is
    // available.
    //
    //go:noescape
    func updateVX(state *macState, msg []byte)
    
    // mac is a replacement for macGeneric that uses a larger buffer and redirects
    // calls that would have gone to updateGeneric to updateVX if the vector
    // facility is installed.
    //
    // A larger buffer is required for good performance because the vector
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/internal/bytealg/index_s390x.s

    #include "go_asm.h"
    #include "textflag.h"
    
    // Caller must confirm availability of vx facility before calling.
    TEXT ·Index(SB),NOSPLIT|NOFRAME,$0-56
    	LMG	a_base+0(FP), R1, R2  // R1=&s[0],   R2=len(s)
    	LMG	b_base+24(FP), R3, R4 // R3=&sep[0], R4=len(sep)
    	MOVD	$ret+48(FP), R5
    	BR	indexbody<>(SB)
    
    // Caller must confirm availability of vx facility before calling.
    TEXT ·IndexString(SB),NOSPLIT|NOFRAME,$0-40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  8. test/linkx.go

    // skip
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test the -X facility of the gc linker (6l etc.).
    // This test is run by linkx_run.go.
    
    package main
    
    import "fmt"
    
    var tbd string
    var overwrite string = "dibs"
    
    var tbdcopy = tbd
    var overwritecopy = overwrite
    var arraycopy = [2]string{tbd, overwrite}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 01 20:13:05 UTC 2019
    - 741 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go

    package chacha20
    
    import "golang.org/x/sys/cpu"
    
    var haveAsm = cpu.S390X.HasVX
    
    const bufSize = 256
    
    // xorKeyStreamVX is an assembly implementation of XORKeyStream. It must only
    // be called when the vector facility is available. Implementation in asm_s390x.s.
    //
    //go:noescape
    func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32)
    
    func (c *Cipher) xorKeyStreamBlocks(dst, src []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 743 bytes
    - Viewed (0)
  10. src/runtime/os_linux_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "internal/cpu"
    
    const (
    	_HWCAP_VX = 1 << 11 // vector facility
    )
    
    func archauxv(tag, val uintptr) {
    	switch tag {
    	case _AT_HWCAP:
    		cpu.HWCap = uint(val)
    	}
    }
    
    func osArchInit() {}
    
    func checkS390xCPU() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 17:36:28 UTC 2023
    - 825 bytes
    - Viewed (0)
Back to top