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

1 2 3 4

  /external/dropbear/libtomcrypt/testprof/
dsa_test.c 7 unsigned char msg[16], out[1024], out2[1024]; local
25 y = sizeof(out2);
26 DO(dsa_decrypt_key(out, x, out2, &y, &key));
28 if (y != 16 || memcmp(out2, msg, 16)) {
47 x = sizeof(out2);
48 DO(dsa_export(out2, &x, PK_PRIVATE, &key));
49 DO(dsa_import(out2, x, &key2));
57 x = sizeof(out2);
58 DO(dsa_export(out2, &x, PK_PUBLIC, &key));
60 DO(dsa_import(out2, x, &key2))
    [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:
procattr.c 54 goto out2;
58 goto out2;
64 goto out2;
67 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/libjingle/source/talk/base/
optionsfile_unittest.cc 63 std::string out1, out2; local
65 EXPECT_FALSE(store.GetStringValue(kTestOptionB, &out2));
73 EXPECT_TRUE(store.GetStringValue(kTestOptionB, &out2));
75 EXPECT_EQ(kTestString2, out2);
83 EXPECT_FALSE(store.GetStringValue(kTestOptionB, &out2));
90 int out1, out2; local
92 EXPECT_FALSE(store.GetIntValue(kTestOptionB, &out2));
100 EXPECT_TRUE(store.GetIntValue(kTestOptionB, &out2));
102 EXPECT_EQ(kTestInt2, out2);
110 EXPECT_FALSE(store.GetIntValue(kTestOptionB, &out2));
133 int out2; local
    [all...]
  /system/core/sh/
output.h 54 extern struct output *out2;
78 #define out2c(c) outc(c, out2);
output.c 82 struct output *out2 = &errout; variable in typeref:struct:output
93 out2 = &errout;
129 outstr(p, out2);
138 if (file == out2)
237 doformat(out2, fmt, ap);
239 flushout(out2);
  /external/chromium_org/chrome/browser/google_apis/
test_util.h 138 // void CopyResultCallback2(T1* out1, T2* out2, T1&& in1, T2&& in2)
189 // Copies the |in1|'s value to |out1|, and |in2|'s to |out2|.
193 T2* out2,
197 *out2 = CopyResultCallbackHelper<T2>::Move(&in2);
200 // Copies the |in1|'s value to |out1|, |in2|'s to |out2|, and |in3|'s to |out3|.
204 T2* out2,
210 *out2 = CopyResultCallbackHelper<T2>::Move(&in2);
218 OutputParams(T1* out1, T2* out2, T3* out3, T4* out4)
219 : out1(out1), out2(out2), out3(out3), out4(out4) {
221 T2* out2; member in struct:google_apis::test_util::internal::OutputParams
    [all...]
  /external/chromium_org/third_party/angle_dx11/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);
  /cts/suite/audio_quality/test/
SignalProcessingInterfaceTest.cpp 77 TaskCase::Value out2(-1.0f);
79 void *outputs[4] = { &out0, &out1, &out2, &out3 };
86 ASSERT_TRUE(in2 == out2);
185 TaskCase::Value out2((int64_t)1000);
187 void *outputs[4] = { &out0, &out1, &out2, &out3 };
194 ASSERT_TRUE(in4 == out2);
  /external/chromium_org/third_party/sqlite/src/
mkopcodeh.awk 28 # case OP_aaaa: /* jump, in1, in2, in3, out2-prerelease, out3 */
52 out2[name] = 0
66 }else if(x=="out2-prerelease"){
74 }else if(x=="out2"){
75 out2[name] = 1
137 if( out2[name] ) a5 = 32;
143 print "/* Properties such as \"out2\" or \"jump\" that are specified in"
148 print "#define OPFLG_OUT2_PRERELEASE 0x0002 /* out2-prerelease: */"
152 print "#define OPFLG_OUT2 0x0020 /* out2: P2 is an output */"
  /external/chromium_org/sdch/open-vcdiff/src/
jsonwriter_test.cc 127 string out2; local
128 OutputString<string> output_string2(&out2);
135 EXPECT_EQ("[\"def\",]", out2);
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnrapi.cpp 80 UnicodeString out, out2; local
87 iter.getText(out2);
88 if( out!=out2 ||
  /external/icu4c/test/intltest/
tstnrapi.cpp 80 UnicodeString out, out2; local
87 iter.getText(out2);
88 if( out!=out2 ||
  /external/libvpx/libvpx/test/
idct8x8_test.cc 87 double out[64], out2[64]; local
104 out2[j*8 + i] = temp_out[j];
107 output[i] = round(out2[i]/32);
  /external/open-vcdiff/src/
jsonwriter_test.cc 127 string out2; local
128 OutputString<string> output_string2(&out2);
135 EXPECT_EQ("[\"def\",]", out2);
  /frameworks/av/media/libstagefright/rtsp/
rtp_test.cpp 60 AString out1, out2;
62 encodeBase64(kPPS, sizeof(kPPS), &out2);
63 printf("params=%s,%s\n", out1.c_str(), out2.c_str());
  /system/core/sh/bltin/
bltin.h 54 #define stderr out2

Completed in 818 milliseconds

1 2 3 4