Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for Vector3 (0.09 sec)

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

    	CBitFieldMaskBit63 = 0x8000000000000000
    )
    
    type SockaddrStorage struct {
    	Family uint16
    	Data   [118]byte
    	_      uint64
    }
    
    type HDGeometry struct {
    	Heads     uint8
    	Sectors   uint8
    	Cylinders uint16
    	Start     uint64
    }
    
    type Statfs_t struct {
    	Type    int64
    	Bsize   int64
    	Frsize  int64
    	Blocks  uint64
    	Bfree   uint64
    	Files   uint64
    	Ffree   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    // For {en,de}cryptBlockAsm
    #define BLK_INP    R3
    #define BLK_OUT    R4
    #define BLK_KEY    R5
    #define BLK_ROUNDS R6
    #define BLK_IDX    R7
    
    DATA ·rcon+0x00(SB)/8, $0x0f0e0d0c0b0a0908 // Permute for vector doubleword endian swap
    DATA ·rcon+0x08(SB)/8, $0x0706050403020100
    DATA ·rcon+0x10(SB)/8, $0x0100000001000000 // RCON
    DATA ·rcon+0x18(SB)/8, $0x0100000001000000 // RCON
    DATA ·rcon+0x20(SB)/8, $0x1b0000001b000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		//	BC 16,0,loop         branch ctr
    		// For this purpose, VS32 and VS33 are treated as
    		// scratch registers. Since regalloc does not
    		// track vector registers, even if it could be marked
    		// as clobbered it would have no effect.
    		// TODO: If vector registers are managed by regalloc
    		// mark these as clobbered.
    		//
    		// Bytes not moved by this loop are moved
    		// with a combination of the following instructions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/math/big/arith_ppc64x.s

    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go && (ppc64 || ppc64le)
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    // func addVV(z, y, y []Word) (c Word)
    // z[i] = x[i] + y[i] for all i, carrying
    TEXT ·addVV(SB), NOSPLIT, $0
    	MOVD  z_len+8(FP), R7   // R7 = z_len
    	MOVD  x+24(FP), R8      // R8 = x[]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    
    	return arr
    }
    
    // vectorType parses:
    //
    //	<vector-type> ::= Dv <number> _ <type>
    //	              ::= Dv _ <expression> _ <type>
    func (st *state) vectorType(isCast bool) AST {
    	if len(st.str) == 0 {
    		st.fail("expected vector dimension")
    	}
    
    	var dim AST
    	if st.str[0] == '_' {
    		st.advance(1)
    		dim = st.expression()
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Count   uint8
    }
    
    type HDDriveID struct {
    	Config         uint16
    	Cyls           uint16
    	Reserved2      uint16
    	Heads          uint16
    	Track_bytes    uint16
    	Sector_bytes   uint16
    	Sectors        uint16
    	Vendor0        uint16
    	Vendor1        uint16
    	Vendor2        uint16
    	Serial_no      [20]uint8
    	Buf_type       uint16
    	Buf_size       uint16
    	Ecc_bytes      uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top