Searched refs:ps2 (Results 1 - 25 of 60) sorted by relevance

123

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dedit_simple.c19 static const char *ps2 = NULL; variable
45 printf("%s> ", ps2 ? ps2 : "");
67 ps2 = ps;
69 printf("%s> ", ps2 ? ps2 : "");
H A Dedit_readline.c132 char *ps2 = os_malloc(blen); local
133 if (ps2) {
134 os_snprintf(ps2, blen, "%s> ", ps);
135 rl_callback_handler_install(ps2, readline_cmd_handler);
136 os_free(ps2);
H A Dedit.c23 static const char *ps2 = NULL; variable
51 for (i = 0; i < cmdbuf_len + 2 + (ps2 ? (int) os_strlen(ps2) : 0); i++)
350 printf("\n%s> ", ps2 ? ps2 : "");
360 printf("%s> ", ps2 ? ps2 : "");
1136 ps2 = ps;
1137 printf("%s> ", ps2 ? ps2
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dedit_simple.c19 static const char *ps2 = NULL; variable
45 printf("%s> ", ps2 ? ps2 : "");
67 ps2 = ps;
69 printf("%s> ", ps2 ? ps2 : "");
H A Dedit_readline.c132 char *ps2 = os_malloc(blen); local
133 if (ps2) {
134 os_snprintf(ps2, blen, "%s> ", ps);
135 rl_callback_handler_install(ps2, readline_cmd_handler);
136 os_free(ps2);
H A Dedit.c23 static const char *ps2 = NULL; variable
51 for (i = 0; i < cmdbuf_len + 2 + (ps2 ? (int) os_strlen(ps2) : 0); i++)
350 printf("\n%s> ", ps2 ? ps2 : "");
360 printf("%s> ", ps2 ? ps2 : "");
1136 ps2 = ps;
1137 printf("%s> ", ps2 ? ps2
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dedit_simple.c19 static const char *ps2 = NULL; variable
45 printf("%s> ", ps2 ? ps2 : "");
67 ps2 = ps;
69 printf("%s> ", ps2 ? ps2 : "");
H A Dedit_readline.c132 char *ps2 = os_malloc(blen); local
133 if (ps2) {
134 os_snprintf(ps2, blen, "%s> ", ps);
135 rl_callback_handler_install(ps2, readline_cmd_handler);
136 os_free(ps2);
H A Dedit.c23 static const char *ps2 = NULL; variable
51 for (i = 0; i < cmdbuf_len + 2 + (ps2 ? (int) os_strlen(ps2) : 0); i++)
350 printf("\n%s> ", ps2 ? ps2 : "");
360 printf("%s> ", ps2 ? ps2 : "");
1136 ps2 = ps;
1137 printf("%s> ", ps2 ? ps2
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DRC2ParameterSpecTest.java150 RC2ParameterSpec ps2 = new RC2ParameterSpec(effectiveKeyBits, iv);
159 ps1.equals(ps2));
162 ps2.equals(ps1));
165 ps2.equals(ps3));
174 ps2 = new RC2ParameterSpec(11, iv);
175 assertFalse("Objects should not be equal.", ps1.equals(ps2));
177 ps2 = new RC2ParameterSpec(11, new byte[] {9, 8, 7, 6, 5, 4, 3, 2, 1});
178 assertFalse("Objects should not be equal.", ps1.equals(ps2));
190 RC2ParameterSpec ps2 = new RC2ParameterSpec(effectiveKeyBits, iv);
193 ps1.hashCode() == ps2
[all...]
H A DRC5ParameterSpecTest.java222 RC5ParameterSpec ps2 = new RC5ParameterSpec(version, rounds,
231 ps1.equals(ps2));
234 ps2.equals(ps1));
237 ps2.equals(ps3));
246 ps2 = new RC5ParameterSpec(version+1, rounds, wordSize, iv);
247 assertFalse("Objects should not be equal.", ps1.equals(ps2));
249 ps2 = new RC5ParameterSpec(version, rounds+1, wordSize, iv);
250 assertFalse("Objects should not be equal.", ps1.equals(ps2));
252 ps2 = new RC5ParameterSpec(version, rounds, wordSize/2, iv);
253 assertFalse("Objects should not be equal.", ps1.equals(ps2));
[all...]
/external/valgrind/main/memcheck/tests/
H A Dpartiallydefinedeq.c31 short* ps2 = (short*)junk2; local
44 *ps2 = 42;
51 *ps2 = 42;
/external/chromium/chrome/browser/
H A Dprocess_singleton_mac_unittest.cc92 ProcessSingleton ps2(temp_dir_.path());
100 // When |ps1| has the lock, |ps2| cannot get it.
104 EXPECT_FALSE(ps2.Create());
107 // And when |ps2| has the lock, |ps1| cannot get it.
109 EXPECT_TRUE(ps2.Create());
112 ps2.Cleanup();
119 ProcessSingleton ps2(temp_dir_.path());
127 // When |ps1| has the lock, |ps2| cannot get it.
131 EXPECT_EQ(ProcessSingleton::PROFILE_IN_USE, ps2.NotifyOtherProcessOrCreate());
134 // And when |ps2| ha
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-memset-bad-sizeof.cpp30 PS ps2 = &s; local
41 memset(ps2, 0, sizeof(ps2)); // \
43 memset(ps2, 0, sizeof(typeof(ps2))); // \
45 memset(ps2, 0, sizeof(PS)); // \
71 memset(ps2, 0, sizeof(*ps2));
72 memset(ps2, 0, sizeof(typeof(*ps2)));
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsvideo.h29 #include <linux/ps2/dev.h>
30 #include <linux/ps2/gs.h>
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitBaseTest.java82 PrintStream ps2 = null; // for redirecting stderr later
98 ps2 = new PrintStream(err);
100 System.setErr(ps2);
108 ps2.println("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'");
143 if ( ps2!=null ) ps2.close();
174 PrintStream ps2 = null; // for redirecting stderr later
207 ps2 = new PrintStream(err);
209 System.setErr(ps2);
291 if ( ps2!
[all...]
H A DgUnitExecutor.java234 PrintStream ps2 = null; // for redirecting stderr later
252 ps2 = new PrintStream(err);
254 System.setErr(ps2);
262 ps2.print("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'");
294 if ( ps2!=null ) ps2.close();
311 PrintStream ps2 = null; // for redirecting stderr later
345 ps2 = new PrintStream(err);
347 System.setErr(ps2);
382 ps2
[all...]
/external/fdlibm/
H A De_j1.c307 static const double ps2[5] = { variable
309 static double ps2[5] = {
336 else if(ix>=0x40000000){p = pr2; q= ps2;}
/external/libvpx/libvpx/vp8/common/
H A Dloopfilter_filters.c166 signed char ps2 = (signed char) * op2 ^ 0x80; local
212 s = vp8_signed_char_clamp(ps2 + u);
/external/kernel-headers/original/asm-mips/ip32/
H A Dmace.h295 struct mace_ps2 ps2; member in struct:mace_perif
/external/icu4c/common/
H A Ducnv_ext.cpp1014 const uint16_t *stage12, *stage3, *ps2, *ps3; local
1059 ps2=stage12+st2;
1061 if((st3=(int32_t)ps2[st2]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)!=0) {
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Dloopfilter_filters_dspr2.c1351 uint32_t *ps2,
1375 vps2 = (*ps2) ^ N128;
1580 /* vps2 = vp8_signed_char_clamp(ps2 + u); */
1625 *ps2 = vps2_r ^ N128;
1347 vp8_mbfilter_mips( uint32_t mask, uint32_t hev, uint32_t *ps2, uint32_t *ps1, uint32_t *ps0, uint32_t *qs0, uint32_t *qs1, uint32_t *qs2 ) argument
/external/libusb/
H A Dconfig.sub717 mipsEE* | ee | ps2)
926 ps2)
/external/libusb-compat/
H A Dconfig.sub717 mipsEE* | ee | ps2)
926 ps2)
/external/webkit/Source/WebCore/dom/
H A DNode.cpp341 RenderStyle* ps2 = s2->getCachedPseudoStyle(pseudoId); local
342 if (!ps2)
346 ch = ps1 && *ps1 == *ps2 ? NoChange : NoInherit;

Completed in 5500 milliseconds

123