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

  /external/stlport/test/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));
equal_test.cpp 165 int input2 [4] = { 1, 6, 2, 3 }; local
168 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, equal_to<int>());
  /external/sqlite/android/
PhoneNumberUtilsTest.cpp 32 #define EXPECT(function, input1, input2, expected, total, error) \
35 const char *i2_cache = input2; \
49 #define EXPECT_EQ(input1, input2) \
50 EXPECT(phone_number_compare_strict, (input1), (input2), true, \
54 #define EXPECT_NE(input1, input2) \
55 EXPECT(phone_number_compare_strict, (input1), (input2), false, \
  /external/webkit/WebCore/svg/
SVGFEBlendElement.cpp 85 FilterEffect* input2 = filterResource->builder()->getEffectById(in2()); local
87 if (!input1 || !input2)
90 RefPtr<FilterEffect> effect = FEBlend::create(input1, input2, static_cast<BlendModeType>(mode()));
SVGFEDisplacementMapElement.cpp 100 FilterEffect* input2 = filterResource->builder()->getEffectById(in2()); local
102 if (!input1 || !input2)
106 RefPtr<FilterEffect> effect = FEDisplacementMap::create(input1, input2, static_cast<ChannelSelectorType>(xChannelSelector()),
SVGFECompositeElement.cpp 108 FilterEffect* input2 = filterResource->builder()->getEffectById(in2()); local
110 if (!input1 || !input2)
113 RefPtr<FilterEffect> effect = FEComposite::create(input1, input2, static_cast<CompositeOperationType>(_operator()),
  /packages/apps/Email/src/org/apache/commons/io/
IOUtils.java     [all...]
FileUtils.java 442 InputStream input2 = null; local
445 input2 = new FileInputStream(file2);
446 return IOUtils.contentEquals(input1, input2);
450 IOUtils.closeQuietly(input2);
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLLogWrapper.java 934 ByteBuffer input2 = (ByteBuffer) input; local
935 int position = input2.position();
937 byteCount = input2.limit() - position;
939 result = ByteBuffer.allocate(byteCount).order(input2.order());
941 result.put(input2.get());
943 input2.position(position);
945 CharBuffer input2 = (CharBuffer) input; local
946 int position = input2.position();
948 byteCount = (input2.limit() - position) * 2;
950 result = ByteBuffer.allocate(byteCount).order(input2.order())
957 ShortBuffer input2 = (ShortBuffer) input; local
969 IntBuffer input2 = (IntBuffer) input; local
981 FloatBuffer input2 = (FloatBuffer) input; local
993 DoubleBuffer input2 = (DoubleBuffer) input; local
1005 LongBuffer input2 = (LongBuffer) input; local
    [all...]
  /external/webkit/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 923 "<input type='text' id='input2'/>" \
931 QWebElement input2 = inputs.at(1); local
932 input2.setFocus();
934 QVERIFY(input2.hasFocus());

Completed in 330 milliseconds