Searched defs:s1 (Results 51 - 75 of 399) sorted by relevance

1234567891011>>

/external/openssl/crypto/des/
H A Ddess.cpp40 unsigned long s1,s2,e1,e2; local
49 GetTSC(s1);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
H A Ddes3s.cpp40 unsigned long s1,s2,e1,e2; local
49 GetTSC(s1);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dequal.h45 StateId s1 = siter1.Value(); local
47 if (s1 != s2) {
49 << ", state1 = " << s1
53 Weight final1 = fst1.Final(s1);
57 << " state = " << s1
62 ArcIterator< Fst<Arc> > aiter1(fst1, s1);
67 << " state = " << s1;
74 << " state = " << s1
81 << " state = " << s1
88 << " state = " << s1
[all...]
H A Dstatesort.h54 StateId s1 = siter.Value(), s2; local
55 if (done[s1])
57 Weight final1 = fst->Final(s1), final2 = Weight::Zero();
59 for (ArcIterator< MutableFst<Arc> > aiter(*fst, s1);
63 for (; !done[s1]; s1 = s2, final1 = final2, swap(arcs1, arcs2)) {
64 s2 = order[s1];
80 done[s1] = true;
/external/stlport/stlport/stl/
H A D_cstdio.h47 inline int vsnprintf(char *s1, size_t n, const char *s2, va_list v) argument
48 { return _STLP_VENDOR_CSTD::_vsnprintf(s1, n, s2, v); }
/external/v8/test/mjsunit/
H A Dobject-toprimitive.js35 var s1 = String(o1); variable
37 assertTrue(typeof s1 == "string");
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java84 * @param s1
98 public int difference(String s1, String s2) throws EncoderException { argument
99 return SoundexUtils.difference(this, s1, s2);
/external/bison/lib/
H A Dstrverscmp.c61 __strverscmp (const char *s1, const char *s2) argument
63 const unsigned char *p1 = (const unsigned char *) s1;
/external/blktrace/
H A Dstrverscmp.c24 @deftypefun int strverscmp (const char *@var{s1}, const char *@var{s2})
25 The @code{strverscmp} function compares the string @var{s1} against
28 function. In fact, if @var{s1} and @var{s2} contain no digits,
89 strverscmp (const char *s1, const char *s2) argument
91 const unsigned char *p1 = (const unsigned char *) s1;
/external/bouncycastle/src/main/java/org/bouncycastle/util/io/pem/
H A DPemHeader.java51 private boolean isEqual(String s1, String s2) argument
53 if (s1 == s2)
58 if (s1 == null || s2 == null)
63 return s1.equals(s2);
/external/chromium/base/
H A Dstring16.cc22 int c16memcmp(const char16* s1, const char16* s2, size_t n) { argument
25 if (*s1 != *s2) {
26 // We cannot use (*s1 - *s2) because char16 is unsigned.
27 return ((*s1 < *s2) ? -1 : 1);
29 ++s1;
53 char16* c16memmove(char16* s1, const char16* s2, size_t n) { argument
54 return reinterpret_cast<char16*>(memmove(s1, s2, n * sizeof(char16)));
57 char16* c16memcpy(char16* s1, const char16* s2, size_t n) { argument
58 return reinterpret_cast<char16*>(memcpy(s1, s2, n * sizeof(char16)));
H A Dstring_util_posix.h37 inline int strncmp16(const char16* s1, const char16* s2, size_t count) { argument
39 return ::wcsncmp(s1, s2, count);
41 return c16memcmp(s1, s2, count);
H A Dstring_util_win.h24 inline int strcasecmp(const char* s1, const char* s2) { argument
25 return _stricmp(s1, s2);
28 inline int strncasecmp(const char* s1, const char* s2, size_t count) { argument
29 return _strnicmp(s1, s2, count);
32 inline int strncmp16(const char16* s1, const char16* s2, size_t count) { argument
33 return ::wcsncmp(s1, s2, count);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringutils.cc70 int ascii_string_compare(const wchar_t* s1, const char* s2, size_t n, argument
75 c1 = transformation(*s1);
82 ++s1;
121 bool starts_with(const char *s1, const char *s2) {
123 if (*s1 != *s2) {
126 s1++;
/external/clang/test/CodeGen/
H A Dbitfield.c24 struct s1 { struct
/external/clang/test/Sema/
H A Dattr-unused.c26 struct Test0_unused s1; // expected-warning {{'Test0_unused' was marked unused but was used}} local
H A Dwarn-strlcpycat-size.c8 char s1[100]; variable
21 strlcpy(s1, s2, sizeof(s1)); // no warning
22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
27 strlcpy(s1+3, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}}
/external/clang/test/SemaCXX/
H A Delaborated-type-specifier.cpp13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) { argument
14 if (s1->x == s2) return true;
15 if (s1->y == s3) return true;
H A Dexpressions.cpp116 S<5, 8> s1; local
118 (void)s1.foo();
/external/fdlibm/
H A De_sqrt.c100 unsigned r,t1,s1,ix1,q1; local
140 q = q1 = s0 = s1 = 0; /* [q,q1] = ieee_sqrt(x) */
157 t1 = s1+r;
160 s1 = t1+r;
161 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
/external/llvm/lib/Support/
H A DStringExtras.cpp20 /// occurrence of string 's1' in string 's2', ignoring case. Returns
21 /// the offset of s2 in s1 or npos if s2 cannot be found.
22 StringRef::size_type llvm::StrInStrNoCase(StringRef s1, StringRef s2) { argument
23 size_t N = s2.size(), M = s1.size();
27 if (s1.substr(i, N).equals_lower(s2))
/external/openssl/crypto/md4/
H A Dmd4s.cpp45 unsigned long s1,s2,e1,e2; local
66 GetTSC(s1);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
/external/openssl/crypto/md5/
H A Dmd5s.cpp45 unsigned long s1,s2,e1,e2; local
66 GetTSC(s1);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
/external/openssl/crypto/rc4/
H A Drc4s.cpp41 unsigned long s1,s2,e1,e2; local
60 GetTSC(s1);
70 e1-s1,e2-s2,(e1-s1)-(e2-s2));
/external/valgrind/main/helgrind/tests/
H A Dtc20_verifywrap.c50 sem_t s1; local
228 r= sem_init(&s1, 0, ~0); assert(r);
231 r= sem_init(&s1, 0, 0);
241 memset(&s1, 0x55, sizeof(s1));
242 r= sem_wait(&s1); /* assert(r != 0); */
245 r= sem_post(&s1);
249 sem_destroy(&s1);

Completed in 996 milliseconds

1234567891011>>