HomeSort by relevance Sort by last modified time
    Searched full:input2 (Results 26 - 50 of 119) sorted by null

12 3 4 5

  /ndk/tests/device/test-stlport/unit/
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/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/chromium_org/tools/gn/
ninja_binary_target_writer_unittest.cc 19 target.sources().push_back(SourceFile("//foo/input2.cc"));
44 "build obj/foo/bar.input2.obj: cxx ../../foo/input2.cc\n"
47 "obj/foo/bar.input2.obj ../../foo/input3.o ../../foo/input4.obj\n";
86 "obj/foo/bar.input2.obj\n"
145 target.sources().push_back(SourceFile("//foo/input2.cc"));
164 "build obj/foo/shlib.input2.o: cxx ../../foo/input2.cc\n"
169 "obj/foo/shlib.input2.o\n"
192 target.sources().push_back(SourceFile("//foo/input2.cc"))
    [all...]
ninja_action_target_writer_unittest.cc 149 target.sources().push_back(SourceFile("//foo/input2.txt"));
191 "build input2.out: __foo_bar___rule ../../foo/input2.txt | "
193 " source = ../../foo/input2.txt\n"
194 " source_name_part = input2\n"
197 "stamp input1.out input2.out obj/foo/datadep.stamp\n";
237 "build input2.out: __foo_bar___rule ../../foo/input2.txt | "
240 " source = ../../foo/input2.txt\n"
241 " source_name_part = input2\n
    [all...]
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));
  /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;
RunCSVTests.java 82 double input2, String extra) throws Exception {
88 returnValue = m.invoke(null, input1, (int) input2);
91 returnValue = m.invoke(null, input1, input2);
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
input_test.cpp 90 pp::Input input2(count, str, NULL);
91 EXPECT_EQ(2u, input2.read(buf, maxSize));
93 EXPECT_EQ(1u, input2.read(buf, maxSize));
95 EXPECT_EQ(0u, input2.read(buf, maxSize));
127 pp::Input input2(count, str, NULL);
128 EXPECT_EQ(2u, input2.read(buf, maxSize));
130 EXPECT_EQ(1u, input2.read(buf, maxSize));
132 EXPECT_EQ(0u, input2.read(buf, maxSize));
  /external/chromium_org/third_party/jstemplate/tutorial_examples/
12-parent.html 31 var input2 = new JsEvalContext( tpl2Data, parent);
33 jstProcess(input2, output2);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lattice_neon.S 17 @ int32_t input2,
22 @ *ptr2 = input2 * (*ptr2) + input0 * (*ptr0));
42 vdup.32 d30, r2 @ Initialize Neon register with input2
72 vmull.s32 q10, d6, d30 @ input2 * (*ptr2 + tmp32b)
73 vmull.s32 q11, d7, d30 @ input2 * (*ptr2 + tmp32b)
107 vmull.s32 q11, d7, d30 @ input2 * (*ptr2 + tmp32b)
124 @ *ptr2 = input2 * (*ptr2 + input0 * (*ptr0));
131 smull r5, r6, r8, r2 @ tmp32b * input2, in 64 bits
codec.h 162 int32_t input2,
176 int32_t input2,
191 int32_t input2,
208 int32_t input2,
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], 16 \n\t
    [all...]
