Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Vector3 (0.09 sec)

  1. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // equivalent function from the corresponding s390x
    // instruction for vector multiply high, low, and add,
    // since there aren't exact equivalent instructions.
    // The corresponding s390x instructions appear in the
    // comments.
    // Implementation for big endian would have to be
    // investigated, I think it would be different.
    //
    //
    // Vector multiply word
    //
    //	VMLF  x0, x1, out_low
    //	VMLHF x0, x1, out_hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. src/net/http/request.go

    		// address such as Unix domain socket path into a valid, ignored
    		// Host header (see https://go.dev/issue/61431).
    		//
    		// We don't preserve the truncation, because sending an altered
    		// header field opens a smuggling vector. Instead, zero out the
    		// Host header entirely if it isn't valid. (An empty Host is valid;
    		// see RFC 9112 Section 3.2.)
    		//
    		// Return an error if we're sending to a proxy, since the proxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Ctz32 <t> x) => (SUB (MOVDconst [64]) (FLOGR (MOVWZreg (ANDW <t> (SUBWconst <t> [1] x) (NOTW <t> x)))))
    
    (BitLen64 x) => (SUB (MOVDconst [64]) (FLOGR x))
    
    // POPCNT treats the input register as a vector of 8 bytes, producing
    // a population count for each individual byte. For inputs larger than
    // a single byte we therefore need to sum the individual bytes produced
    // by the POPCNT instruction. For example, the following instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. 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)
Back to top