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

1 2

  /external/stlport/test/unit/
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>());
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>());
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/
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>());
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>());
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-stlport/unit/
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>());
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>());
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));
  /external/sqlite/android/
PhoneNumberUtilsTest.cpp 32 #define EXPECT(function, input1, input2, expected, total, error) \
34 const char *i1_cache = input1; \
49 #define EXPECT_EQ(input1, input2) \
50 EXPECT(phone_number_compare_strict, (input1), (input2), true, \
54 #define EXPECT_NE(input1, input2) \
55 EXPECT(phone_number_compare_strict, (input1), (input2), false, \
  /external/webkit/WebCore/svg/
SVGFETileElement.cpp 61 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
63 if (!input1)
66 RefPtr<FilterEffect> effect = FETile::create(input1);
SVGFEBlendElement.cpp 84 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
87 if (!input1 || !input2)
90 RefPtr<FilterEffect> effect = FEBlend::create(input1, input2, static_cast<BlendModeType>(mode()));
SVGFEComponentTransferElement.cpp 66 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
68 if (!input1)
87 RefPtr<FilterEffect> effect = FEComponentTransfer::create(input1, red, green, blue, alpha);
SVGFEGaussianBlurElement.cpp 85 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
87 if (!input1)
90 RefPtr<FilterEffect> effect = FEGaussianBlur::create(input1, stdDeviationX(), stdDeviationY());
SVGFEMorphologyElement.cpp 94 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
96 if (!input1)
99 RefPtr<FilterEffect> effect = FEMorphology::create(input1, static_cast<MorphologyOperatorType>(_operator()), radiusX(), radiusY());
SVGFEOffsetElement.cpp 75 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
77 if (!input1)
80 RefPtr<FilterEffect> effect = FEOffset::create(input1, dx(), dy());
SVGFEColorMatrixElement.cpp 86 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
88 if (!input1)
99 RefPtr<FilterEffect> effect = FEColorMatrix::create(input1, static_cast<ColorMatrixType>(type()), _values);
SVGFEDiffuseLightingElement.cpp 98 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
100 if (!input1)
106 RefPtr<FilterEffect> effect = FEDiffuseLighting::create(input1, color, surfaceScale(), diffuseConstant(),
SVGFEDisplacementMapElement.cpp 99 FilterEffect* input1 = filterResource->builder()->getEffectById(in1()); local
102 if (!input1 || !input2)
106 RefPtr<FilterEffect> effect = FEDisplacementMap::create(input1, input2, static_cast<ChannelSelectorType>(xChannelSelector()),

Completed in 2229 milliseconds

1 2