/external/deqp-deps/amber/src/ |
D | buffer_test.cc | 205 std::vector<Value> values1(40); in TEST_F() local 206 for (uint32_t i = 0; i < values1.size(); i += 4) in TEST_F() 207 values1[i].SetIntValue(i / 4 * 25); in TEST_F() 209 std::vector<Value> values2 = values1; in TEST_F() 214 b1.SetData(values1); in TEST_F() 232 std::vector<Value> values1(40); in TEST_F() local 233 for (uint32_t i = 0; i < values1.size(); i += 4) in TEST_F() 234 values1[i].SetIntValue(i / 4 * 25); in TEST_F() 236 std::vector<Value> values2 = values1; in TEST_F() 241 b1.SetData(values1); in TEST_F() [all …]
|
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/ |
D | utils_neon.cc | 110 float ComputeCrossCorrelationNeon(const float* const values1, in ComputeCrossCorrelationNeon() argument 115 const float32_t* const arm_vals1 = (const float32_t* const) values1; in ComputeCrossCorrelationNeon() 132 sxy += values1[offset] * values2[offset]; in ComputeCrossCorrelationNeon() 139 ComputeCrossCorrelationCpu(values1, values2, num_vals); in ComputeCrossCorrelationNeon()
|
D | utils.h | 241 float ComputeCrossCorrelationNeon(const float* const values1, 302 inline float ComputeCrossCorrelationCpu(const float* const values1, in ComputeCrossCorrelationCpu() argument 307 sxy += values1[offset] * values2[offset]; in ComputeCrossCorrelationCpu() 316 inline float ComputeCrossCorrelation(const float* const values1, in ComputeCrossCorrelation() argument 321 (num_vals >= 8) ? ComputeCrossCorrelationNeon(values1, values2, num_vals) in ComputeCrossCorrelation() 324 ComputeCrossCorrelationCpu(values1, values2, num_vals); in ComputeCrossCorrelation()
|
/external/webrtc/modules/audio_processing/utility/ |
D | cascaded_biquad_filter_unittest.cc | 77 std::vector<float> values1(100, 1.f); in TEST() local 78 filter.Process(values1); in TEST() 85 for (size_t k = 0; k < values1.size(); ++k) { in TEST() 86 EXPECT_EQ(values1[k], values2[k]); in TEST()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | TestBoilerplate.java | 153 public static boolean verifySetsIdentical(AbstractTestLog here, Set values1, Set values2) { in verifySetsIdentical() argument 154 if (values1.equals(values2)) return true; in verifySetsIdentical() 158 temp = new TreeSet(values1); in verifySetsIdentical() 163 temp.removeAll(values1); in verifySetsIdentical()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | TestBoilerplate.java | 154 public static boolean verifySetsIdentical(AbstractTestLog here, Set values1, Set values2) { in verifySetsIdentical() argument 155 if (values1.equals(values2)) return true; in verifySetsIdentical() 159 temp = new TreeSet(values1); in verifySetsIdentical() 164 temp.removeAll(values1); in verifySetsIdentical()
|
/external/tensorflow/tensorflow/python/kernel_tests/proto/ |
D | encode_proto_op_test_base.py | 125 values1 = array_ops.placeholder(dtypes.float64) 129 values=[values1, values2], 132 values1: [[0.0]],
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
D | subscribe.cpp | 21 auto values1 = rxcpp::observable<>::range(1, 3); variable 23 values1.subscribe(subscriber.get_observer());
|
D | range.cpp | 8 auto values1 = rxcpp::observable<>::range(1, 5); variable 9 values1.
|
/external/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
D | DescriptorsTest.java | 401 FieldDescriptor.Type[] values1 = FieldDescriptor.Type.values(); in testFieldTypeTablesMatch() local 404 assertEquals(values1.length, values2.length); in testFieldTypeTablesMatch() 406 for (int i = 0; i < values1.length; i++) { in testFieldTypeTablesMatch() 407 assertEquals(values1[i].toString(), values2[i].toString()); in testFieldTypeTablesMatch() 416 FieldDescriptor.JavaType[] values1 = FieldDescriptor.JavaType.values(); in testJavaTypeTablesMatch() local 419 assertEquals(values1.length, values2.length); in testJavaTypeTablesMatch() 421 for (int i = 0; i < values1.length; i++) { in testJavaTypeTablesMatch() 422 assertEquals(values1[i].toString(), values2[i].toString()); in testJavaTypeTablesMatch()
|
/external/googletest/googlemock/test/ |
D | gmock-internal-utils_test.cc | 295 std::tuple<int> values1(1), values2(2); in TEST() local 297 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST() 303 std::tuple<int, char> values1(1, 'a'), values2(1, 'b'), values3(2, 'a'), in TEST() local 306 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST() 318 values1(1, 'a', true, 2L, "hi"), values2(1, 'a', true, 2L, "hello"), in TEST() local 321 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | array_elementwise_ops_test.cc | 1610 std::vector<float> values1 = {0.0f, 1.0f, 2.0f, 0.5f, -1.0f, -0.5f}; in XLA_TEST_F() local 1615 Literal literal1 = LiteralUtil::CreateR1<float>(values1); in XLA_TEST_F() 1624 expected[i] = std::pow(std::exp(values0[i]), values1[i]); in XLA_TEST_F() 1636 std::vector<float> values1 = {0.0f, 10.0f, -4.0f, 1.0f, in XLA_TEST_F() local 1642 Literal literal1 = LiteralUtil::CreateR1<float>(values1); in XLA_TEST_F() 1651 expected[i] = std::log(std::pow(values0[i], values1[i])); in XLA_TEST_F() 1662 std::vector<float> values1 = {0.0f, 1.0f, 2.0f, 0.5f, -1.0f, -0.5f}; in XLA_TEST_F() local 1667 Literal literal1 = LiteralUtil::CreateR1<float>(values1); in XLA_TEST_F() 1676 expected[i] = std::exp(values0[i]) * std::exp(values1[i]); in XLA_TEST_F() 1687 std::vector<float> values1 = {0.0f, 1.0f, 2.0f, 0.5f, -1.0f, -0.5f}; in XLA_TEST_F() local [all …]
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | DescriptorsTest.java | 390 FieldDescriptor.Type[] values1 = FieldDescriptor.Type.values(); in testFieldTypeTablesMatch() local 393 assertEquals(values1.length, values2.length); in testFieldTypeTablesMatch() 395 for (int i = 0; i < values1.length; i++) { in testFieldTypeTablesMatch() 396 assertEquals(values1[i].toString(), values2[i].toString()); in testFieldTypeTablesMatch() 402 FieldDescriptor.JavaType[] values1 = FieldDescriptor.JavaType.values(); in testJavaTypeTablesMatch() local 405 assertEquals(values1.length, values2.length); in testJavaTypeTablesMatch() 407 for (int i = 0; i < values1.length; i++) { in testJavaTypeTablesMatch() 408 assertEquals(values1[i].toString(), values2[i].toString()); in testJavaTypeTablesMatch()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CollationMapMaker.java | 279 Set<String> values1 = (Set) it.next(); in generateCollatorFolding() local 281 if (values1.size() == 1) { in generateCollatorFolding() 283 String item = values1.iterator().next(); in generateCollatorFolding() 290 values.addAll(values1); in generateCollatorFolding()
|
/external/skia/tests/ |
D | JSONTest.cpp | 385 const Value values1[] = { v2, v6, v12 }; in DEF_TEST() local 386 const auto v13 = ArrayValue(values1, SK_ARRAY_COUNT(values1), alloc); in DEF_TEST()
|
/external/skqp/tests/ |
D | JSONTest.cpp | 385 const Value values1[] = { v2, v6, v12 }; in DEF_TEST() local 386 const auto v13 = ArrayValue(values1, SK_ARRAY_COUNT(values1), alloc); in DEF_TEST()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | UnicodeMapTest.java | 379 Set<String> values1 = map1.getAvailableValues(new TreeSet<String>()); in TestUnicodeMapGeneralCategory() local 381 if (!TestBoilerplate.verifySetsIdentical(this, values1, values2)) { in TestUnicodeMapGeneralCategory() 385 for (Iterator<String> it = values1.iterator(); it.hasNext();) { in TestUnicodeMapGeneralCategory()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | UnicodeMapTest.java | 382 Set<String> values1 = map1.getAvailableValues(new TreeSet<String>()); in TestUnicodeMapGeneralCategory() local 384 if (!TestBoilerplate.verifySetsIdentical(this, values1, values2)) { in TestUnicodeMapGeneralCategory() 388 for (Iterator<String> it = values1.iterator(); it.hasNext();) { in TestUnicodeMapGeneralCategory()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/util/ |
D | TestTokenBuffer.java | 93 double[] values1 = new double[] { in testSimpleNumberWrites() local 102 for (double v : values1) { in testSimpleNumberWrites() 112 for (double v : values1) { in testSimpleNumberWrites()
|
/external/fonttools/Lib/fontTools/mtiLib/ |
D | __init__.py | 281 values1 = values[glyph1] 284 for glyph2 in sorted(values1.keys(), key=font.getGlyphID): 285 values2 = values1[glyph2]
|
/external/libxml2/ |
D | xpath.c | 6846 xmlChar **values1; in xmlXPathEqualNodeSets() local 6876 values1 = (xmlChar **) xmlMalloc(ns1->nodeNr * sizeof(xmlChar *)); in xmlXPathEqualNodeSets() 6877 if (values1 == NULL) { in xmlXPathEqualNodeSets() 6886 xmlFree(values1); in xmlXPathEqualNodeSets() 6889 memset(values1, 0, ns1->nodeNr * sizeof(xmlChar *)); in xmlXPathEqualNodeSets() 6895 xmlFree(values1); in xmlXPathEqualNodeSets() 6903 xmlFree(values1); in xmlXPathEqualNodeSets() 6920 if (values1[i] == NULL) in xmlXPathEqualNodeSets() 6921 values1[i] = xmlNodeGetContent(ns1->nodeTab[i]); in xmlXPathEqualNodeSets() 6924 ret = xmlStrEqual(values1[i], values2[j]) ^ neq; in xmlXPathEqualNodeSets() [all …]
|
/external/llvm-project/lldb/source/Host/macosx/objcxx/ |
D | Host.mm | 752 CFTypeRef values1[] = {CFSTR("user"), CFSTR("admin"), 756 kCFAllocatorDefault, (const void **)keys1, (const void **)values1, 5,
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | lookup_ops_test.py | 2002 values1 = constant_op.constant([0, 1], dtypes.int64) 2005 self.evaluate(table.insert(keys1, values1))
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | algebraic_simplifier_test.cc | 3586 auto values1 = builder.AddInstruction( in TEST_F() local 3590 {keys, values0, values1}, 0, /*is_stable=*/false, in TEST_F() 3598 m::Op().Is(values1)))); in TEST_F()
|