Home
last modified time | relevance | path

Searched refs:values2 (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dutils_neon.cc111 const float* const values2, in ComputeCrossCorrelationNeon() argument
116 const float32_t* const arm_vals2 = (const float32_t* const) values2; in ComputeCrossCorrelationNeon()
132 sxy += values1[offset] * values2[offset]; in ComputeCrossCorrelationNeon()
139 ComputeCrossCorrelationCpu(values1, values2, num_vals); in ComputeCrossCorrelationNeon()
Dutils.h242 const float* const values2,
303 const float* const values2, in ComputeCrossCorrelationCpu() argument
307 sxy += values1[offset] * values2[offset]; in ComputeCrossCorrelationCpu()
317 const float* const values2, in ComputeCrossCorrelation() argument
321 (num_vals >= 8) ? ComputeCrossCorrelationNeon(values1, values2, num_vals) in ComputeCrossCorrelation()
324 ComputeCrossCorrelationCpu(values1, values2, num_vals); in ComputeCrossCorrelation()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
DTestBoilerplate.java154 public static boolean verifySetsIdentical(AbstractTestLog here, Set values1, Set values2) { in verifySetsIdentical() argument
155 if (values1.equals(values2)) return true; in verifySetsIdentical()
160 temp.removeAll(values2); in verifySetsIdentical()
163 temp = new TreeSet(values2); in verifySetsIdentical()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestBoilerplate.java153 public static boolean verifySetsIdentical(AbstractTestLog here, Set values1, Set values2) { in verifySetsIdentical() argument
154 if (values1.equals(values2)) return true; in verifySetsIdentical()
159 temp.removeAll(values2); in verifySetsIdentical()
162 temp = new TreeSet(values2); in verifySetsIdentical()
/external/google-breakpad/src/testing/test/
Dgmock-internal-utils_test.cc274 values2(2); in TEST() local
277 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
283 values2(1, 'b'), in TEST() local
288 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
299 values2(1, 'a', true, 2L, "hello"), in TEST() local
303 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
/external/v8/testing/gmock/test/
Dgmock-internal-utils_test.cc300 values2(2); in TEST() local
303 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
309 values2(1, 'b'), in TEST() local
314 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
325 values2(1, 'a', true, 2L, "hello"), in TEST() local
329 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
/external/libmojo/mojo/public/cpp/bindings/tests/
Dmap_unittest.cc60 Array<int> values2; in TEST_F() local
61 map.DecomposeMapTo(&keys2, &values2); in TEST_F()
65 EXPECT_EQ(kStringIntDataSize, values2.size()); in TEST_F()
76 EXPECT_EQ(value, values2[j]); in TEST_F()
/external/googletest/googlemock/test/
Dgmock-internal-utils_test.cc301 values2(2); in TEST() local
304 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
310 values2(1, 'b'), in TEST() local
315 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
325 values1(1, 'a', true, 2L, "hi"), values2(1, 'a', true, 2L, "hello"), in TEST() local
329 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DDatabaseTestBase.java67 ContentValues values2 = new ContentValues(); in setUp() local
69 values2.put("first_column", stringColumnValue2); in setUp()
70 values2.put("second_column", byteColumnValue2); in setUp()
72 database.insert("rawtable", null, values2); in setUp()
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DDescriptorsTest.java416 WireFormat.FieldType[] values2 = WireFormat.FieldType.values(); in testFieldTypeTablesMatch() local
418 assertEquals(values1.length, values2.length); in testFieldTypeTablesMatch()
421 assertEquals(values1[i].toString(), values2[i].toString()); in testFieldTypeTablesMatch()
431 WireFormat.JavaType[] values2 = WireFormat.JavaType.values(); in testJavaTypeTablesMatch() local
433 assertEquals(values1.length, values2.length); in testJavaTypeTablesMatch()
436 assertEquals(values1[i].toString(), values2[i].toString()); in testJavaTypeTablesMatch()
/external/tensorflow/tensorflow/compiler/xla/tests/
Darray_elementwise_ops_test.cc1352 std::vector<float> values2 = {0.1f, 1.1f, 6.9f, 12.5f, -15.0f, -0.5f}; in XLA_TEST_F() local
1362 std::unique_ptr<Literal> literal2 = Literal::CreateR1<float>(values2); in XLA_TEST_F()
1372 expected[i] = (values0[i] / values1[i]) / values2[i]; in XLA_TEST_F()
1384 std::vector<float> values2 = {0.1f, 1.1f, 6.9f, 12.5f, -15.0f, -0.5f}; in XLA_TEST_F() local
1394 std::unique_ptr<Literal> literal2 = Literal::CreateR1<float>(values2); in XLA_TEST_F()
1405 expected[i] = values0[i] / (values1[i] / values2[i]); in XLA_TEST_F()
1417 std::vector<float> values2 = {0.1f, 1.1f, 6.9f, 9.5f, -11.0f, -0.5f}; in XLA_TEST_F() local
1427 std::unique_ptr<Literal> literal2 = Literal::CreateR1<float>(values2); in XLA_TEST_F()
1438 expected[i] = values0[i] / std::pow(values1[i], values2[i]); in XLA_TEST_F()
1450 std::vector<float> values2 = {0.1f, 1.1f, 6.9f, 12.5f, -15.0f, -0.5f}; in XLA_TEST_F() local
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DSQLiteDatabaseTest.java86 ContentValues values2 = new ContentValues(); in setUp() local
88 values2.put("first_column", stringColumnValue2); in setUp()
89 values2.put("second_column", byteColumnValue2); in setUp()
91 database.insert("rawtable", null, values2); in setUp()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DUnicodeMapTest.java378 Set<String> values2 = new TreeSet<String>(map2.values()); in splitTestUnicodeMapGeneralCategory() local
379 if (!TestBoilerplate.verifySetsIdentical(this, values1, values2)) { in splitTestUnicodeMapGeneralCategory()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DUnicodeMapTest.java375 Set<String> values2 = new TreeSet<String>(map2.values()); in splitTestUnicodeMapGeneralCategory() local
376 if (!TestBoilerplate.verifySetsIdentical(this, values1, values2)) { in splitTestUnicodeMapGeneralCategory()
/external/libxml2/
Dxpath.c6615 double *values2; in xmlXPathCompareNodeSets() local
6646 values2 = (double *) xmlMalloc(ns2->nodeNr * sizeof(double)); in xmlXPathCompareNodeSets()
6647 if (values2 == NULL) { in xmlXPathCompareNodeSets()
6659 values2[j] = xmlXPathCastNodeToNumber(ns2->nodeTab[j]); in xmlXPathCompareNodeSets()
6661 if (xmlXPathIsNaN(values2[j])) in xmlXPathCompareNodeSets()
6664 ret = (val1 < values2[j]); in xmlXPathCompareNodeSets()
6666 ret = (val1 <= values2[j]); in xmlXPathCompareNodeSets()
6668 ret = (val1 > values2[j]); in xmlXPathCompareNodeSets()
6670 ret = (val1 >= values2[j]); in xmlXPathCompareNodeSets()
6678 xmlFree(values2); in xmlXPathCompareNodeSets()
[all …]
/external/tensorflow/tensorflow/contrib/lookup/
Dlookup_ops_test.py888 values2 = constant_op.constant([3, 4, 5, 6, 7], dtypes.int64)
890 table.insert(keys2, values2).run()