lattice.c 50 *ptr2 = input2 * (*ptr2) + input0 * (*ptr0));
57 int32_t input2, // Inverse coeff. (1/input1)
63 // Separate the 32-bit variable input2 into two 16-bit integers (high 16 and
65 int16_t t16a = (int16_t)(input2 >> 16);
66 int16_t t16b = (int16_t)input2;
70 // input0, input1, and input2.
75 // Calculate *ptr2 = input2 * (*ptr2 + input0 * (*ptr0));
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
lattice_neon.S 17 @ int32_t input2,
22 @ *ptr2 = input2 * (*ptr2) + input0 * (*ptr0));
49 vdup.32 d30, r2 @ Initialize Neon register with input2
79 vmull.s32 q10, d6, d30 @ input2 * (*ptr2 + tmp32b)
80 vmull.s32 q11, d7, d30 @ input2 * (*ptr2 + tmp32b)
114 vmull.s32 q11, d7, d30 @ input2 * (*ptr2 + tmp32b)
131 @ *ptr2 = input2 * (*ptr2 + input0 * (*ptr0));
138 smull r5, r6, r8, r2 @ tmp32b * input2, in 64 bits
codec.h 142 int32_t input2,
156 int32_t input2,
173 int32_t input2,
lattice.c 50 *ptr2 = input2 * (*ptr2) + input0 * (*ptr0));
57 int32_t input2, // Inverse coeff. (1/input1)
63 // Separate the 32-bit variable input2 into two 16-bit integers (high 16 and
65 int16_t t16a = (int16_t)(input2 >> 16);
66 int16_t t16b = (int16_t)input2;
70 // input0, input1, and input2.
75 // Calculate *ptr2 = input2 * (*ptr2 + input0 * (*ptr0));
  /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/chromium_org/crypto/
secure_hash_unittest.cc 42 std::string input2(10001, 'b'); // 'b' repeated 10001 times
56 ctx1->Update(input2.data(), input2.size());
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEBlendElement.cpp 125 FilterEffect* input2 = filterBuilder->getEffectById(AtomicString(m_in2->currentValue()->value())); local
127 if (!input1 || !input2)
134 inputEffects.append(input2);
  /external/icu/icu4c/source/test/intltest/
listformattertest.cpp 48 UnicodeString input2[] = {one, two}; local
49 CheckFormatting(formatter.getAlias(), input2, 2, results[1]);
68 UnicodeString input2[] = {one, two}; local
69 formatter->format(input2, 2, results[1], errorCode);
207 UnicodeString input2[] = {one, two}; local
208 CheckFormatting(&formatter, input2, 2, results[1]);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 830 * [in] input2 Operand 2
838 OMX_S32 armSatMulS16S32_S32(OMX_S16 input1,OMX_S32 input2)
848 hi2 = ( input2 >> 16 );
849 lo2 = ( (OMX_U32)( input2 << 16 ) >> 16 );
868 * [in] input2 Operand 2
875 OMX_S32 armSatMulS32S32_S32(OMX_S32 input1,OMX_S32 input2)
886 hi2 = ( input2 >> 16 );
887 lo2 = ( (OMX_U32)( input2 << 16 ) >> 16 );
912 * [out] Result of operation input1//input2
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 830 * [in] input2 Operand 2
838 OMX_S32 armSatMulS16S32_S32(OMX_S16 input1,OMX_S32 input2)
848 hi2 = ( input2 >> 16 );
849 lo2 = ( (OMX_U32)( input2 << 16 ) >> 16 );
868 * [in] input2 Operand 2
875 OMX_S32 armSatMulS32S32_S32(OMX_S32 input1,OMX_S32 input2)
886 hi2 = ( input2 >> 16 );
887 lo2 = ( (OMX_U32)( input2 << 16 ) >> 16 );
912 * [out] Result of operation input1//input2
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 830 * [in] input2 Operand 2
838 OMX_S32 armSatMulS16S32_S32(OMX_S16 input1,OMX_S32 input2)
848 hi2 = ( input2 >> 16 );
849 lo2 = ( (OMX_U32)( input2 << 16 ) >> 16 );
868 * [in] input2 Operand 2
875 OMX_S32 armSatMulS32S32_S32(OMX_S32 input1,OMX_S32 input2)
886 hi2 = ( input2 >> 16 );
887 lo2 = ( (OMX_U32)( input2 << 16 ) >> 16 );
912 * [out] Result of operation input1//input2
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
WrappedGTestResultParserTest.java 56 private final String[] INPUT2 = new String[] {
103 assertArrayEquals(EXPECTED_OUTPUT2, mParser.parseInstrumentation(INPUT2));

Completed in 837 milliseconds

12 3 4 5