Home
last modified time | relevance | path

Searched refs:ps2 (Results 1 – 25 of 53) sorted by relevance

123

/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DRC5ParameterSpecTest.java222 RC5ParameterSpec ps2 = new RC5ParameterSpec(version, rounds, in testEquals() local
231 ps1.equals(ps2)); in testEquals()
234 ps2.equals(ps1)); in testEquals()
237 ps2.equals(ps3)); in testEquals()
246 ps2 = new RC5ParameterSpec(version+1, rounds, wordSize, iv); in testEquals()
247 assertFalse("Objects should not be equal.", ps1.equals(ps2)); in testEquals()
249 ps2 = new RC5ParameterSpec(version, rounds+1, wordSize, iv); in testEquals()
250 assertFalse("Objects should not be equal.", ps1.equals(ps2)); in testEquals()
252 ps2 = new RC5ParameterSpec(version, rounds, wordSize/2, iv); in testEquals()
253 assertFalse("Objects should not be equal.", ps1.equals(ps2)); in testEquals()
[all …]
DRC2ParameterSpecTest.java150 RC2ParameterSpec ps2 = new RC2ParameterSpec(effectiveKeyBits, iv); in testEquals() local
159 ps1.equals(ps2)); in testEquals()
162 ps2.equals(ps1)); in testEquals()
165 ps2.equals(ps3)); in testEquals()
174 ps2 = new RC2ParameterSpec(11, iv); in testEquals()
175 assertFalse("Objects should not be equal.", ps1.equals(ps2)); in testEquals()
177 ps2 = new RC2ParameterSpec(11, new byte[] {9, 8, 7, 6, 5, 4, 3, 2, 1}); in testEquals()
178 assertFalse("Objects should not be equal.", ps1.equals(ps2)); in testEquals()
190 RC2ParameterSpec ps2 = new RC2ParameterSpec(effectiveKeyBits, iv); in testHashCode() local
193 ps1.hashCode() == ps2.hashCode()); in testHashCode()
/external/clang/test/SemaCXX/
Dwarn-memset-bad-sizeof.cpp30 PS ps2 = &s; in f() local
41 memset(ps2, 0, sizeof(ps2)); // \ in f()
43 memset(ps2, 0, sizeof(typeof(ps2))); // \ in f()
45 memset(ps2, 0, sizeof(PS)); // \ in f()
71 memset(ps2, 0, sizeof(*ps2)); in f()
72 memset(ps2, 0, sizeof(typeof(*ps2))); in f()
/external/chromium/chrome/browser/
Dprocess_singleton_mac_unittest.cc92 ProcessSingleton ps2(temp_dir_.path()); in TEST_F() local
104 EXPECT_FALSE(ps2.Create()); in TEST_F()
109 EXPECT_TRUE(ps2.Create()); in TEST_F()
112 ps2.Cleanup(); in TEST_F()
119 ProcessSingleton ps2(temp_dir_.path()); in TEST_F() local
131 EXPECT_EQ(ProcessSingleton::PROFILE_IN_USE, ps2.NotifyOtherProcessOrCreate()); in TEST_F()
136 EXPECT_EQ(ProcessSingleton::PROCESS_NONE, ps2.NotifyOtherProcessOrCreate()); in TEST_F()
139 ps2.Cleanup(); in TEST_F()
/external/wpa_supplicant_8/src/utils/
Dedit_simple.c19 static const char *ps2 = NULL; variable
45 printf("%s> ", ps2 ? ps2 : ""); in edit_read_char()
67 ps2 = ps; in edit_init()
69 printf("%s> ", ps2 ? ps2 : ""); in edit_init()
Dedit_readline.c132 char *ps2 = os_malloc(blen); in edit_init() local
133 if (ps2) { in edit_init()
134 os_snprintf(ps2, blen, "%s> ", ps); in edit_init()
135 rl_callback_handler_install(ps2, readline_cmd_handler); in edit_init()
136 os_free(ps2); in edit_init()
Dedit.c23 static const char *ps2 = NULL; variable
51 for (i = 0; i < cmdbuf_len + 2 + (ps2 ? (int) os_strlen(ps2) : 0); i++) in edit_clear_line()
350 printf("\n%s> ", ps2 ? ps2 : ""); in process_cmd()
360 printf("%s> ", ps2 ? ps2 : ""); in process_cmd()
1136 ps2 = ps; in edit_init()
1137 printf("%s> ", ps2 ? ps2 : ""); in edit_init()
1166 printf("\r%s> %s", ps2 ? ps2 : "", cmdbuf); in edit_redraw()
1170 printf("\r%s> %s", ps2 ? ps2 : "", cmdbuf); in edit_redraw()
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
DgUnitBaseTest.java82 PrintStream ps2 = null; // for redirecting stderr later in execLexer() local
98 ps2 = new PrintStream(err); in execLexer()
100 System.setErr(ps2); in execLexer()
108 ps2.println("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'"); in execLexer()
143 if ( ps2!=null ) ps2.close(); in execLexer()
174 PrintStream ps2 = null; // for redirecting stderr later in execParser() local
207 ps2 = new PrintStream(err); in execParser()
209 System.setErr(ps2); in execParser()
291 if ( ps2!=null ) ps2.close(); in execParser()
321 PrintStream ps2 = null; // for redirecting stderr later in execTreeParser() local
[all …]
DgUnitExecutor.java234 PrintStream ps2 = null; // for redirecting stderr later in runLexer() local
252 ps2 = new PrintStream(err); in runLexer()
254 System.setErr(ps2); in runLexer()
262 ps2.print("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'"); in runLexer()
294 if ( ps2!=null ) ps2.close(); in runLexer()
311 PrintStream ps2 = null; // for redirecting stderr later in runParser() local
345 ps2 = new PrintStream(err); in runParser()
347 System.setErr(ps2); in runParser()
382 ps2.print("Invalid input"); in runParser()
426 if ( ps2!=null ) ps2.close(); in runParser()
[all …]
/external/valgrind/main/memcheck/tests/
Dpartiallydefinedeq.c31 short* ps2 = (short*)junk2; in main() local
44 *ps2 = 42; in main()
51 *ps2 = 42; in main()
/external/fdlibm/
De_j1.c307 static const double ps2[5] = { variable
309 static double ps2[5] = {
336 else if(ix>=0x40000000){p = pr2; q= ps2;}
/external/clang/test/CodeGenCXX/
Dsel-address.mm13 SEL* ps2 = &@selector(dealloc);
/external/libvpx/libvpx/vp8/common/
Dloopfilter_filters.c166 signed char ps2 = (signed char) * op2 ^ 0x80; in vp8_mbfilter() local
212 s = vp8_signed_char_clamp(ps2 + u); in vp8_mbfilter()
/external/icu4c/common/
Ducnv_ext.cpp1014 const uint16_t *stage12, *stage3, *ps2, *ps3; in ucnv_extGetUnicodeSet() local
1059 ps2=stage12+st2; in ucnv_extGetUnicodeSet()
1061 if((st3=(int32_t)ps2[st2]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)!=0) { in ucnv_extGetUnicodeSet()
/external/kernel-headers/original/asm-mips/ip32/
Dmace.h295 struct mace_ps2 ps2; member
/external/libusb-compat/
Dconfig.sub717 mipsEE* | ee | ps2)
926 ps2)
/external/libusb/
Dconfig.sub717 mipsEE* | ee | ps2)
926 ps2)
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Drhino-python.input155 self.startUserInput(str(sys.ps2)+'\t')
/external/libvpx/libvpx/vp8/common/arm/neon/
Dmbloopfilter_neon.asm371 veor q4, q4, q0 ; ps2
451 vqadd.s8 q0, q4, q0 ; s = clamp(ps2 + u)
/external/jpeg/
Dconfig.sub507 ps2)
/external/qemu/distrib/jpeg-6b/
Dconfig.sub507 ps2)
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Dloopfilter_filters_dspr2.c1351 uint32_t *ps2, in vp8_mbfilter_mips() argument
1375 vps2 = (*ps2) ^ N128; in vp8_mbfilter_mips()
1625 *ps2 = vps2_r ^ N128; in vp8_mbfilter_mips()
/external/webkit/Source/WebCore/dom/
DNode.cpp341 RenderStyle* ps2 = s2->getCachedPseudoStyle(pseudoId); in diff() local
342 if (!ps2) in diff()
346 ch = ps1 && *ps1 == *ps2 ? NoChange : NoInherit; in diff()
/external/qemu-pc-bios/bochs/
Dconfig.sub777 ps2)
/external/srtp/
Dconfig.sub839 ps2)

123