Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 119 for Vector3 (0.15 sec)

  1. src/math/big/arith_s390x_test.go

    // license that can be found in the LICENSE file.
    
    //go:build s390x && !math_big_pure_go
    
    package big
    
    import (
    	"testing"
    )
    
    // Tests whether the non vector routines are working, even when the tests are run on a
    // vector-capable machine
    
    func TestFunVVnovec(t *testing.T) {
    	if hasVX {
    		for _, a := range sumVV {
    			arg := a
    			testFunVV(t, "addVV_novec", addVV_novec, arg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 770 bytes
    - Viewed (0)
  2. src/archive/tar/reader_test.go

    	"bytes"
    	"compress/bzip2"
    	"crypto/md5"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"os"
    	"path"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestReader(t *testing.T) {
    	vectors := []struct {
    		file    string    // Test input file
    		headers []*Header // Expected output headers
    		chksums []string  // MD5 checksum of files, leave as nil if not checked
    		err     error     // Expected error to occur
    	}{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/doc.go

    	R13: TLS pointer
    	R30: g (goroutine)
    
    Register names:
    
    	Rn is used for general purpose registers. (0-31)
    	Fn is used for floating point registers. (0-31)
    	Vn is used for vector registers. Slot 0 of Vn overlaps with Fn. (0-31)
    	VSn is used for vector-scalar registers. V0-V31 overlap with VS32-VS63. (0-63)
    	CTR represents the count register.
    	LR represents the link register.
    	CR represents the condition register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/crypto/x509/pem_decrypt.go

    		return nil, err
    	}
    	if len(iv) != ciph.blockSize {
    		return nil, errors.New("x509: incorrect IV size")
    	}
    
    	// Based on the OpenSSL implementation. The salt is the first 8 bytes
    	// of the initialization vector.
    	key := ciph.deriveKey(password, iv[:8])
    	block, err := ciph.cipherFunc(key)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(b.Bytes)%block.BlockSize() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_ppc64x.s

    #ifndef GOPPC64_power9
    #define ADJUST_FOR_CNTLZW -16
    #else
    #define ADJUST_FOR_CNTLZW 0
    #endif
    
    // Now, find the index of the 16B vector the match was discovered in. If CNTLZW is used
    // to determine the offset into the 16B vector, it will overcount by 16. Account for it here.
    foundat3:
    	SUB	R3,R8,R3
    	ADD	$48+ADJUST_FOR_CNTLZW,R3
    	BR	vfound
    foundat2:
    	SUB	R3,R8,R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/ld.go

    /*
     * add library to library list, return added library.
     *	srcref: src file referring to package
     *	objref: object file referring to package
     *	file: object file, e.g., /home/rsc/go/pkg/container/vector.a
     *	pkg: package import path, e.g. container/vector
     *	shlib: path to shared library, or .shlibname file holding path
     *	fingerprint: if not 0, expected fingerprint for import from srcref
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/encoding/gob/codec_test.go

    	iVal := Int(3)
    	fVal := Float(5)
    	// Sending a Vector will require that the receiver define a type in the middle of
    	// receiving the value for item2.
    	vVal := Vector{1, 2, 3}
    	b := new(bytes.Buffer)
    	item1 := &InterfaceItem{1, iVal, fVal, vVal, 11.5, []Squarer{iVal, fVal, nil, vVal}}
    	// Register the types.
    	Register(Int(0))
    	Register(Float(0))
    	Register(Vector{})
    	err := NewEncoder(b).Encode(item1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/bytealg/index_ppc64x.s

    	VSPLTB $2, V0, V8   // Splat 3rd byte of sep
    
    	// Loop to process 3 byte separator.
    	// string[0:16] is in V2
    	// string[2:18] is in V3
    	// sep[0:2] splatted in V1
    	// sec[3] splatted in v8
    	// Load vectors at string, string+1
    	// and string+2. Compare string, string+1
    	// against first 2 bytes of separator
    	// splatted, and string+2 against 3rd
    	// byte splatted. Merge the results with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  10. 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)
Back to top