Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for Vector3 (0.12 sec)

  1. src/cmd/link/internal/arm64/asm.go

    		} else if (val>>24)&0x3b == 0x39 {
    			// Mach-O ARM64_RELOC_PAGEOFF12
    			// patch ldr/str(b/h/w/d/q) (integer or vector) instructions, which have different scaling factors.
    			// Mach-O uses same relocation type for them.
    			shift := uint32(val) >> 30
    			if shift == 0 && (val>>20)&0x048 == 0x048 { // 128-bit vector load
    				shift = 4
    			}
    			t := ldr.SymAddr(rs) + r.Add() - ((ldr.SymValue(s) + int64(r.Off())) &^ 0xfff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	YxrEvex       // X0..X31
    	Yxm
    	YxmEvex       // YxrEvex+Ym
    	Yxvm          // VSIB vector array; vm32x/vm64x
    	YxvmEvex      // Yxvm which permits High-16 X register as index.
    	YyrEvexMulti4 // [ Y<n> - Y<n+3> ]; multisource YyrEvex
    	Yyr           // Y0..Y15
    	YyrEvex       // Y0..Y31
    	Yym
    	YymEvex   // YyrEvex+Ym
    	Yyvm      // VSIB vector array; vm32y/vm64y
    	YyvmEvex  // Yyvm which permits High-16 Y register as index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/crypto/ed25519/ed25519_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(sig, expectedSig) {
    		t.Error("signature doesn't match test vector")
    	}
    	sig, err = private.Sign(nil, hash[:], &Options{Hash: crypto.SHA512})
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(sig, expectedSig) {
    		t.Error("signature doesn't match test vector")
    	}
    	if err := VerifyWithOptions(public, hash[:], sig, &Options{Hash: crypto.SHA512}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1block_amd64.s

    // From http://software.intel.com/en-us/articles
    // (look for improving-the-performance-of-the-secure-hash-algorithm-1)
    // This implementation is 2x unrolled, and interleaves vector instructions,
    // used to precompute W, with scalar computation of current round
    // for optimal scheduling.
    
    // Trivial helper macros.
    #define UPDATE_HASH(A,TB,C,D,E) \
    	ADDL	(R9), A \
    	MOVL	A, (R9) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/hash/crc32/gen_const_ppc64le.go

    	fmt.Fprintln(w, `// Code generated by "go run gen_const_ppc64le.go"; DO NOT EDIT.`)
    	fmt.Fprintln(w)
    	fmt.Fprintln(w, `#include "textflag.h"`)
    
    	// These are the polynomials supported in vector now.
    	// If adding others, include the polynomial and a name
    	// to identify it.
    
    	genCrc32ConstTable(w, 0xedb88320, "IEEE")
    	genCrc32ConstTable(w, 0x82f63b78, "Cast")
    	genCrc32ConstTable(w, 0xeb31d82e, "Koop")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	CBitFieldMaskBit62 = 0x2
    	CBitFieldMaskBit63 = 0x1
    )
    
    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)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.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
    	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)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.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
    	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)
  9. src/crypto/sha512/sha512block_ppc64x.s

    #ifdef GOARCH_ppc64le
    #define VPERMLE(va,vb,vc,vt) VPERM va, vb, vc, vt
    #else
    #define VPERMLE(va,vb,vc,vt)
    #endif
    
    // 2 copies of each Kt, to fill both doublewords of a vector register
    DATA  ·kcon+0x000(SB)/8, $0x428a2f98d728ae22
    DATA  ·kcon+0x008(SB)/8, $0x428a2f98d728ae22
    DATA  ·kcon+0x010(SB)/8, $0x7137449123ef65cd
    DATA  ·kcon+0x018(SB)/8, $0x7137449123ef65cd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/crypto/rsa/rsa_test.go

    				continue
    			}
    			if !bytes.Equal(dec, message.in) {
    				t.Errorf("#%d,%d: round trip %q -> %q", i, j, message.in, dec)
    			}
    		}
    	}
    }
    
    // testEncryptOAEPData contains a subset of the vectors from RSA's "Test vectors for RSA-OAEP".
    var testEncryptOAEPData = []testEncryptOAEPStruct{
    	// Key 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top