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

1 2 3 4 5

  /external/toybox/tests/
cmp.test 14 c" > input2
16 testing "cmp identical files, stdout" "cmp input input2" "" "ab\nc\n" ""
17 testing "cmp identical files, return code" "cmp input input2 && echo yes" "yes\n" "ab\nc\n" ""
19 testing "cmp EOF, stderr" "cmp input input2 2>&1" "cmp: EOF on input2\n" "ab\nc\nx" ""
20 testing "cmp EOF, return code" "cmp input input2 2>/dev/null || echo yes" "yes\n" "ab\nc\nx" ""
22 testing "cmp diff, stdout" "cmp input input2" "input input2 differ: char 4, line 2\n" "ab\nx\nx" ""
23 testing "cmp diff, return code" "cmp input input2 > /dev/null || echo yes" "yes\n" "ab\nx\nx" ""
25 testing "cmp -s EOF, return code" "cmp -s input input2 || echo yes" "yes\n" "ab\nc\nx" "
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
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>());
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>());
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>());
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>());
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));
  /ndk/tests/device/test-stlport/unit/
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>());
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>());
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>());
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>());
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/sqlite/android/
PhoneNumberUtilsTest.cpp 34 #define EXPECT(function, input1, input2, expected, total, error) \
37 const char *i2_cache = input2; \
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);
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]);
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]);
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]);
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]);
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]);
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]);
  /libcore/luni/src/test/java/libcore/java/math/
RunCSVTestsStrict.java 44 double input2, String extra) throws Exception {
50 returnValue = m.invoke(null, input1, (int) input2);
53 returnValue = m.invoke(null, input1, input2);
CSVTest.java 17 * for two input: function,expected_output,input1,input2,extra
71 double input2 = Double.parseDouble(testCase[3]); local
75 run2InputTest(function, expectedOutput, input, input2, extra);
87 abstract void run2InputTest(String func, double expectedOutput, double input1, double input2, String extra) throws Exception;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lattice_mips.c 122 // *ptr2 = input2 * (*ptr2) + input0 * (*ptr0));
129 int32_t input2, // Inverse coeff (1/input1)
169 "mult $ac0, %[t0], %[input2] \n\t"
170 "mult $ac1, %[t1], %[input2] \n\t"
171 "mult $ac2, %[t2], %[input2] \n\t"
172 "mult $ac3, %[t3], %[input2] \n\t"
221 "mult $ac0, %[t0], %[input2] \n\t"
241 [input2] "r" (input2)
255 "sra %[t16a], %[input2], 16 \n\t
    [all...]
  /device/google/dragon/audio/hal/dsp/
dsp_util.c 68 static void interleave_stereo(float *input1, float *input2,
83 "vld1.32 {d4-d5}, [%[input2]]! \n"
104 "=r"(input2),
109 [input2]"2"(input2),
124 f = *input2++;
192 static void interleave_stereo(float *input1, float *input2,
204 "lddqu (%[input2]), %%xmm2 \n"
209 "add $16, %[input2] \n"
222 "=r"(input2),
    [all...]
  /external/skia/tests/
GrGLSLPrettyPrintTest.cpp 19 const SkString input2("{nowin a function;{indenting;{abit more;dreadedfor((;;)(;)((;;);)){"
96 testStr.push_back(input2.c_str());
97 lengths.push_back((int)input2.size());
  /external/v8/test/webkit/fast/regex/
pcre-test-4.js 35 var input2 = "a\u0100b"; variable
37 shouldBe('regex0.exec(input2);', 'results');
50 var input2 = "a\u4000\u0100yb"; variable
52 shouldBe('regex1.exec(input2);', 'results');
118 var input2 = "a\u1234\u4321\u3412b"; variable
120 shouldBe('regex12.exec(input2);', 'results');
136 var input2 = "a\u1234\u4321\u3412b"; variable
138 shouldBe('regex13.exec(input2);', 'results');
157 var input2 = "a\u1234\u4321\u3412b"; variable
159 shouldBe('regex14.exec(input2);', 'results')
178 var input2 = "a\\u1234\\u4321\\u3412b"; variable
208 var input2 = "a\\u1234\\u4321\\u3412b"; variable
254 var input2 = "\\x00{ab}"; variable
400 var input2 = "1234"; variable
415 var input2 = "1234"; variable
435 var input2 = "1.4"; variable
447 var input2 = "1.4"; variable
468 var input2 = " "; variable
480 var input2 = " "; variable
497 var input2 = "ab> <cd"; variable
509 var input2 = "ab> <cd"; variable
530 var input2 = "a.b.c"; variable
542 var input2 = "a.b.c"; variable
563 var input2 = "a.b.c"; variable
575 var input2 = "a.b.c"; variable
586 var input2 = "\\u0100Z"; variable
597 var input2 = "\\u0100Z"; variable
616 var input2 = "ab\\u0111cd"; variable
627 var input2 = "ab\\u0111cd"; variable
644 var input2 = "Q?"; variable
655 var input2 = "ab\\u0111cd"; variable
669 var input2 = "ab\\u0111cd"; variable
689 var input2 = "ab\\u0200\\u0100\\u0200\\u0100cd"; variable
700 var input2 = "ab\\u0200\\u0100\\u0200\\u0100cd"; variable
711 var input2 = "ab\\u0200\\u0100\\u0200\\u0100cd"; variable
722 var input2 = "ab\\u0200\\u0100\\u0200\\u0100cd"; variable
733 var input2 = "\\u0500X"; variable
751 var input2 = "\\u0500X"; variable
773 var input2 = "\\u0100X"; variable
790 var input2 = "\\u0100"; variable
    [all...]
  /external/libchrome/crypto/
secure_hash_unittest.cc 46 std::string input2(10001, 'b'); // 'b' repeated 10001 times
60 ctx1->Update(input2.data(), input2.size());

Completed in 2062 milliseconds

1 2 3 4 5