/external/stlport/test/unit/ |
H A D | 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>());
|
H A D | 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>());
|
H A D | 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>());
|
H A D | 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>());
|
H A D | 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/chrome/common/ |
H A D | 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/ |
H A D | 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);
|
H A D | rsa_private_key_unittest.cc | 376 std::vector<uint8> input1; local 379 input1.resize(sizeof(short_integer_with_high_bit)); 382 memcpy(&input1.front(), short_integer_with_high_bit, 388 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input1)); 399 ASSERT_EQ(input1.size(), output1.size()); 401 ASSERT_TRUE(0 == memcmp(&output1.front(), &input1.front(), 402 input1.size()));
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
H A D | SVGFEOffsetElement.cpp | 97 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 99 if (!input1) 103 effect->inputEffects().append(input1);
|
H A D | SVGFETileElement.cpp | 85 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 87 if (!input1) 91 effect->inputEffects().append(input1);
|
H A D | SVGFEBlendElement.cpp | 124 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 127 if (!input1 || !input2) 133 inputEffects.append(input1);
|
H A D | SVGFEComponentTransferElement.cpp | 73 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 75 if (!input1) 95 effect->inputEffects().append(input1);
|
H A D | SVGFECompositeElement.cpp | 159 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 162 if (!input1 || !input2) 168 inputEffects.append(input1);
|
H A D | SVGFEDisplacementMapElement.cpp | 137 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 140 if (!input1 || !input2) 146 inputEffects.append(input1);
|
H A D | SVGFEGaussianBlurElement.cpp | 100 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 102 if (!input1) 109 effect->inputEffects().append(input1);
|
H A D | SVGFEColorMatrixElement.cpp | 126 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); local 128 if (!input1) 163 effect->inputEffects().append(input1);
|
/external/chromium_org/tools/gn/ |
H A D | tokenizer_unittest.cc | 154 char input1[] = "aaa\nxaa\n\nya"; local 155 EXPECT_EQ('x', input1[Tokenizer::ByteOffsetOfNthLine(input1, 2)]); 156 EXPECT_EQ('y', input1[Tokenizer::ByteOffsetOfNthLine(input1, 4)]);
|
/external/chromium_org/ui/gfx/geometry/ |
H A D | vector3d_unittest.cc | 182 gfx::Vector3dF input1; member in struct:gfx::__anon16101 199 float actual = gfx::DotProduct(tests[i].input1, tests[i].input2); 207 gfx::Vector3dF input1; member in struct:gfx::__anon16102 227 Vector3dF actual = gfx::CrossProduct(tests[i].input1, tests[i].input2);
|
/external/compiler-rt/test/builtins/timing/ |
H A D | 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]);
|
H A D | 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]);
|
H A D | 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]);
|
H A D | 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]);
|
H A D | 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]);
|
H A D | 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/ppapi/proxy/ |
H A D | serialized_var_unittest.cc | 171 SerializedVarTestConstructor input1(host_object); 172 SerializedVarReceiveInput receive_input(input1); 214 std::vector<SerializedVar> input1; local 215 input1.push_back(SerializedVarTestConstructor(host_object)); 216 input1.push_back(SerializedVarTestConstructor("elite")); 217 SerializedVarVectorReceiveInput receive_input(input1); 284 SerializedVarTestConstructor input1(host_object); 285 ReceiveSerializedVarReturnValue receive_input(input1); 328 SerializedVarTestConstructor input1(host_object); 329 ReceiveSerializedVarReturnValue receive_input(input1); [all...] |