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

1 2 3

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC2ParameterSpecTest.java 150 RC2ParameterSpec ps2 = new RC2ParameterSpec(effectiveKeyBits, iv); local
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); local
193 ps1.hashCode() == ps2.hashCode())
200 RC2ParameterSpec ps2 = new RC2ParameterSpec(effectiveKeyBits); local
    [all...]
RC5ParameterSpecTest.java 222 RC5ParameterSpec ps2 = new RC5ParameterSpec(version, rounds, local
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));
272 RC5ParameterSpec ps2 = new RC5ParameterSpec(version, rounds, local
283 RC5ParameterSpec ps2 = new RC5ParameterSpec(version, rounds, wordSize); local
    [all...]
  /external/wpa_supplicant_8/src/utils/
edit_simple.c 19 static const char *ps2 = NULL; variable
45 printf("%s> ", ps2 ? ps2 : "");
67 ps2 = ps;
69 printf("%s> ", ps2 ? ps2 : "");
edit_readline.c 132 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);
edit.c 23 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/
RC2ParameterSpecTest.java 150 RC2ParameterSpec ps2 = new RC2ParameterSpec(effectiveKeyBits, iv); local
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); local
193 ps1.hashCode() == ps2.hashCode())
    [all...]
RC5ParameterSpecTest.java 222 RC5ParameterSpec ps2 = new RC5ParameterSpec(version, rounds, local
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));
272 RC5ParameterSpec ps2 = new RC5ParameterSpec(version, rounds, local
    [all...]
  /external/valgrind/main/memcheck/tests/
partiallydefinedeq.c 31 short* ps2 = (short*)junk2; local
44 *ps2 = 42;
51 *ps2 = 42;
  /external/chromium/chrome/browser/
process_singleton_mac_unittest.cc 92 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| has the lock, |ps1| cannot get it
    [all...]
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 30 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...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
s10_8pf.cpp 192 Word16 psk, ps, ps0, ps1, ps2, sq, sq2;
268 ps2 = add (ps1, dn[i3]);
276 sq2 = mult (ps2, ps2);
285 ps = ps2;
331 ps2 = add (ps1, dn[i5]);
336 sq2 = mult (ps2, ps2);
345 ps = ps2;
395 ps2 = add (ps1, dn[i7])
582 Word16 ps2; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsvideo.h 29 #include <linux/ps2/dev.h>
30 #include <linux/ps2/gs.h>
42 /* Gotta love that simple PS2 graphics interface. :) */
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 82 PrintStream ps2 = null; // for redirecting stderr later local
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 local
207 ps2 = new PrintStream(err);
209 System.setErr(ps2);
291 if ( ps2!=null ) ps2.close()
321 PrintStream ps2 = null; \/\/ for redirecting stderr later local
    [all...]
gUnitExecutor.java 234 PrintStream ps2 = null; // for redirecting stderr later local
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 local
345 ps2 = new PrintStream(err);
347 System.setErr(ps2);
382 ps2.print("Invalid input")
444 PrintStream ps2 = null; \/\/ for redirecting stderr later local
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetTest.java 129 PreparedStatement ps2 = null; local
142 ps2 = conn.prepareStatement("select * from t1 whe a like '?000'");
146 ResultSet rs2 = ps2.executeQuery();
155 // Although exception happened on ps2 rs1 should still work
166 ps2.close();
170 if (ps2 != null) ps2.close();
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
c2t64fx.c 57 Word16 ps, psk, ps1, ps2, alpk, alp1, alp2, sq; local
239 ps2 = add1(ps1, dn[i1]);
241 sq = vo_mult(ps2, ps2);
c4t64fx.c 980 Word16 ps1, ps2, sq, sqk; local
1007 ps2 = add1(ps1, dn[y]);
1012 sq = vo_mult(ps2, ps2);
  /external/fdlibm/
e_j1.c 307 static const double ps2[5] = { variable
309 static double ps2[5] = {
336 else if(ix>=0x40000000){p = pr2; q= ps2;}
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_j1.c 257 static const double ps2[5] = { variable
275 else if(ix>=0x40000000){p = pr2; q= ps2;}
e_j1f.c 214 static const float ps2[5] = { variable
232 else if(ix>=0x40000000){p = pr2; q= ps2;}
  /external/libvpx/libvpx/vp8/common/
loopfilter_filters.c 166 signed char ps2 = (signed char) * op2 ^ 0x80; local
212 s = vp8_signed_char_clamp(ps2 + u);
  /bionic/libc/kernel/arch-mips/asm/ip32/
mace.h 299 struct mace_ps2 ps2; member in struct:mace_perif
  /development/ndk/platforms/android-9/arch-mips/include/asm/ip32/
mace.h 299 struct mace_ps2 ps2; member in struct:mace_perif
  /external/kernel-headers/original/asm-mips/ip32/
mace.h 295 struct mace_ps2 ps2; member in struct:mace_perif
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/ip32/
mace.h 299 struct mace_ps2 ps2; member in struct:mace_perif

Completed in 491 milliseconds

1 2 3