Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 87 for 432 (0.03 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go

    	SYS_AUDIT_SESSION_SELF             = 428
    	SYS_AUDIT_SESSION_JOIN             = 429
    	SYS_FILEPORT_MAKEPORT              = 430
    	SYS_FILEPORT_MAKEFD                = 431
    	SYS_AUDIT_SESSION_PORT             = 432
    	SYS_PID_SUSPEND                    = 433
    	SYS_PID_RESUME                     = 434
    	SYS_PID_HIBERNATE                  = 435
    	SYS_PID_SHUTDOWN_SOCKETS           = 436
    	SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go

    	SYS_IO_URING_REGISTER       = 427
    	SYS_OPEN_TREE               = 428
    	SYS_MOVE_MOUNT              = 429
    	SYS_FSOPEN                  = 430
    	SYS_FSCONFIG                = 431
    	SYS_FSMOUNT                 = 432
    	SYS_FSPICK                  = 433
    	SYS_PIDFD_OPEN              = 434
    	SYS_CLONE3                  = 435
    	SYS_CLOSE_RANGE             = 436
    	SYS_OPENAT2                 = 437
    	SYS_PIDFD_GETFD             = 438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    	SYS_AUDIT_SESSION_SELF             = 428
    	SYS_AUDIT_SESSION_JOIN             = 429
    	SYS_FILEPORT_MAKEPORT              = 430
    	SYS_FILEPORT_MAKEFD                = 431
    	SYS_AUDIT_SESSION_PORT             = 432
    	SYS_PID_SUSPEND                    = 433
    	SYS_PID_RESUME                     = 434
    	SYS_PID_HIBERNATE                  = 435
    	SYS_PID_SHUTDOWN_SOCKETS           = 436
    	SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go

    	SYS_IO_URING_REGISTER       = 427
    	SYS_OPEN_TREE               = 428
    	SYS_MOVE_MOUNT              = 429
    	SYS_FSOPEN                  = 430
    	SYS_FSCONFIG                = 431
    	SYS_FSMOUNT                 = 432
    	SYS_FSPICK                  = 433
    	SYS_PIDFD_OPEN              = 434
    	SYS_CLONE3                  = 435
    	SYS_CLOSE_RANGE             = 436
    	SYS_OPENAT2                 = 437
    	SYS_PIDFD_GETFD             = 438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/crypto/des/block.go

    func ksRotate(in uint32) (out []uint32) {
    	out = make([]uint32, 16)
    	last := in
    	for i := 0; i < 16; i++ {
    		// 28-bit circular left shift
    		left := (last << (4 + ksRotations[i])) >> 4
    		right := (last << 4) >> (32 - ksRotations[i])
    		out[i] = left | right
    		last = out[i]
    	}
    	return
    }
    
    // creates 16 56-bit subkeys from the original key.
    func (c *desCipher) generateSubkeys(keyBytes []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. test/codegen/memcombine.go

    }
    
    func load_le_byte8_uint64_inv(s []byte) uint64 {
    	// arm64:`MOVD\t\(R[0-9]+\)`,-`ORR`,-`MOV[BHW]`
    	// ppc64le:`MOVD`,-`MOV[WHB]Z`
    	// ppc64:`MOVDBR`,-`MOV[WHB]Z`
    	return uint64(s[7])<<56 | uint64(s[6])<<48 | uint64(s[5])<<40 | uint64(s[4])<<32 | uint64(s[3])<<24 | uint64(s[2])<<16 | uint64(s[1])<<8 | uint64(s[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_OPEN_TREE                    = 428
    	SYS_MOVE_MOUNT                   = 429
    	SYS_FSOPEN                       = 430
    	SYS_FSCONFIG                     = 431
    	SYS_FSMOUNT                      = 432
    	SYS_FSPICK                       = 433
    	SYS_PIDFD_OPEN                   = 434
    	SYS_CLONE3                       = 435
    	SYS_CLOSE_RANGE                  = 436
    	SYS_OPENAT2                      = 437
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/encoding/base64/base64_test.go

    		tests = append(tests, test{RawStdEncoding, (math.MaxInt-5)/8 + 1, 357913942})
    		tests = append(tests, test{RawStdEncoding, math.MaxInt/4*3 + 2, math.MaxInt})
    	case 64:
    		tests = append(tests, test{RawStdEncoding, (math.MaxInt-5)/8 + 1, 1537228672809129302})
    		tests = append(tests, test{RawStdEncoding, math.MaxInt/4*3 + 2, math.MaxInt})
    	}
    	for _, tt := range tests {
    		if got := tt.enc.EncodedLen(tt.n); int64(got) != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go

    	SYS_OPEN_TREE                    = 428
    	SYS_MOVE_MOUNT                   = 429
    	SYS_FSOPEN                       = 430
    	SYS_FSCONFIG                     = 431
    	SYS_FSMOUNT                      = 432
    	SYS_FSPICK                       = 433
    	SYS_PIDFD_OPEN                   = 434
    	SYS_CLONE3                       = 435
    	SYS_CLOSE_RANGE                  = 436
    	SYS_OPENAT2                      = 437
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv10-RSA-AES

    00000090  29 55 a4 04 df 15 03 01  00 20 8b 10 5c 79 5e f8  |)U....... ..\y^.|
    000000a0  1d 41 1c b2 05 fd 58 5a  80 69 e5 ce db c3 ac a4  |.A....XZ.i......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top