Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 269 for vand (0.19 sec)

  1. src/internal/bytealg/index_ppc64x.s

    	VSLDOI  $1, V1, V2, V3     // V3=(V1:V2)<<1
    	VSLDOI  $2, V1, V2, V4     // V4=(V1:V2)<<2
    	VAND    V1, SEPMASK, V8    // Mask out sep size 0th index
    	VAND    V3, SEPMASK, V9    // Mask out sep size 1st index
    	VAND    V4, SEPMASK, V11   // Mask out sep size 2nd index
    	VAND    V5, SEPMASK, V12   // Mask out sep size 3rd index
    #endif
    	VCMPEQUBCC      V0, V8, V8 // compare masked string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_ppc64le.s

    	VXOR	V0,V1,V0
    
    #ifdef REFLECT
    	VSPLTISB $1,V1
    	VSL	V0,V1,V0
    #endif
    
    	VAND	V0,mask_64bit,V0
    
    #ifndef	REFLECT
    
    	VPMSUMD	V0,const1,V1
    	VSLDOI	$8,zeroes,V1,V1
    	VPMSUMD	V1,const2,V1
    	VXOR	V0,V1,V0
    	VSLDOI	$8,V0,zeroes,V0
    
    #else
    
    	VAND	V0,mask_32bit,V1
    	VPMSUMD	V1,const1,V1
    	VAND	V1,mask_32bit,V1
    	VPMSUMD	V1,const2,V1
    	VXOR	V0,V1,V0
    	VSLDOI  $4,V0,zeroes,V0
    
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_arm64.s

    		VMOV	CTR.B16, B0.B16
    		VADD	B0.S4, INC.S4, B1.S4
    		VREV32	B0.B16, B0.B16
    		VADD	B1.S4, INC.S4, B2.S4
    		VREV32	B1.B16, B1.B16
    		VADD	B2.S4, INC.S4, B3.S4
    		VREV32	B2.B16, B2.B16
    		VADD	B3.S4, INC.S4, B4.S4
    		VREV32	B3.B16, B3.B16
    		VADD	B4.S4, INC.S4, B5.S4
    		VREV32	B4.B16, B4.B16
    		VADD	B5.S4, INC.S4, B6.S4
    		VREV32	B5.B16, B5.B16
    		VADD	B6.S4, INC.S4, B7.S4
    		VREV32	B6.B16, B6.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    // The uncommented cases means they can be handled by assembler
    // and they are consistent with disassembler decoding.
    // TODO means they cannot be handled by current assembler.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$-8
    
    	AND $(1<<63), R1                           // AND $-9223372036854775808, R1     // 21004192
    	ADCW ZR, R8, R10                           // 0a011f1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_ppc64x.s

    	VSL      H, T0, H            // H<<=1
    	VSRAB    T1, T2, T1          // broadcast carry bit
    	VAND     T1, XC2, T1
    	VXOR     H, T1, IN           // twisted H
    
    	VSLDOI $8, IN, IN, H      // twist even more ...
    	VSLDOI $8, ZERO, XC2, XC2 // 0xc2.0
    	VSLDOI $8, ZERO, H, HL    // ... and split
    	VSLDOI $8, H, ZERO, HH
    
    	STXVD2X VXC2, (XIP+R0) // save pre-computed table
    	STXVD2X VHL, (XIP+R8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/math/rand/rand.go

    	readPos int8
    }
    
    // New returns a new [Rand] that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	s64, _ := src.(Source64)
    	return &Rand{src: src, s64: s64}
    }
    
    // Seed uses the provided seed value to initialize the generator to a deterministic state.
    // Seed should not be called concurrently with any other [Rand] method.
    func (r *Rand) Seed(seed int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/math/rand/v2/rand.go

    type Source interface {
    	Uint64() uint64
    }
    
    // A Rand is a source of random numbers.
    type Rand struct {
    	src Source
    }
    
    // New returns a new Rand that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	return &Rand{src: src}
    }
    
    // Int64 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *Rand) Int64() int64 { return int64(r.src.Uint64() &^ (1 << 63)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    		mandQueueSetNames.Insert(mpl.Name)
    	}
    	return mandQueueSetNames
    }()
    
    func TestConfigConsumer(t *testing.T) {
    	rngOuter := rand.New(rand.NewSource(1234567890123456789))
    	for i := 1; i <= 10; i++ {
    		rng := rand.New(rand.NewSource(int64(rngOuter.Uint64())))
    		t.Run(fmt.Sprintf("trial%d:", i), func(t *testing.T) {
    			clientset := clientsetfake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa_test.go

    	case elliptic.P224().Params():
    		_, _, err := randomPoint(p224(), rand)
    		return err
    	case elliptic.P256().Params():
    		_, _, err := randomPoint(p256(), rand)
    		return err
    	case elliptic.P384().Params():
    		_, _, err := randomPoint(p384(), rand)
    		return err
    	case elliptic.P521().Params():
    		_, _, err := randomPoint(p521(), rand)
    		return err
    	default:
    		panic("unknown curve")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		// magnitude faster then the watch request itself). This means that Handle()
    		// call finishes much faster and for performance reasons we want to reduce
    		// the number of running goroutines - so we run the shorter thing in a
    		// dedicated goroutine and the actual watch handler in the main one.
    		go func() {
    			defer func() {
    				err := recover()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top