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

1 2 3 4 5

  /external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
x86SP_FFT_CToC_FC32_Fwd_Radix2_fs.c 24 OMX_F32 *out1 = out0 + (n >> 1); local
30 // CSUB out1, in0, in1
31 out1[0] = in0[0] - in1[0];
32 out1[n] = in0[1] - in1[1];
x86SP_FFT_CToC_FC32_Inv_Radix2_fs.c 25 OMX_F32 *out1 = out0 + n_by_2; local
31 // CSUB out1, in0, in1
32 out1[0] = in0[0] - in1[0];
33 out1[n] = in0[n] - in1[n];
x86SP_FFT_CToC_FC32_Fwd_Radix4_fs.c 31 OMX_F32 *out1 = out0 + n_by_4; local
32 OMX_F32 *out2 = out1 + n_by_4;
48 // CADD t2, out1, out3
49 t2.Re = out1[0] + out3[0];
50 t2.Im = out1[n] + out3[n];
52 // CSUB t3, out1, out3
53 t3.Re = out1[0] - out3[0];
54 t3.Im = out1[n] - out3[n];
64 // CADD_SUB_X out1, t1, t3
65 out1[0] = t1.Re + t3.Im
    [all...]
x86SP_FFT_CToC_FC32_Fwd_Radix2_ls.c 27 OMX_F32 *out1 = out0 + (n >> 1); local
37 // CSUB out1, in0, t
38 out1[0] = in0[0] - t.Re;
39 out1[n] = in0[n] - t.Im;
x86SP_FFT_CToC_FC32_Inv_Radix2_ls.c 27 OMX_F32 *out1 = out0 + (n >> 1); local
37 // CSUB out1, in0, t
38 out1[0] = in0[0] - t.Re;
39 out1[n] = in0[n] - t.Im;
x86SP_FFT_CToC_FC32_Inv_Radix4_fs.c 27 OMX_F32 *out1 = out0 + n_by_4; local
28 OMX_F32 *out2 = out1 + n_by_4;
60 // CSUB_ADD_X out1, t1, t3
61 out1[0] = t1.Re - t3.Im;
62 out1[n] = t1.Im + t3.Re;
x86SP_FFT_CToC_FC32_Fwd_Radix2_ms.c 33 OMX_F32 *out1 = out0 + (n >> 1); local
43 // CSUB out1, in0, t
44 out1[0] = in0[0] - t.Re;
45 out1[n] = in0[n] - t.Im;
x86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse.c 39 OMX_F32 *out1 = out0 + n_by_4; local
40 OMX_F32 *out2 = out1 + n_by_4;
51 RADIX4_FWD_BUTTERFLY_STORE(out0, out1, out2, out3,
x86SP_FFT_CToC_FC32_Inv_Radix2_ms.c 33 OMX_F32 *out1 = out0 + (n >> 1); local
43 // CSUB out1, in0, t
44 out1[0] = in0[0] - t.Re;
45 out1[n] = in0[n] - t.Im;
x86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse.c 38 OMX_F32 *out1 = out0 + n_by_4; local
39 OMX_F32 *out2 = out1 + n_by_4;
50 RADIX4_INV_BUTTERFLY_STORE(out0, out1, out2, out3,
x86SP_FFT_CToC_FC32_Fwd_Radix4_ls.c 40 OMX_F32 *out1 = out0 + n_by_4; local
41 OMX_F32 *out2 = out1 + n_by_4;
80 // CADD_SUB_X out1, t1, t3
81 out1[0] = t1.Re + t3.Im;
82 out1[n] = t1.Im - t3.Re;
x86SP_FFT_CToC_FC32_Inv_Radix4_ls.c 40 OMX_F32 *out1 = out0 + n_by_4; local
41 OMX_F32 *out2 = out1 + n_by_4;
80 // CSUB_ADD_X out1, t1, t3
81 out1[0] = t1.Re - t3.Im;
82 out1[n] = t1.Im + t3.Re;
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.h 139 for(int out1 = 0; out1 < hashbits; out1++)
142 if(out1 == out2) continue;
144 uint32_t b = getbit(d,out1) | (getbit(d,out2) << 1);
146 bins[(out1 * hashbits + out2) * 4 + b]++;
154 for(int out1 = 0; out1 < hashbits; out1++)
158 if(out1 == out2
    [all...]
  /external/chromium_org/ipc/
ipc_sync_message_unittest.cc 27 void On_0_1(bool* out1) {
28 *out1 = false;
31 void On_0_2(bool* out1, int* out2) {
32 *out1 = true;
36 void On_0_3(bool* out1, int* out2, std::string* out3) {
37 *out1 = false;
42 void On_1_1(int in1, bool* out1) {
44 *out1 = true;
47 void On_1_2(bool in1, bool* out1, int* out2) {
49 *out1 = true
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
optionsfile_unittest.cc 76 std::string out1, out2; local
77 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1));
85 EXPECT_TRUE(store_->GetStringValue(kTestOptionA, &out1));
87 EXPECT_EQ(kTestString1, out1);
95 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1));
102 int out1, out2; local
103 EXPECT_FALSE(store_->GetIntValue(kTestOptionA, &out1));
111 EXPECT_TRUE(store_->GetIntValue(kTestOptionA, &out1));
113 EXPECT_EQ(kTestInt1, out1);
121 EXPECT_FALSE(store_->GetIntValue(kTestOptionA, &out1));
141 std::string out1; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
optionsfile_unittest.cc 59 std::string out1, out2; local
60 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1));
68 EXPECT_TRUE(store_->GetStringValue(kTestOptionA, &out1));
70 EXPECT_EQ(kTestString1, out1);
78 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1));
85 int out1, out2; local
86 EXPECT_FALSE(store_->GetIntValue(kTestOptionA, &out1));
94 EXPECT_TRUE(store_->GetIntValue(kTestOptionA, &out1));
96 EXPECT_EQ(kTestInt1, out1);
104 EXPECT_FALSE(store_->GetIntValue(kTestOptionA, &out1));
124 std::string out1; local
    [all...]
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
SeedTest.java 25 String out1 = mDevice.executeShellCommand(cmd1); local
27 assertOutputs(out1, out2);
35 private void assertOutputs(String out1, String out2) {
36 Scanner s1 = new Scanner(out1);
  /external/chromium_org/third_party/sqlite/src/tool/
split-sqlite3c.tcl 17 set out1 [open sqlite3-all.c w]
23 puts $out1 $line
53 puts $::out1 "#include \"sqlite3-$filecnt.c\""
75 puts $out1 $line
81 close $out1
  /libcore/luni/src/test/java/libcore/java/security/
SecureRandomTest.java 75 byte[] out1 = new byte[20];
78 sr.nextBytes(out1);
80 assertFalse(Arrays.equals(out1, out2));
87 sr.nextBytes(out1);
89 assertFalse(Arrays.equals(out1, out2));
92 sr.nextBytes(out1);
94 assertFalse(Arrays.equals(out1, out2));
  /external/chromium_org/google_apis/drive/
test_util.h 129 // void CopyResultCallback1(T1* out1, T1&& in1)
130 // void CopyResultCallback2(T1* out1, T2* out2, T1&& in1, T2&& in2)
181 // Copies the |in1|'s value to |out1|, and |in2|'s to |out2|.
184 T1* out1,
188 *out1 = CopyResultCallbackHelper<T1>::Move(&in1);
192 // Copies the |in1|'s value to |out1|, |in2|'s to |out2|, and |in3|'s to |out3|.
195 T1* out1,
201 *out1 = CopyResultCallbackHelper<T1>::Move(&in1);
210 OutputParams(T1* out1, T2* out2, T3* out3, T4* out4)
211 : out1(out1), out2(out2), out3(out3), out4(out4) {
212 T1* out1; member in struct:google_apis::test_util::internal::OutputParams
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter_re2.cc 63 string* out1,
67 return regex_function(input, regexp, out1, out2, out3);
70 return regex_function(input, regexp, out1, out2);
72 if (out1) {
73 return regex_function(input, regexp, out1);
  /external/valgrind/main/none/tests/mips32/
vfp.c 52 int out1; \
61 : "=&f" (out), "=&r" (out1), "=&r" (out2) \
66 instruction, out1, out2); \
72 int out1; \
81 : "=&f" (out), "=&r" (out1), "=&r" (out2) \
86 instruction, out1, out2); \
94 int out1; \
101 : "=&f" (out), "=&r" (out1) \
106 instruction, out1); \
130 int out1; \
    [all...]
  /cts/suite/audio_quality/test/
SignalProcessingInterfaceTest.cpp 72 android::sp<Buffer> out1(new Buffer(8, 8, false));
73 char* outdata1 = out1->getData();
74 for (size_t i = 0; i < out1->getSize(); i++) {
79 void *outputs[4] = { &out0, &out1, &out2, &out3 };
85 ASSERT_TRUE(*(in1.get()) == *(out1.get()));
180 android::sp<Buffer> out1(new Buffer(8, 8, false));
181 char* outdata1 = out1->getData();
182 for (size_t i = 0; i < out1->getSize(); i++) {
187 void *outputs[4] = { &out0, &out1, &out2, &out3 };
193 ASSERT_TRUE(*(in2.get()) == *(out1.get()))
    [all...]
  /external/chromium_org/cc/output/
begin_frame_args_unittest.cc 43 std::stringstream out1; local
44 out1 << args1;
45 EXPECT_EQ("BeginFrameArgs(0, 0, -1us)", out1.str());
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
token_test.cpp 80 std::stringstream out1; local
81 out1 << token;
82 EXPECT_TRUE(out1.good());
83 EXPECT_EQ("foo", out1.str());

Completed in 305 milliseconds

1 2 3 4 5