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

1 2 3 4 5

  /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/chromium_org/third_party/skia/tests/
GrGLSLPrettyPrintTest.cpp 14 const SkString input1("#this is not a realshader\nvec4 some stuff;outside of a function;"
85 SkString test = GrGLSLPrettyPrint::PrettyPrintGLSL(input1, true);
  /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/sqlite/android/
PhoneNumberUtilsTest.cpp 34 #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/builtins/timing/
divdi3.c 16 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]);
moddi3.c 16 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]);
modsi3.c 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2);
19 INPUT_TYPE input1[INPUT_SIZE]; local
27 input1[i] = rand();
39 FUNCTION_NAME(input1[i], input2[i]);
muldi3.c 16 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]);
udivdi3.c 16 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]);
umoddi3.c 16 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/chromium_org/third_party/WebKit/Source/core/svg/
SVGFETileElement.cpp 84 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local
86 if (!input1)
90 effect->inputEffects().append(input1);

Completed in 392 milliseconds

1 2 3 4 5