HomeSort by relevance Sort by last modified time
    Searched defs:values (Results 276 - 300 of 6006) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_buffer.h 87 HloBuffer(Id id, tensorflow::gtl::ArraySlice<const HloValue*> values)
88 : id_(id), values_(values.begin(), values.end()) {}
93 // Return all values contained in this buffer.
94 const std::vector<const HloValue*>& values() const { return values_; } function in class:xla::HloBuffer
114 // The set of values contained in this buffer. Vector contains no duplicates
hlo_dataflow_analysis.h 16 // Analysis for determining the possible set of values for all positions
18 // tracking values across computation boundaries.
42 // Analysis which identifies all HLO values and their uses in an HLO module.
47 // ssa_form : If true then new values are defined at the merge points of
49 // values". The merge is formed by the init value and loop backedge. The
51 // merge point is reachable by multiple different values. The SSA form is
52 // also in loop-closed form in that no values defined inside of a loop
56 // values. Rather, the HloValueSet for the merge point contains the union
114 const std::vector<const HloValue*>& values() const { return values_vector_; } function in class:xla::HloDataflowAnalysis
137 // contain exactly the HloValues defined by each instruction. These values ca
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
DataType.java 48 for (DataType t : values) {
75 private static final DataType[] values = values(); field in class:DataType
  /external/tensorflow/tensorflow/core/lib/core/
coding_test.cc 135 // Construct the list of values to check
136 std::vector<uint64> values; local
137 // Some special values
138 values.push_back(0);
139 values.push_back(100);
140 values.push_back(~static_cast<uint64>(0));
141 values.push_back(~static_cast<uint64>(0) - 1);
143 // Test values near powers of two
145 values.push_back(power);
146 values.push_back(power - 1)
    [all...]
  /external/tensorflow/tensorflow/python/training/
saver_test_utils.py 59 def insert(self, keys, values):
60 return gen_lookup_ops._lookup_table_insert_v2(self.table_ref, keys, values)
68 def values(self): member in class:CheckpointedOp
84 name + "-values")
  /external/testng/src/main/java/org/testng/internal/
SuiteRunnerMap.java 27 public Collection<ISuite> values() { method in class:SuiteRunnerMap
28 return m_map.values();
  /external/turbine/java/com/google/turbine/binder/bound/
AnnotationMetadata.java 36 EnumSet<ElementType> values = EnumSet.allOf(ElementType.class); local
37 values.remove(ElementType.TYPE_PARAMETER);
38 values.remove(ElementType.TYPE_USE);
39 return ImmutableSet.copyOf(values);
  /external/turbine/java/com/google/turbine/type/
AnnoInfo.java 35 private final ImmutableMap<String, Const> values; field in class:AnnoInfo
38 SourceFile source, ClassSymbol sym, Anno tree, ImmutableMap<String, Const> values) {
42 this.values = values;
61 public ImmutableMap<String, Const> values() { method in class:AnnoInfo
62 return values;
70 public AnnoInfo withValues(ImmutableMap<String, Const> values) {
71 return new AnnoInfo(source, sym, tree, values);
  /external/valgrind/none/tests/ppc32/
ldst_multiple.c 17 static uint32_t values[] = { variable
85 r14 = (HWord_t)values;
103 * load the last two values into r30 - r31.
138 ::"b"(values));
140 RESTORE_REGS(values);
  /external/valgrind/none/tests/ppc64/
ldst_multiple.c 17 static uint32_t values[] = { variable
85 r14 = (HWord_t)values;
103 * load the last two values into r30 - r31.
138 ::"b"(values));
140 RESTORE_REGS(values);
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
StatsReport.java 54 public final Value[] values; field in class:StatsReport
56 public StatsReport(String id, String type, double timestamp, Value[] values) {
60 this.values = values;
66 .append(", timestamp: ").append(timestamp).append(", values: ");
67 for (int i = 0; i < values.length; ++i) {
68 builder.append(values[i].toString()).append(", ");
  /external/webrtc/webrtc/modules/audio_processing/test/
test_utils.h 128 // Returns a vector<T> parsed from whitespace delimited values in to_parse,
132 std::vector<T> values; local
138 std::back_inserter(values));
140 return values;
  /frameworks/base/core/java/android/content/
Entity.java 34 public Entity(ContentValues values) {
35 mValues = values;
47 public void addSubValue(Uri uri, ContentValues values) {
48 mSubValues.add(new Entity.NamedContentValues(uri, values));
53 public final ContentValues values; field in class:Entity.NamedContentValues
55 public NamedContentValues(Uri uri, ContentValues values) {
57 this.values = values;
66 sb.append("\n -> ").append(namedValue.values);
  /frameworks/base/core/java/android/transition/
Rotate.java 36 transitionValues.values.put(PROPNAME_ROTATION, transitionValues.view.getRotation());
41 transitionValues.values.put(PROPNAME_ROTATION, transitionValues.view.getRotation());
51 float startRotation = (Float) startValues.values.get(PROPNAME_ROTATION);
52 float endRotation = (Float) endValues.values.get(PROPNAME_ROTATION);
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 55 float* values = valueArray ? env->GetFloatArrayElements(valueArray, NULL) : NULL; local
56 result = interp->timeToValues(msec, (SkScalar*)values);
61 values[i] = SkScalarToFloat(*(SkScalar*)&values[i]);
63 env->ReleaseFloatArrayElements(valueArray, values, 0);
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridInHorizontal.java 42 String values[] = new String[1000]; local
45 values[i] = ((Integer)i).toString();
51 android.R.layout.simple_list_item_1, values));
GridInVertical.java 42 String values[] = new String[1000]; local
45 values[i] = ((Integer)i).toString();
51 android.R.layout.simple_list_item_1, values));
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListRecyclerProfiling.java 36 String values[] = new String[1000]; local
38 values[i] = ((Integer) i).toString();
46 android.R.layout.simple_list_item_1, values));
ListScrollListener.java 43 String values[] = new String[1000]; local
46 values[i] = ((Integer)i).toString();
51 android.R.layout.simple_list_item_1, values));
  /frameworks/base/media/java/android/media/
