Searched refs:input1 (Results 1 - 25 of 33) sorted by relevance

12

/external/stlport/test/unit/
H A Dplusminus_test.cpp33 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>());
H A Dlogic_test.cpp35 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>());
H A Dmodulus_test.cpp30 int input1 [4] = { 6, 8, 10, 2 }; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
H A Dneq_test.cpp44 int input1 [4] = { 1, 7, 2, 2 }; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
H A Dptr2_test.cpp45 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));
H A Dequal_test.cpp164 int input1 [4] = { 1, 7, 2, 2 }; local
168 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, equal_to<int>());
/external/sqlite/android/
H A DPhoneNumberUtilsTest.cpp34 #define EXPECT(function, input1, input2, expected, total, error) \
36 const char *i1_cache = input1; \
51 #define EXPECT_EQ(input1, input2) \
52 EXPECT(phone_number_compare_strict, (input1), (input2), true, \
56 #define EXPECT_NE(input1, input2) \
57 EXPECT(phone_number_compare_strict, (input1), (input2), false, \
/external/compiler-rt/test/timing/
H A Ddivdi3.c16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2);
19 INPUT_TYPE input1[INPUT_SIZE]; local
27 input1[i] = (((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63);
39 FUNCTION_NAME(input1[i], input2[i]);
H A Dmoddi3.c16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2);
19 INPUT_TYPE input1[INPUT_SIZE]; local
27 input1[i] = (((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63);
39 FUNCTION_NAME(input1[i], input2[i]);
H A Dmuldi3.c16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2);
19 INPUT_TYPE input1[INPUT_SIZE]; local
27 input1[i] = (((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63);
39 FUNCTION_NAME(input1[i], input2[i]);
H A Dudivdi3.c16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2);
19 INPUT_TYPE input1[INPUT_SIZE]; local
27 input1[i] = (((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63);
39 FUNCTION_NAME(input1[i], input2[i]);
H A Dumoddi3.c16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2);
19 INPUT_TYPE input1[INPUT_SIZE]; local
27 input1[i] = (((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63);
39 FUNCTION_NAME(input1[i], input2[i]);
/external/webkit/Source/WebCore/svg/
H A DSVGFETileElement.cpp88 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
90 if (!input1)
94 effect->inputEffects().append(input1);
H A DSVGFEComponentTransferElement.cpp83 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
85 if (!input1)
105 effect->inputEffects().append(input1);
H A DSVGFEBlendElement.cpp130 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
133 if (!input1 || !input2)
139 inputEffects.append(input1);
H A DSVGFEGaussianBlurElement.cpp127 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
129 if (!input1)
133 effect->inputEffects().append(input1);
H A DSVGFEOffsetElement.cpp108 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
110 if (!input1)
114 effect->inputEffects().append(input1);
H A DSVGFEColorMatrixElement.cpp132 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
134 if (!input1)
168 effect->inputEffects().append(input1);
H A DSVGFEDisplacementMapElement.cpp161 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
164 if (!input1 || !input2)
171 inputEffects.append(input1);
H A DSVGFEMorphologyElement.cpp153 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
157 if (!input1)
164 effect->inputEffects().append(input1);
H A DSVGFECompositeElement.cpp173 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
176 if (!input1 || !input2)
183 inputEffects.append(input1);
H A DSVGFEDiffuseLightingElement.cpp199 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
201 if (!input1)
213 effect->inputEffects().append(input1);
H A DSVGFESpecularLightingElement.cpp210 FilterEffect* input1 = filterBuilder->getEffectById(in1()); local
212 if (!input1)
225 effect->inputEffects().append(input1);
/external/chromium/crypto/
H A Dsha2_unittest.cc12 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/oprofile/libutil++/tests/
H A Dfile_manip_tests.cpp43 static void check_result(char const * fct_name, Input const & input1, argument
48 << "for:\n\"" << input1 << "\"\n"

Completed in 179 milliseconds

12