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

1 2 3 4 5

  /external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
x86SP_FFT_CToC_FC32_Fwd_Radix4_fs.c 32 OMX_F32 *out2 = out1 + n_by_4; local
33 OMX_F32 *out3 = out2 + n_by_4;
40 // CADD t0, out0, out2
41 t0.Re = out0[0] + out2[0];
42 t0.Im = out0[n] + out2[n];
44 // CSUB t1, out0, out2
45 t1.Re = out0[0] - out2[0];
46 t1.Im = out0[n] - out2[n];
60 // CSUB out2, t0, t2
61 out2[0] = t0.Re - t2.Re
    [all...]
x86SP_FFT_CToC_FC32_Inv_Radix4_fs.c 28 OMX_F32 *out2 = out1 + n_by_4; local
29 OMX_F32 *out3 = out2 + n_by_4;
56 // CSUB out2, t0, t2
57 out2[0] = t0.Re - t2.Re;
58 out2[n] = t0.Im - t2.Im;
x86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse.c 40 OMX_F32 *out2 = out1 + n_by_4; local
41 OMX_F32 *out3 = out2 + n_by_4;
51 RADIX4_FWD_BUTTERFLY_STORE(out0, out1, out2, out3,
x86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse.c 39 OMX_F32 *out2 = out1 + n_by_4; local
40 OMX_F32 *out3 = out2 + n_by_4;
50 RADIX4_INV_BUTTERFLY_STORE(out0, out1, out2, out3,
x86SP_FFT_CToC_FC32_Fwd_Radix4_ls.c 41 OMX_F32 *out2 = out1 + n_by_4; local
42 OMX_F32 *out3 = out2 + n_by_4;
76 // CSUB out2, t0, t2
77 out2[0] = t0.Re - t2.Re;
78 out2[n] = t0.Im - t2.Im;
x86SP_FFT_CToC_FC32_Inv_Radix4_ls.c 41 OMX_F32 *out2 = out1 + n_by_4; local
42 OMX_F32 *out3 = out2 + n_by_4;
76 // CSUB out2, t0, t2
77 out2[0] = t0.Re - t2.Re;
78 out2[n] = t0.Im - t2.Im;
x86SP_FFT_CToC_FC32_Fwd_Radix4_ms.c 41 OMX_F32 *out2 = out1 + n_by_4; local
42 OMX_F32 *out3 = out2 + n_by_4;
64 // CSUB out2, t0, t2
65 out2[0] = t0.Re - t2.Re;
66 out2[n] = t0.Im - t2.Im;
99 OMX_F32 *out2 = out1 + n_by_4; local
100 OMX_F32 *out3 = out2 + n_by_4;
134 // CSUB out2, t0, t2
135 out2[0] = t0.Re - t2.Re;
136 out2[n] = t0.Im - t2.Im
    [all...]
x86SP_FFT_CToC_FC32_Inv_Radix4_ms.c 41 OMX_F32 *out2 = out1 + n_by_4; local
42 OMX_F32 *out3 = out2 + n_by_4;
64 // CSUB out2, t0, t2
65 out2[0] = t0.Re - t2.Re;
66 out2[n] = t0.Im - t2.Im;
99 OMX_F32 *out2 = out1 + n_by_4; local
100 OMX_F32 *out3 = out2 + n_by_4;
134 // CSUB out2, t0, t2
135 out2[0] = t0.Re - t2.Re;
136 out2[n] = t0.Im - t2.Im
    [all...]
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.h 140 for(int out2 = 0; out2 < hashbits; out2++)
142 if(out1 == out2) continue;
144 uint32_t b = getbit(d,out1) | (getbit(d,out2) << 1);
146 bins[(out1 * hashbits + out2) * 4 + b]++;
156 for(int out2 = 0; out2 < hashbits; out2++)
158 if(out1 == out2)
    [all...]
  /external/libselinux/src/
get_initial_context.c 41 goto out2;
46 goto out2;
49 out2:
compute_av.c 46 goto out2;
51 goto out2;
59 goto out2;
66 out2:
compute_create.c 43 goto out2;
48 goto out2;
53 goto out2;
56 out2:
canonicalize_context.c 40 goto out2;
53 goto out2;
56 out2:
  /external/qemu/distrib/libselinux/src/
get_initial_context.c 41 goto out2;
46 goto out2;
49 out2:
compute_av.c 46 goto out2;
51 goto out2;
59 goto out2;
66 out2:
compute_create.c 43 goto out2;
48 goto out2;
53 goto out2;
56 out2:
canonicalize_context.c 40 goto out2;
53 goto out2;
56 out2:
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
SeedTest.java 26 String out2 = mDevice.executeShellCommand(cmd1); local
27 assertOutputs(out1, out2);
35 private void assertOutputs(String out1, String out2) {
37 Scanner s2 = new Scanner(out2);
  /libcore/luni/src/test/java/libcore/java/security/
SecureRandomTest.java 76 byte[] out2 = new byte[20];
79 sr.nextBytes(out2);
80 assertFalse(Arrays.equals(out1, out2));
88 sr.nextBytes(out2);
89 assertFalse(Arrays.equals(out1, out2));
93 sr.nextBytes(out2);
94 assertFalse(Arrays.equals(out1, out2));
  /external/chromium_org/ipc/
ipc_sync_message_unittest.cc 31 void On_0_2(bool* out1, int* out2) {
33 *out2 = 2;
36 void On_0_3(bool* out1, int* out2, std::string* out3) {
38 *out2 = 3;
47 void On_1_2(bool in1, bool* out1, int* out2) {
50 *out2 = 12;
53 void On_1_3(int in1, std::string* out1, int* out2, bool* out3) {
56 *out2 = 13;
66 void On_2_2(bool in1, int in2, bool* out1, int* out2) {
70 *out2 = 22
    [all...]
  /external/chromium_org/third_party/webrtc/base/
optionsfile_unittest.cc 59 std::string out1, out2; local
61 EXPECT_FALSE(store_->GetStringValue(kTestOptionB, &out2));
69 EXPECT_TRUE(store_->GetStringValue(kTestOptionB, &out2));
71 EXPECT_EQ(kTestString2, out2);
79 EXPECT_FALSE(store_->GetStringValue(kTestOptionB, &out2));
85 int out1, out2; local
87 EXPECT_FALSE(store_->GetIntValue(kTestOptionB, &out2));
95 EXPECT_TRUE(store_->GetIntValue(kTestOptionB, &out2));
97 EXPECT_EQ(kTestInt2, out2);
105 EXPECT_FALSE(store_->GetIntValue(kTestOptionB, &out2));
125 int out2; local
    [all...]
  /external/chromium_org/google_apis/drive/
test_util.h 130 // void CopyResultCallback2(T1* out1, T2* out2, T1&& in1, T2&& in2)
181 // Copies the |in1|'s value to |out1|, and |in2|'s to |out2|.
185 T2* out2,
189 *out2 = CopyResultCallbackHelper<T2>::Move(&in2);
192 // Copies the |in1|'s value to |out1|, |in2|'s to |out2|, and |in3|'s to |out3|.
196 T2* out2,
202 *out2 = CopyResultCallbackHelper<T2>::Move(&in2);
210 OutputParams(T1* out1, T2* out2, T3* out3, T4* out4)
211 : out1(out1), out2(out2), out3(out3), out4(out4) {
213 T2* out2; member in struct:google_apis::test_util::internal::OutputParams
    [all...]
  /external/chromium_org/cc/output/
begin_frame_args_unittest.cc 46 std::stringstream out2; local
47 out2 << args2;
48 EXPECT_EQ("BeginFrameArgs(1, 2, 3us)", out2.str());
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
token_test.cpp 86 std::stringstream out2; local
87 out2 << token;
88 EXPECT_TRUE(out2.good());
89 EXPECT_EQ(" foo", out2.str());
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter_re2.cc 64 string* out2,
67 return regex_function(input, regexp, out1, out2, out3);
69 if (out2) {
70 return regex_function(input, regexp, out1, out2);

Completed in 900 milliseconds

1 2 3 4 5