Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for arraymake (0.13 sec)

  1. src/cmd/compile/internal/ssa/decompose.go

    	v.AddArgs(fields[:n]...)
    
    	// Recursively decompose phis for each field.
    	for _, f := range fields[:n] {
    		decomposeUserPhi(f)
    	}
    }
    
    // decomposeArrayPhi replaces phi-of-array with arraymake(phi-of-array-element),
    // and then recursively decomposes the element phi.
    func decomposeArrayPhi(v *Value) {
    	t := v.Type
    	if t.NumElem() == 0 {
    		v.reset(OpArrayMake0)
    		return
    	}
    	if t.NumElem() != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/ArrayMap.java

        @Override
        public boolean equals(final Object o) {
            if (o == null) {
                return false;
            }
            if (!(o instanceof ArrayMap)) {
                return false;
            }
            @SuppressWarnings("unchecked")
            final ArrayMap<K, V> e = (ArrayMap<K, V>) o;
            if (size != e.size) {
                return false;
            }
            for (int i = 0; i < size; i++) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

            exception.expectMessage(is("Index:1, Size:0"));
            ArrayMap<String, String> m = new ArrayMap<String, String>(1);
            m.getEntryAt(1);
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testSerialize() throws Exception {
            @SuppressWarnings("unchecked")
            ArrayMap<String, String> copy = (ArrayMap<String, String>) SerializeUtil.serialize(map);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/dec.rules

            f1
            (Store {t.FieldType(0)}
              (OffPtr <t.FieldType(0).PtrTo()> [0] dst)
                f0 mem))))
    
    (ArraySelect (ArrayMake1 x)) => x
    (ArraySelect [0] (IData x)) => (IData x)
    
    (Store dst (ArrayMake1 e) mem) => (Store {e.Type} dst e mem)
    
    // NOTE removed must-not-be-SSA condition.
    (ArraySelect [i] x:(Load <t> ptr mem)) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. test/slice3.go

    				notOK()
    				println(desc, " unexpected panic: ", fmt.Sprint(err))
    			}
    		}
    		// "no panic" is checked below
    	}()
    	
    	x := f()
    
    	arrayBase := uintptr(unsafe.Pointer(array))
    	raw := *(*[3]uintptr)(unsafe.Pointer(&x))
    	base, len, cap := raw[0] - arrayBase, raw[1], raw[2]
    	if xbase < 0 {
    		notOK()
    		println(desc, "=", base, len, cap, "want panic")
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ArrayTable.java

            public K getKey() {
              return ArrayMap.this.getKey(index);
            }
    
            @Override
            @ParametricNullness
            public V getValue() {
              return ArrayMap.this.getValue(index);
            }
    
            @Override
            @ParametricNullness
            public V setValue(@ParametricNullness V value) {
              return ArrayMap.this.setValue(index, value);
            }
          };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java

     */
    package org.codelibs.core.collection;
    
    import java.util.Map;
    
    /**
     * キーで大文字小文字を気にしない {@link ArrayMap}です。
     *
     * @author higa 値の型
     * @param <V>
     *            値の型
     */
    public class CaseInsensitiveMap<V> extends ArrayMap<String, V> {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * {@link CaseInsensitiveMap}を作成します。
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ArrayTable.java

            public K getKey() {
              return ArrayMap.this.getKey(index);
            }
    
            @Override
            @ParametricNullness
            public V getValue() {
              return ArrayMap.this.getValue(index);
            }
    
            @Override
            @ParametricNullness
            public V setValue(@ParametricNullness V value) {
              return ArrayMap.this.setValue(index, value);
            }
          };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        protected final CaseInsensitiveMap<PropertyDesc> propertyDescCache = new CaseInsensitiveMap<>();
    
        /** フィールド名から{@link FieldDescImpl}へのマップ */
        protected final ArrayMap<String, FieldDesc> fieldDescCache = new ArrayMap<>();
    
        /** {@link ConstructorDesc}の配列 */
        protected final List<ConstructorDesc> constructorDescs = newArrayList();
    
        /** メソッド名から{@link MethodDesc}配列へのマップ */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritedec.go

    		return rewriteValuedec_OpStructMake1(v)
    	case OpStructSelect:
    		return rewriteValuedec_OpStructSelect(v)
    	}
    	return false
    }
    func rewriteValuedec_OpArrayMake1(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (ArrayMake1 x)
    	// cond: x.Type.IsPtrShaped()
    	// result: x
    	for {
    		x := v_0
    		if !(x.Type.IsPtrShaped()) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
Back to top