/external/stlport/test/unit/ |
H A D | modulus_test.cpp | 31 int input2 [4] = { 4, 2, 11, 3 }; local 35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
|
H A D | neq_test.cpp | 45 int input2 [4] = { 1, 6, 2, 3 }; local 48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
|
H A D | plusminus_test.cpp | 34 int input2 [4] = { 1, 5, 2, 3 }; local 36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>()); 43 int input2 [4] = { 1, 4, 8, 3 }; local 47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
|
H A D | logic_test.cpp | 36 bool input2 [4] = { false, true, false, false }; local 39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>()); 56 bool input2 [4] = { false, true, false, false }; local 59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
|
H A D | ptr2_test.cpp | 46 int input2 [4] = { 1, 5, 5, 8 }; local 49 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<int, int, int>(sum)); 59 int input2 [4] = { 1, 5, 5, 8 }; 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 | 62 std::vector<TestData> input2; local 63 input2.push_back(TestData("D")); 64 input2.push_back(TestData("E")); 65 cache.AddItems(input2); 74 EXPECT_EQ(input2[i], output[i].second); 81 EXPECT_EQ(input2[1], t); 106 EXPECT_EQ(input2[1], t); 140 std::vector<ItemIDPair> input2; local 141 input2.push_back(std::make_pair(4, TestData("D"))); 142 input2 223 std::vector<ItemIDPair> input2; local 294 std::vector<TestData> input2; local 377 std::vector<ItemIDPair> input2; local [all...] |
/external/chromium_org/crypto/ |
H A D | sha2_unittest.cc | 55 std::string input2 = local 67 crypto::SHA256HashString(input2, output2, sizeof(output2)); 72 crypto::SHA256HashString(input2,
|
H A D | rsa_private_key_unittest.cc | 377 std::vector<uint8> input2; local 380 input2.resize(sizeof(short_integer_without_high_bit)); 384 memcpy(&input2.front(), short_integer_without_high_bit, 390 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input2)); 400 ASSERT_EQ(input2.size(), output2.size()); 403 ASSERT_TRUE(0 == memcmp(&output2.front(), &input2.front(), 404 input2.size()));
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
H A D | SVGFEBlendElement.cpp | 125 FilterEffect* input2 = filterBuilder->getEffectById(AtomicString(m_in2->currentValue()->value())); local 127 if (!input1 || !input2) 134 inputEffects.append(input2);
|
H A D | SVGFECompositeElement.cpp | 160 FilterEffect* input2 = filterBuilder->getEffectById(AtomicString(m_in2->currentValue()->value())); local 162 if (!input1 || !input2) 169 inputEffects.append(input2);
|
H A D | SVGFEDisplacementMapElement.cpp | 138 FilterEffect* input2 = filterBuilder->getEffectById(AtomicString(m_in2->currentValue()->value())); local 140 if (!input1 || !input2) 147 inputEffects.append(input2);
|
/external/chromium_org/tools/gn/ |
H A D | tokenizer_unittest.cc | 158 char input2[3]; local 159 input2[0] = 'a'; 160 input2[1] = '\n'; // Manually set to avoid Windows double-byte endings. 161 input2[2] = 0; 162 EXPECT_EQ(0u, Tokenizer::ByteOffsetOfNthLine(input2, 1)); 163 EXPECT_EQ(2u, Tokenizer::ByteOffsetOfNthLine(input2, 2));
|
/external/chromium_org/ui/gfx/geometry/ |
H A D | vector3d_unittest.cc | 183 gfx::Vector3dF input2; member in struct:gfx::__anon16101 199 float actual = gfx::DotProduct(tests[i].input1, tests[i].input2); 208 gfx::Vector3dF input2; 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); 20 INPUT_TYPE input2[INPUT_SIZE]; local 28 input2[i] = ((((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL; 39 FUNCTION_NAME(input1[i], input2[i]);
|
H A D | moddi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 20 INPUT_TYPE input2[INPUT_SIZE]; local 28 input2[i] = ((((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL; 39 FUNCTION_NAME(input1[i], input2[i]);
|
H A D | modsi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 20 INPUT_TYPE input2[INPUT_SIZE]; local 28 input2[i] = rand() + 1; 39 FUNCTION_NAME(input1[i], input2[i]);
|
H A D | muldi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 20 INPUT_TYPE input2[INPUT_SIZE]; local 28 input2[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); 20 INPUT_TYPE input2[INPUT_SIZE]; local 28 input2[i] = ((((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL; 39 FUNCTION_NAME(input1[i], input2[i]);
|
H A D | umoddi3.c | 16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input1, INPUT_TYPE input2); 20 INPUT_TYPE input2[INPUT_SIZE]; local 28 input2[i] = ((((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL; 39 FUNCTION_NAME(input1[i], input2[i]);
|
/external/chromium_org/base/debug/ |
H A D | trace_event_memory_unittest.cc | 172 std::ostringstream input2; local 173 input2 << " 68: 4195 [ 1087: 98009] @ " << &kTaskCategory << " " 184 AppendHeapProfileLineAsTraceFormat(input2.str().c_str(), &output2));
|
/external/chromium_org/ppapi/proxy/ |
H A D | serialized_var_unittest.cc | 179 SerializedVarTestConstructor input2(host_object); 180 SerializedVarReceiveInput receive_input2(input2); 230 std::vector<SerializedVar> input2; local 231 input2.push_back(SerializedVarTestConstructor(host_object)); 232 input2.push_back(SerializedVarTestConstructor("elite")); 233 SerializedVarVectorReceiveInput receive_input2(input2); 294 SerializedVarTestConstructor input2(host_object); 295 ReceiveSerializedVarReturnValue receive_input2(input2);
|
/external/oprofile/libutil++/tests/ |
H A D | file_manip_tests.cpp | 44 Input input2, Output const & output, Result const & result) 49 << "\"" << input2 << "\"\n" 43 check_result(char const * fct_name, Input const & input1, Input input2, Output const & output, Result const & result) argument
|
/external/chromium_org/net/tools/balsa/ |
H A D | balsa_frame_test.cc | 453 const char input2[] = ", world\r\n"; local 497 read = frame_->ProcessInput(input2, strlen(input2)); 498 ASSERT_EQ(strlen(input2), read);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
H A D | lattice_mips.c | 120 // *ptr2 = input2 * (*ptr2) + input0 * (*ptr0)); 127 int32_t input2, // Inverse coeff (1/input1) 167 "mult $ac0, %[t0], %[input2] \n\t" 168 "mult $ac1, %[t1], %[input2] \n\t" 169 "mult $ac2, %[t2], %[input2] \n\t" 170 "mult $ac3, %[t3], %[input2] \n\t" 219 "mult $ac0, %[t0], %[input2] \n\t" 239 [input2] "r" (input2) 253 "sra %[t16a], %[input2], 1 125 WebRtcIsacfix_FilterMaLoopMIPS(int16_t input0, int16_t input1, int32_t input2, int32_t* ptr0, int32_t* ptr1, int32_t* ptr2) argument [all...] |
/external/chromium_org/ui/base/dragdrop/ |
H A D | os_exchange_data_win_unittest.cc | 77 std::wstring input2 = L"http://www.google2.com/"; local 101 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input2.size() + 1)); 102 size_t stringsz = input2.size(); 106 wcscpy_s(buffer_handle, input2.size() + 1, input2.c_str()); 121 EXPECT_EQ(GURL(input2).spec(), url_from_data.spec());
|