HomeSort by relevance Sort by last modified time
    Searched refs:s1 (Results 226 - 250 of 614) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bluetooth/glib/glib/
gstrfuncs.c     [all...]
gstrfuncs.h 159 gint g_ascii_strcasecmp (const gchar *s1,
161 gint g_ascii_strncasecmp (const gchar *s1,
176 gint g_strcasecmp (const gchar *s1,
178 gint g_strncasecmp (const gchar *s1,
  /external/tremolo/Tremolo/
mdctARM.s 464 SUB r11,r11,r8 @ r11= s1 = x1[3] - x1[2]
483 @ r11= s1
490 @ XPROD31(s1, s0, T[0], T[1], &x2[0], &x2[2])
491 @ x2[0] = (s1*T[0] + s0*T[1])>>31 x2[2] = (s0*T[0] - s1*T[1])>>31
494 SMLAL r4, r3, r11,r10 @ (r4, r3) += s1*T[0]
496 SMULL r11,r4, r8, r11 @ (r11,r4) = -s1*T[1]
529 SUB r9, r9,r10 @ r9 = s1 = x1[2] - x1[3]
546 @ r9 = s1
555 @ XNPROD31(s0, s1, T[0], T[1], &x2[0], &x2[2]
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 768 const char* s1,
776 const char* s1,
793 const wchar_t* s1,
    [all...]
  /external/gtest/include/gtest/
gtest.h 814 const char* s1,
822 const char* s1,
839 const wchar_t* s1,
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecSet.java 70 RegisterSpec s1 = specs[i]; local
73 if (s1 == s2) {
77 if ((s1 == null) || !s1.equals(s2)) {
  /external/chromium/third_party/icu/public/common/unicode/
normlzr.h 386 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
392 * @param s1 First source string.
401 * Set if the caller knows that both s1 and s2 fulfill the FCD conditions.
434 compare(const UnicodeString &s1, const UnicodeString &s2,
809 Normalizer::compare(const UnicodeString &s1, const UnicodeString &s2,
813 return unorm_compare(s1.getBuffer(), s1.length(),
uidna.h 279 * @param s1 First source string.
305 uidna_compare( const UChar *s1, int32_t length1,
  /external/chromium/third_party/icu/source/test/intltest/
idnaref.h 201 * @param s1 First source string.
221 idnaref_compare( const UChar *s1, int32_t length1,
itspoof.cpp 98 UnicodeString s1("cxs");
100 int32_t checkResults = uspoof_areConfusableUnicodeString(sc, s1, s2, &status);
216 UnicodeString s1("A long string that will overflow stack buffers. A long string that will overflow stack buffers. "
220 TEST_ASSERT_EQ(USPOOF_SINGLE_SCRIPT_CONFUSABLE, uspoof_areConfusableUnicodeString(sc, s1, s2, &status));
  /external/e2fsprogs/misc/
util.c 36 int strcasecmp (char *s1, char *s2)
38 while (*s1 && *s2) {
39 int ch1 = *s1++, ch2 = *s2++;
47 return *s1 ? 1 : *s2 ? -1 : 0;
  /external/icu4c/common/unicode/
uidna.h 277 * @param s1 First source string.
303 uidna_compare( const UChar *s1, int32_t length1,
  /external/icu4c/test/intltest/
idnaref.h 201 * @param s1 First source string.
221 idnaref_compare( const UChar *s1, int32_t length1,
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drmdef.h 311 LPD3DVECTOR s1,
318 LPD3DVECTOR s1,
331 LPD3DVECTOR s1,
336 extern D3DVALUE D3DRMAPI D3DRMVectorDotProduct(LPD3DVECTOR s1,
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRMDEF.H 311 LPD3DVECTOR s1,
318 LPD3DVECTOR s1,
331 LPD3DVECTOR s1,
336 extern D3DVALUE D3DRMAPI D3DRMVectorDotProduct(LPD3DVECTOR s1,
  /external/v8/src/
regexp-macro-assembler.cc 230 unibrow::uchar s1[1] = { c1 }; local
231 canonicalize.get(c1, '\0', s1);
232 if (s1[0] != c2) {
235 if (s1[0] != s2[0]) {
  /external/webkit/JavaScriptCore/runtime/
UString.h 183 ALWAYS_INLINE bool operator==(const UString& s1, const UString& s2)
185 int size = s1.size();
190 return s2.size() == 1 && s1.data()[0] == s2.data()[0];
194 const UChar* d1 = s1.data();
199 return s2.size() == size && memcmp(s1.data(), s2.data(), size * sizeof(UChar)) == 0;
204 inline bool operator!=(const UString& s1, const UString& s2)
206 return !JSC::operator==(s1, s2);
209 bool operator<(const UString& s1, const UString& s2);
210 bool operator>(const UString& s1, const UString& s2);
212 bool operator==(const UString& s1, const char* s2)
    [all...]
  /external/webkit/WebCore/icu/unicode/
uidna.h 277 * @param s1 First source string.
303 uidna_compare( const UChar *s1, int32_t length1,
  /external/webkit/WebKit/mac/icu/unicode/
uidna.h 277 * @param s1 First source string.
303 uidna_compare( const UChar *s1, int32_t length1,
  /external/zlib/
zutil.c 160 int ZLIB_INTERNAL zmemcmp(s1, s2, len)
161 const Bytef* s1;
168 if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
  /external/v8/test/cctest/
test-strings.cc 201 static void Traverse(Handle<String> s1, Handle<String> s2) {
203 buffer.Reset(*s1);
211 CHECK_EQ(s1->length(), i);
216 static void TraverseFirst(Handle<String> s1, Handle<String> s2, int chars) {
218 buffer.Reset(*s1);
226 s1->Get(s1->length() - 1);
  /dalvik/vm/oo/
ObjectInlines.h 57 INLINE s1 dvmGetFieldByte(const Object* obj, int offset) {
85 INLINE s1 dvmGetFieldByteVolatile(const Object* obj, int offset) {
87 return (s1)android_atomic_acquire_load(ptr);
128 INLINE void dvmSetFieldByte(Object* obj, int offset, s1 val) {
163 INLINE void dvmSetFieldByteVolatile(Object* obj, int offset, s1 val) {
205 INLINE s1 dvmGetStaticFieldByte(const StaticField* sfield) {
233 INLINE s1 dvmGetStaticFieldByteVolatile(const StaticField* sfield) {
235 return (s1)android_atomic_acquire_load((s4*)ptr);
276 INLINE void dvmSetStaticFieldByte(StaticField* sfield, s1 val) {
310 INLINE void dvmSetStaticFieldByteVolatile(StaticField* sfield, s1 val)
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
spooftest.c 473 char s1[200]; local
477 u_strToUTF8(s1, sizeof(s1), NULL, scLatin, -1, &status);
480 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
484 u_strToUTF8(s1, sizeof(s1), NULL, goodGreek, -1, &status);
487 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
491 u_strToUTF8(s1, sizeof(s1), NULL, lll_Latin_a, -1, &status);
494 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status)
    [all...]
  /external/openssl/crypto/sha/
sha256.c 153 unsigned MD32_REG_T a,b,c,d,e,f,g,h,s0,s1,T1,T2; local
175 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1);
177 T1 = X[i&0xf] += s0 + s1 + X[(i+9)&0xf];
199 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1); \
200 T1 = X[(i)&0x0f] += s0 + s1 + X[(i+9)&0x0f]; \
205 unsigned MD32_REG_T a,b,c,d,e,f,g,h,s0,s1,T1 local
    [all...]
  /external/iproute2/ip/
link_gre.c 271 char s1[1024]; local
285 remote = format_host(AF_INET, 4, &addr, s1, sizeof(s1));
294 local = format_host(AF_INET, 4, &addr, s1, sizeof(s1));

Completed in 1511 milliseconds

1 2 3 4 5 6 7 8 91011>>