Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for Vector3 (0.14 sec)

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

    	CBitFieldMaskBit62 = 0x2
    	CBitFieldMaskBit63 = 0x1
    )
    
    type SockaddrStorage struct {
    	Family uint16
    	Data   [122]byte
    	_      uint32
    }
    
    type HDGeometry struct {
    	Heads     uint8
    	Sectors   uint8
    	Cylinders uint16
    	Start     uint32
    }
    
    type Statfs_t struct {
    	Type    int32
    	Bsize   int32
    	Frsize  int32
    	_       [4]byte
    	Blocks  uint64
    	Bfree   uint64
    	Files   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    		fn:         fn,
    		f:          f,
    		vars:       vars,
    		idx:        idx,
    		stkptrsize: stkptrsize,
    	}
    
    	// Significant sources of allocation are kept in the ssa.Cache
    	// and reused. Surprisingly, the bit vectors themselves aren't
    	// a major source of allocation, but the liveness maps are.
    	if lc, _ := f.Cache.Liveness.(*livenessFuncCache); lc == nil {
    		// Prep the cache so liveness can fill it later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/math/big/nat.go

    // is used.
    var karatsubaThreshold = 40 // computed by calibrate_test.go
    
    // karatsuba multiplies x and y and leaves the result in z.
    // Both x and y must have the same length n and n must be a
    // power of 2. The result vector z must have len(z) >= 6*n.
    // The (non-normalized) result is placed in z[0 : 2*n].
    func karatsuba(z, x, y nat) {
    	n := len(y)
    
    	// Switch to basic multiplication if numbers are odd or small.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21,
    	0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x24, 0x24,
    	0x2f, 0x23, 0x32, 0x2f, 0x27, 0x2f, 0x21,
    }
    
    // regionInclusionBits is an array of bit vectors where every vector represents
    // a set of region groupings.  These sets are used to compute the distance
    // between two regions for the purpose of language matching.
    // Size: 584 bytes, 73 elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	EM_XIMO16        Machine = 170 /* New Japan Radio (NJR) 16-bit DSP Processor */
    	EM_MANIK         Machine = 171 /* M2000 Reconfigurable RISC Microprocessor */
    	EM_CRAYNV2       Machine = 172 /* Cray Inc. NV2 vector architecture */
    	EM_RX            Machine = 173 /* Renesas RX family */
    	EM_METAG         Machine = 174 /* Imagination Technologies META processor architecture */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. src/crypto/ecdsa/ecdsa_test.go

    	if !ok {
    		panic("bad hex")
    	}
    	return r
    }
    
    func TestVectors(t *testing.T) {
    	// This test runs the full set of NIST test vectors from
    	// https://csrc.nist.gov/groups/STM/cavp/documents/dss/186-3ecdsatestvectors.zip
    	//
    	// The SigVer.rsp file has been edited to remove test vectors for
    	// unsupported algorithms and has been compressed.
    
    	if testing.Short() {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	CBitFieldMaskBit63 = 0x8000000000000000
    )
    
    type SockaddrStorage struct {
    	Family uint16
    	Data   [122]byte
    	_      uint32
    }
    
    type HDGeometry struct {
    	Heads     uint8
    	Sectors   uint8
    	Cylinders uint16
    	Start     uint32
    }
    
    type Statfs_t struct {
    	Type    int32
    	Bsize   int32
    	Blocks  uint64
    	Bfree   uint64
    	Bavail  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.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/crypto/aes/gcm_arm64.s

    	MOVD	pTbl, pTblSave
    	// Current tag, after AAD
    	VLD1	(tPtr), [ACC0.B16]
    	VEOR	ACC1.B16, ACC1.B16, ACC1.B16
    	VEOR	ACCM.B16, ACCM.B16, ACCM.B16
    	// Prepare initial counter, and the increment vector
    	VLD1	(ctrPtr), [CTR.B16]
    	VEOR	INC.B16, INC.B16, INC.B16
    	MOVD	$1, H0
    	VMOV	H0, INC.S[3]
    	VREV32	CTR.B16, CTR.B16
    	VADD	CTR.S4, INC.S4, CTR.S4
    	// Skip to <8 blocks loop
    	CMP	$128, srcPtrLen
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top