Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for Tuple3 (0.72 sec)

  1. android/guava/src/com/google/common/collect/Lists.java

       *
       * <pre>{@code
       * for (B b0 : lists.get(0)) {
       *   for (B b1 : lists.get(1)) {
       *     ...
       *     ImmutableList<B> tuple = ImmutableList.of(b0, b1, ...);
       *     // operate on tuple
       *   }
       * }
       * }</pre>
       *
       * <p>Note that if any input list is empty, the Cartesian product will also be empty. If no lists
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/op.go

    	rematerializeable bool      // this op is rematerializeable
    	commutative       bool      // this operation is commutative (e.g. addition)
    	resultInArg0      bool      // (first, if a tuple) output of v and v.Args[0] must be allocated to the same register
    	resultNotInArgs   bool      // outputs must not be allocated to the same registers as inputs
    	clobberFlags      bool      // this op clobbers flags register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/evex.go

    // SaeEnabled reports whether SAE suffix is permitted.
    func (evex evexBits) SaeEnabled() bool {
    	return (evex.b2&evexSae)>>0 != 0
    }
    
    // DispMultiplier returns displacement multiplier that is calculated
    // based on tuple type, EVEX.W and input size.
    // If embedded broadcast is used, bcst should be true.
    func (evex evexBits) DispMultiplier(bcst bool) int32 {
    	if bcst {
    		switch evex.b2 & evexBcst {
    		case evexBcstN4:
    			return 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/check.go

    			}
    		}
    	}
    
    	memCheck(f)
    }
    
    func memCheck(f *Func) {
    	// Check that if a tuple has a memory type, it is second.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Type.IsTuple() && v.Type.FieldType(0).IsMemory() {
    				f.Fatalf("memory is first in a tuple: %s\n", v.LongString())
    			}
    		}
    	}
    
    	// Single live memory checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (AtomicAdd64 ptr val mem) => (AddTupleFirst64 val (LAAG ptr val mem))
    (Select0 <t> (AddTupleFirst32 val tuple)) => (ADDW val (Select0 <t> tuple))
    (Select1     (AddTupleFirst32   _ tuple)) => (Select1 tuple)
    (Select0 <t> (AddTupleFirst64 val tuple)) => (ADD val (Select0 <t> tuple))
    (Select1     (AddTupleFirst64   _ tuple)) => (Select1 tuple)
    
    // Atomic exchanges.
    (AtomicExchange32 ptr val mem) => (LoweredAtomicExchange32 ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check.go

    	// convert x into a user-friendly set of values
    	// TODO(gri) this code can be simplified
    	var typ Type
    	var val constant.Value
    	switch x.mode {
    	case invalid:
    		typ = Typ[Invalid]
    	case novalue:
    		typ = (*Tuple)(nil)
    	case constant_:
    		typ = x.typ
    		val = x.val
    	default:
    		typ = x.typ
    	}
    	assert(x.expr != nil && typ != nil)
    
    	if isUntyped(typ) {
    		// delay type and value recording until we know the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "AddTupleFirst32", argLength: 2}, // arg1=tuple <x,y>.  Returns <x+arg0,y>.
    		{name: "AddTupleFirst64", argLength: 2}, // arg1=tuple <x,y>.  Returns <x+arg0,y>.
    
    		// Compare and swap.
    		// arg0 = pointer, arg1 = old value, arg2 = new value, arg3 = memory.
    		// if *(arg0+auxint+aux) == arg1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    		check.errorf(x, code, msg, x)
    		x.mode = invalid
    	}
    }
    
    // singleValue reports an error if x describes a tuple and sets x.mode to invalid.
    func (check *Checker) singleValue(x *operand) {
    	if x.mode == value {
    		// tuple types are never named - no need for underlying type below
    		if t, ok := x.typ.(*Tuple); ok {
    			assert(t.Len() != 1)
    			check.errorf(x, TooManyValues, "multiple-value %s in single-value context", x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       *
       * <pre>{@code
       * for (B b0 : sets.get(0)) {
       *   for (B b1 : sets.get(1)) {
       *     ...
       *     ImmutableList<B> tuple = ImmutableList.of(b0, b1, ...);
       *     // operate on tuple
       *   }
       * }
       * }</pre>
       *
       * <p>Note that if any input set is empty, the Cartesian product will also be empty. If no sets at
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (AtomicAdd64 ptr val mem) => (AddTupleFirst64 val (XADDQlock val ptr mem))
    (Select0 <t> (AddTupleFirst32 val tuple)) => (ADDL val (Select0 <t> tuple))
    (Select1     (AddTupleFirst32   _ tuple)) => (Select1 tuple)
    (Select0 <t> (AddTupleFirst64 val tuple)) => (ADDQ val (Select0 <t> tuple))
    (Select1     (AddTupleFirst64   _ tuple)) => (Select1 tuple)
    
    // Atomic compare and swap.
    (AtomicCompareAndSwap32 ptr old new_ mem) => (CMPXCHGLlock ptr old new_ mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top