HomeSort by relevance Sort by last modified time
    Searched refs:s2 (Results 201 - 225 of 1149) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/valgrind/tsan/
ts_replace.h 139 const unsigned char *s2, size_t len) {
143 if (s1[i] != s2[i]) {
144 res = (int)s1[i] - (int)s2[i];
149 REPORT_READ_RANGE(s2, min(i + 1, len));
195 const char *s2) {
201 c2 = (unsigned char)s2[i];
206 REPORT_READ_RANGE(s2, i+1);
213 const char *s2, size_t n) {
219 c2 = (unsigned char)s2[i];
224 REPORT_READ_RANGE(s2, min(i + 1, n))
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 142 Provider.Service s2 = new Provider.Service(p, "SecureRandom", local
145 assertTrue(s2.getAlgorithm().equals("algorithm"));
154 Provider.Service s2 = new Provider.Service(p, "SecureRandom", local
157 assertTrue(s2.getClassName().equals("tests.java.security.support.RandomImpl"));
166 Provider.Service s2 = new Provider.Service(p, "SecureRandom", local
169 assertTrue(s2.getProvider() == p);
178 Provider.Service s2 = new Provider.Service(p, "SecureRandom", local
181 assertTrue(s2.getType().equals("SecureRandom"));
198 Provider.Service s2 = new Provider.Service(p, "SecureRandom", local
201 s2.toString()
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThrowableTest.java 92 String s2 = fixStacktrace(new String(bao.toByteArray(), 0, bao.size())); local
93 assertTrue("Invalid stackTrace? length: " + s2.length() + "\n" + s2, s2
95 assertTrue("Incorrect stackTrace printed: \n" + s2
96 + "\n\nCompared with:\n" + s, s2.equals(s));
  /external/openssl/ssl/
s2_clnt.c 246 s->s2->clear_text=0;
369 s->s2->tmp.cert_type= *(p++);
372 n2s(p,i); s->s2->tmp.cert_length=i;
373 n2s(p,i); s->s2->tmp.csl=i;
374 n2s(p,i); s->s2->tmp.conn_id_length=i;
379 len = 11 + (unsigned long)s->s2->tmp.cert_length + (unsigned long)s->s2->tmp.csl + (unsigned long)s->s2->tmp.conn_id_length;
396 if (s->s2->tmp.cert_length != 0)
401 if (s->s2->tmp.cert_type != 0
    [all...]
  /bionic/libm/src/
e_pow.c 205 double ss,s2,s_h,s_l,t_h,t_l; local
231 s2 = ss*ss;
232 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
234 s2 = s_h*s_h
    [all...]
e_powf.c 147 float s2,s_h,s_l,t_h,t_l; local
174 s2 = s*s;
175 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
177 s2 = s_h*s_h
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Spinner1.java 61 Spinner s2 = (Spinner) findViewById(R.id.spinner2); local
65 s2.setAdapter(adapter);
66 s2.setOnItemSelectedListener(
  /external/chromium/googleurl/base/
logging.h 308 const char* s2, \
318 #define DCHECK_STROP(func, op, expected, s1, s2) \
320 logging::Check##func##expected##Impl((s1), (s2), \
321 #s1 " " #op " " #s2)) \
327 // Note that "s1" and "s2" may be temporary strings which are destroyed
331 #define DCHECK_STREQ(s1, s2) DCHECK_STROP(strcmp, ==, true, s1, s2)
332 #define DCHECK_STRNE(s1, s2) DCHECK_STROP(strcmp, !=, false, s1, s2)
333 #define DCHECK_STRCASEEQ(s1, s2) DCHECK_STROP(_stricmp, ==, true, s1, s2
    [all...]
  /external/fdlibm/
e_pow.c 209 double ss,s2,s_h,s_l,t_h,t_l; local
235 s2 = ss*ss;
236 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
238 s2 = s_h*s_h
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
e_pow.h 199 double s2,s_h,s_l,t_h,t_l;
225 s2 = s*s;
226 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
228 s2 = s_h*s_h
    [all...]
  /external/valgrind/main/none/tests/s390x/
insert.c 43 static void do_mem_insns(unsigned long s2)
45 memsweep(ic, s2);
46 icysweep(s2);
  /external/webkit/Source/JavaScriptCore/runtime/
UString.cpp 219 bool operator==(const UString& s1, const char *s2)
221 if (s2 == 0)
226 while (u != uend && *s2) {
227 if (u[0] != (unsigned char)*s2)
229 s2++;
233 return u == uend && *s2 == 0;
236 bool operator<(const UString& s1, const UString& s2)
239 const unsigned l2 = s2.length();
242 const UChar* c2 = s2.characters();
255 bool operator>(const UString& s1, const UString& s2)
    [all...]
  /frameworks/base/libs/usb/src/com/android/future/usb/
UsbAccessory.java 98 private static boolean compare(String s1, String s2) {
99 if (s1 == null) return (s2 == null);
100 return s1.equals(s2);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
DnsSdResponseListenerTest.java 116 private boolean equals(String s1, String s2) {
117 if (s1 == null && s2 == null) {
120 if (s1 == null || s2 == null) {
123 return s1.equals(s2);
  /development/ndk/platforms/android-9/arch-mips/include/machine/
regdef.h 77 #define s2 $18 macro
  /external/clang/test/FixIt/
fixit-vexing-parse.cpp 38 S s2, // expected-note {{change this ',' to a ';' to call 'F2'}} local
  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 26 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
38 s2 = GETU32(pt + 8) ^ rk[2];
85 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
86 PUTU32(ct + 8, s2);
  /libcore/luni/src/test/java/libcore/java/io/
OldSequenceInputStreamTest.java 29 String s2 = "World"; field in class:OldSequenceInputStreamTest
94 s2.charAt(0), (char) si.read());
133 simple2 = new Support_ASimpleInputStream(s2);
157 simple2 = new Support_ASimpleInputStream(s2);
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/machine/
regdef.h 77 #define s2 $18 macro
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/machine/
regdef.h 77 #define s2 $18 macro
  /system/extras/tests/bionic/libstdc++/
test_climits.cpp 57 volatile short s2 = SHRT_MIN; local
  /external/clang/test/Analysis/
bstring.c 36 void *__memcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
44 void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
158 void *__mempcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
166 void *mempcpy(void *restrict s1, const void *restrict s2, size_t n);
280 void *__memmove_chk(void *s1, const void *s2, size_t n, size_t destlen);
287 void *memmove(void *s1, const void *s2, size_t n);
328 int bcmp(/*const*/ void *s1, /*const*/ void *s2, size_t n);
334 int memcmp(const void *s1, const void *s2, size_t n);
405 void bcopy(/*const*/ void *s1, void *s2, size_t n);
  /external/webkit/Source/WebCore/platform/audio/
FFTFrame.cpp 112 double s2 = s2base; local
121 s2 = 1.0 - s1;
123 s2 = pow(s2, 0.75);
124 s1 = 1.0 - s2;
128 double magdb = s1 * mag1db + s2 * mag2db;
154 deltaPhaseBlend = s1 * deltaPhase1 + s2 * (2.0 * piDouble + deltaPhase2);
156 deltaPhaseBlend = s1 * (2.0 * piDouble + deltaPhase1) + s2 * deltaPhase2;
158 deltaPhaseBlend = s1 * deltaPhase1 + s2 * deltaPhase2;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string2.h 797 /* Compare characters of S1 and S2. */
800 # define strcmp(s1, s2) \
803 (__builtin_constant_p (s1) && __builtin_constant_p (s2) \
804 && (__s1_len = strlen (s1), __s2_len = strlen (s2), \
806 && (!__string2_1bptr_p (s2) || __s2_len >= 4)) \
807 ? __builtin_strcmp (s1, s2) \
810 ? (__builtin_constant_p (s2) && __string2_1bptr_p (s2) \
811 ? __builtin_strcmp (s1, s2) \
812 : __strcmp_cg (s1, s2, __s1_len))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string2.h 797 /* Compare characters of S1 and S2. */
800 # define strcmp(s1, s2) \
803 (__builtin_constant_p (s1) && __builtin_constant_p (s2) \
804 && (__s1_len = strlen (s1), __s2_len = strlen (s2), \
806 && (!__string2_1bptr_p (s2) || __s2_len >= 4)) \
807 ? __builtin_strcmp (s1, s2) \
810 ? (__builtin_constant_p (s2) && __string2_1bptr_p (s2) \
811 ? __builtin_strcmp (s1, s2) \
812 : __strcmp_cg (s1, s2, __s1_len))
    [all...]

Completed in 1861 milliseconds

1 2 3 4 5 6 7 891011>>