HomeSort by relevance Sort by last modified time
    Searched defs:input1 (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/stlport/test/unit/
modulus_test.cpp 30 int input1 [4] = { 6, 8, 10, 2 }; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
neq_test.cpp 44 int input1 [4] = { 1, 7, 2, 2 }; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
plusminus_test.cpp 33 int input1 [4] = { 1, 6, 11, 8 }; local
36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>());
42 int input1 [4] = { 1, 5, 7, 8 }; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
logic_test.cpp 35 bool input1 [4] = { true, true, false, true }; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
55 bool input1 [4] = { true, true, false, true }; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
ptr2_test.cpp 45 int input1 [4] = { 7, 2, 3, 5 }; local
49 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<int, int, int>(sum));
58 int input1 [4] = { 7, 2, 3, 5 }; local
62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
  /ndk/tests/device/test-gnustl-full/unit/
modulus_test.cpp 30 int input1 [4] = { 6, 8, 10, 2 }; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
neq_test.cpp 44 int input1 [4] = { 1, 7, 2, 2 }; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
plusminus_test.cpp 33 int input1 [4] = { 1, 6, 11, 8 }; local
36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>());
42 int input1 [4] = { 1, 5, 7, 8 }; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
logic_test.cpp 35 bool input1 [4] = { true, true, false, true }; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
55 bool input1 [4] = { true, true, false, true }; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
  /ndk/tests/device/test-stlport/unit/
modulus_test.cpp 30 int input1 [4] = { 6, 8, 10, 2 }; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
neq_test.cpp 44 int input1 [4] = { 1, 7, 2, 2 }; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
plusminus_test.cpp 33 int input1 [4] = { 1, 6, 11, 8 }; local
36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>());
42 int input1 [4] = { 1, 5, 7, 8 }; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
logic_test.cpp 35 bool input1 [4] = { true, true, false, true }; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
55 bool input1 [4] = { true, true, false, true }; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEOffsetElement.cpp 112 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
114 if (!input1)
118 effect->inputEffects().append(input1);
SVGFETileElement.cpp 95 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
97 if (!input1)
101 effect->inputEffects().append(input1);
SVGFEBlendElement.cpp 130 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
133 if (!input1 || !input2)
139 inputEffects.append(input1);
SVGFEColorMatrixElement.cpp 135 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
137 if (!input1)
172 effect->inputEffects().append(input1);
SVGFEComponentTransferElement.cpp 81 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
83 if (!input1)
103 effect->inputEffects().append(input1);
SVGFECompositeElement.cpp 175 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
178 if (!input1 || !input2)
184 inputEffects.append(input1);
SVGFEDisplacementMapElement.cpp 152 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
155 if (!input1 || !input2)
161 inputEffects.append(input1);
SVGFEGaussianBlurElement.cpp 130 FilterEffect* input1 = filterBuilder->getEffectById(in1CurrentValue()); local
132 if (!input1)
139 effect->inputEffects().append(input1);
  /external/chromium/crypto/
sha2_unittest.cc 12 std::string input1 = "abc"; local
23 crypto::SHA256HashString(input1, output1, sizeof(output1));
28 crypto::SHA256HashString(input1,
37 std::string input1 = "abc"; local
47 std::string output1 = crypto::SHA256HashString(input1);
  /external/chromium_org/chrome/common/
instant_restricted_id_cache_unittest.cc 40 std::vector<TestData> input1; local
41 input1.push_back(TestData("A"));
42 input1.push_back(TestData("B"));
43 input1.push_back(TestData("C"));
44 cache.AddItems(input1);
53 EXPECT_EQ(input1[i], output[i].second);
59 EXPECT_EQ(input1[2], t);
79 EXPECT_EQ(input1[2], t);
104 EXPECT_EQ(input1[2], t);
117 std::vector<ItemIDPair> input1; local
199 std::vector<ItemIDPair> input1; local
272 std::vector<ItemIDPair> input1; local
356 std::vector<TestData> input1; local
401 std::vector<ItemIDPair> input1; local
    [all...]
  /external/chromium_org/crypto/
sha2_unittest.cc 12 std::string input1 = "abc"; local
23 crypto::SHA256HashString(input1, output1, sizeof(output1));
28 crypto::SHA256HashString(input1,
37 std::string input1 = "abc"; local
47 std::string output1 = crypto::SHA256HashString(input1);
  /external/chromium_org/tools/gn/
tokenizer_unittest.cc 152 char input1[] = "aaa\nxaa\n\nya"; local
153 EXPECT_EQ('x', input1[Tokenizer::ByteOffsetOfNthLine(input1, 2)]);
154 EXPECT_EQ('y', input1[Tokenizer::ByteOffsetOfNthLine(input1, 4)]);

Completed in 318 milliseconds

1 2 3