AudioGainConfig.java 20 * The AudioGainConfig is used by APIs setting or getting values on a given gain
36 int[] values, int rampDurationMs) {
41 mValues = values;
70 * Gain values for each channel in the order of bits set in
73 public int[] values() { method in class:AudioGainConfig
  /frameworks/base/tools/aapt2/
ResourceTable_test.cpp 154 std::vector<ResourceConfigValue*> values = local
156 ASSERT_EQ(2u, values.size());
157 EXPECT_EQ(std::string("phone"), values[0]->product);
158 EXPECT_EQ(std::string("tablet"), values[1]->product);
  /frameworks/support/transition/src/androidTest/java/androidx/transition/
PropagationTest.java 46 assertTrue(redValues.values.keySet().contains(prop));
48 assertEquals(propagation.getPropagationProperties().length, redValues.values.size());
  /hardware/google/av/codec2/include/
C2Component.h 38 POSSIBLE, ///< query all possible values regardless of other settings
39 CURRENT, ///< query currently possible values given dependent settings
47 C2FieldSupportedValues values; variable
115 * \note Parameter values do not depend on the order of query.
170 * other hand, strict parameters only accept specific values for their fields, and if the client
174 * return value shall be used. Final values for all parameters set are propagated back to the
178 * update may allow some subsequent values for further parameter updates.
188 * parameter values after the updates (this is because tuning is performed
191 * confusing - are they "existing" values or intended to be configured
192 * values
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
ElementTypeTest.java 56 * @tests java.lang.annotation.ElementType#values()
60 ElementType[] values = ElementType.values(); local
61 assertTrue(values.length > 1);
62 Arrays.sort(values);
63 assertTrue(Arrays.binarySearch(values, ElementType.METHOD) >= 0);
RetentionPolicyTest.java 51 * @tests java.lang.annotation.RetentionPolicy#values()
55 RetentionPolicy[] values = RetentionPolicy.values(); local
56 assertTrue(values.length > 1);
57 Arrays.sort(values);
58 assertTrue(Arrays.binarySearch(values, RetentionPolicy.RUNTIME) >= 0);

Completed in 711 milliseconds

<<11121314151617181920>>