Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for table_1 (0.12 sec)

  1. src/syscall/zerrors_openbsd_mips64.go

    	SIGUSR1   = Signal(0x1e)
    	SIGUSR2   = Signal(0x1f)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:  "operation not permitted",
    	2:  "no such file or directory",
    	3:  "no such process",
    	4:  "interrupted system call",
    	5:  "input/output error",
    	6:  "device not configured",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 66.7K bytes
    - Viewed (0)
  2. src/syscall/zerrors_netbsd_amd64.go

    	SIGUSR1   = Signal(0x1e)
    	SIGUSR2   = Signal(0x1f)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:  "operation not permitted",
    	2:  "no such file or directory",
    	3:  "no such process",
    	4:  "interrupted system call",
    	5:  "input/output error",
    	6:  "device not configured",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
  3. src/syscall/zerrors_netbsd_arm.go

    	SIGUSR1   = Signal(0x1e)
    	SIGUSR2   = Signal(0x1f)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:  "operation not permitted",
    	2:  "no such file or directory",
    	3:  "no such process",
    	4:  "interrupted system call",
    	5:  "input/output error",
    	6:  "device not configured",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	Xcoffreloc1    func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    
    	// Generate additional symbols for the native symbol table just prior to
    	// code generation.
    	GenSymsLate func(*Link, *loader.Loader)
    
    	// TLSIEtoLE converts a TLS Initial Executable relocation to
    	// a TLS Local Executable relocation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define Z2L    V10
    #define Z2H    V11
    
    #define ONE   V18
    #define IDX   V19
    #define SEL1  V20
    #define SEL2  V21
    // func p256Select(point *p256Point, table *p256Table, idx int)
    TEXT ·p256Select(SB), NOSPLIT, $0-24
    	MOVD res+0(FP), P3ptr
    	MOVD table+8(FP), P1ptr
    	MOVD $16, R16
    	MOVD $32, R17
    	MOVD $48, R18
    	MOVD $64, R19
    	MOVD $80, R20
    
    	LXVDSX   (R1)(R18), SEL1 // VLREPG idx+32(FP), SEL1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{48, "ENOTSUP", "operation not supported"},
    	{49, "EDQUOT", "disc quota exceeded"},
    	{50, "EBADE", "bad exchange descriptor"},
    	{51, "EBADR", "bad request descriptor"},
    	{52, "EXFULL", "message tables full"},
    	{53, "ENOANO", "anode table overflow"},
    	{54, "EBADRQC", "bad request code"},
    	{55, "EBADSLT", "invalid slot"},
    	{56, "EDEADLOCK", "file locking deadlock"},
    	{57, "EBFONT", "bad font file format"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	SIGUSR2   = syscall.Signal(0x1f)
    	SIGVTALRM = syscall.Signal(0x1a)
    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	SIGUSR2   = syscall.Signal(0x1f)
    	SIGVTALRM = syscall.Signal(0x1a)
    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	SIGUSR2   = syscall.Signal(0x1f)
    	SIGVTALRM = syscall.Signal(0x1a)
    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_mips.go

    	SIGUSR1   = Signal(0x10)
    	SIGUSR2   = Signal(0x11)
    	SIGVTALRM = Signal(0x1c)
    	SIGWINCH  = Signal(0x14)
    	SIGXCPU   = Signal(0x1e)
    	SIGXFSZ   = Signal(0x1f)
    )
    
    // Error table
    var errors = [...]string{
    	1:    "operation not permitted",
    	2:    "no such file or directory",
    	3:    "no such process",
    	4:    "interrupted system call",
    	5:    "input/output error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
Back to top