Searched defs:s1 (Results 276 - 300 of 399) sorted by relevance

<<111213141516

/external/icu4c/common/
H A Dunistr.cpp107 operator+ (const UnicodeString &s1, const UnicodeString &s2) { argument
109 UnicodeString(s1.length()+s2.length()+1, (UChar32)0, 0).
110 append(s1).
H A Dustring.c667 u_strcmp(const UChar *s1, argument
673 c1=*s1++;
683 uprv_strCompare(const UChar *s1, int32_t length1, argument
690 start1=s1;
696 if(s1==s2) {
701 c1=*s1;
709 ++s1;
717 if(s1==s2) {
725 if(s1==limit1) {
729 c1=*s1;
921 u_strCompare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, UBool codePointOrder) argument
933 u_strcmpCodePointOrder(const UChar *s1, const UChar *s2) argument
938 u_strncmp(const UChar *s1, const UChar *s2, int32_t n) argument
958 u_strncmpCodePointOrder(const UChar *s1, const UChar *s2, int32_t n) argument
1154 u_memcmpCodePointOrder(const UChar *s1, const UChar *s2, int32_t count) argument
[all...]
/external/icu4c/i18n/
H A Ducol_bld.cpp85 uint32_t s1 = source0, s2, t1 = target0, t2; local
98 if(s1 == t1 && s2 == t2) {
101 s = (s1 & 0xFFFF0000)|((s2 & 0xFFFF0000)>>16);
108 s = (s1 & 0x0000FF00) | (s2 & 0x0000FF00)>>8;
115 s = (s1 & 0x000000FF)<<8 | (s2 & 0x000000FF);
/external/icu4c/test/intltest/
H A Dtestidna.cpp646 void TestIDNA::testCompare(const UChar* s1, int32_t s1Len, argument
652 int32_t retVal = func(s1,-1,s2,-1,UIDNA_DEFAULT,&status);
662 retVal = func(s1,-1,s2,-1,UIDNA_ALLOW_UNASSIGNED,&status);
672 retVal = func(s1,s1Len,s2,s2Len,UIDNA_DEFAULT,&status);
682 retVal = func(s1,s1Len,s2,s2Len,UIDNA_ALLOW_UNASSIGNED,&status);
H A Dtsmthred.cpp1135 UnicodeString s1 = *fSharedString; local
1136 s1 += "cat this";
1137 UnicodeString s2(s1);
H A Dtstnorm.cpp850 ref_norm_compare(const UnicodeString &s1, const UnicodeString &s2, uint32_t options, UErrorCode &errorCode) { argument
855 Normalizer::decompose(s1, FALSE, normOptions, r1, errorCode);
861 r1=s1;
877 _norm_compare(const UnicodeString &s1, const UnicodeString &s2, uint32_t options, UErrorCode &errorCode) { argument
880 if( UNORM_YES==Normalizer::quickCheck(s1, UNORM_FCD, normOptions, errorCode) &&
885 return Normalizer::compare(s1, s2, options, errorCode);
890 ref_case_compare(const UnicodeString &s1, const UnicodeString &s2, uint32_t options) { argument
893 t1=s1;
1109 UnicodeString s1, s2; local
1135 s1
[all...]
H A Dutxttest.cpp1352 UnicodeString s1("Hello, World");
1356 utp = utext_openUnicodeString(&ut, &s1, &status);
1360 utp = utext_openConstUnicodeString(&ut, &s1, &status);
1375 utp = utext_openUnicodeString(&ut, &s1, &status);
1870 static const char s1[] = {0x41,0x42,0x43,0x44,0x45,0x46,0}; /* "ABCDEF" */ local
1877 utext_openUTF8(&ut1, s1, -1, &status);
/external/icu4c/tools/ctestfw/
H A Dctest.c69 static int strncmp_nullcheck( const char* s1,
134 static int strncmp_nullcheck( const char* s1, argument
142 return strncmp ( s1, s2, n );
/external/icu4c/tools/genuca/
H A Dgenuca.cpp266 uint32_t s1 = source[0], s2, t1 = target[0], t2; local
279 if(s1 == t1 && s2 == t2) {
282 s = (s1 & 0xFFFF0000)|((s2 & 0xFFFF0000)>>16);
289 s = (s1 & 0x0000FF00) | (s2 & 0x0000FF00)>>8;
296 s = (s1 & 0x000000FF)<<8 | (s2 & 0x000000FF);
/external/mksh/src/
H A Dhistrap.c335 char *s, *s1; local
344 for (s = *hp; (s1 = strstr(s, pat)) && (!any_subst || globr);
345 s = s1 + pat_len) {
347 len = s1 - s;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h845 inline int StrCaseCmp(const char* s1, const char* s2) { argument
846 return stricmp(s1, s2);
855 inline int StrCaseCmp(const char* s1, const char* s2) { argument
856 return _stricmp(s1, s2);
881 inline int StrCaseCmp(const char* s1, const char* s2) {
882 return strcasecmp(s1, s2);
/external/qemu/block/
H A Dqcow2.c856 QCowCreateState s1, *s = &s1; local
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_blit_A.c1187 Uint32 s1; \
1197 s1 = s & 0xff00ff; \
1199 d1 = (d1 + ((s1 - d1) * alpha >> 8)) & 0xff00ff; \
1380 Uint32 s1 = s & 0xff00ff; \
1382 d1 = (d1 + ((s1 - d1) * alpha >> 8)) \
1472 Uint32 s1; local
1480 s1 = s & 0xff00ff;
1482 d1 = (d1 + ((s1 - d1) * alpha >> 8))
1494 s1 = s & 0xff00ff;
1496 d1 += (s1
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fbvideo.c1352 Uint8 s1, s2, s3, s4; local
1395 s1 = (m >> 24) | (m >> 15) | (m >> 6) | (m << 3);
1402 *((Uint32*)dstPtr) = s1 | (s2 << 8) | (s3 << 16) | (s4 << 24);
1425 s1 = (m >> 25) | (m >> 16) | (m >> 7) | (m << 2);
1432 *((Uint32*)dstPtr) = s1 | (s2 << 8) | (s3 << 16) | (s4 << 24);
1455 s1 = (m >> 26) | (m >> 17) | (m >> 8) | (m << 1);
1462 *((Uint32*)dstPtr) = s1 | (s2 << 8) | (s3 << 16) | (s4 << 24);
1485 s1 = (m >> 27) | (m >> 18) | (m >> 9) | m;
1492 *((Uint32*)dstPtr) = s1 | (s2 << 8) | (s3 << 16) | (s4 << 24);
/external/qemu/
H A Dqemu-io.c105 char s1[64], s2[64], ts[64]; local
109 cvtstr((double)total, s1, sizeof(s1));
114 s1, cnt, ts, s2, tdiv((double)cnt, *t));
1343 char s1[64]; local
1351 cvtstr(size, s1, sizeof(s1));
1352 printf("%s\n", s1);
1369 char s1[64], s2[64]; local
1381 cvtstr(bdi.cluster_size, s1, sizeo
1491 char s1[64]; local
1542 char s1[64]; local
[all...]
/external/quake/quake/src/QW/client/
H A Dd_polyse.c216 int s0, s1, s2; local
219 s1 = index1->v[2];
232 index1->v[2] = s1;
H A Dgl_rsurf.c424 float s1, t1; local
/external/quake/quake/src/WinQuake/
H A Dd_polyse.cpp216 int s0, s1, s2; local
219 s1 = index1->v[2];
232 index1->v[2] = s1;
H A Dgl_rsurf.cpp420 float s1, t1; local
/external/skia/src/effects/
H A DSkGradientShader.cpp436 static inline uint32_t dot8_blend_packed32(uint32_t s0, uint32_t s1, argument
439 int a = blend8(SkGetPackedA32(s0), SkGetPackedA32(s1), blend);
440 int r = blend8(SkGetPackedR32(s0), SkGetPackedR32(s1), blend);
441 int g = blend8(SkGetPackedG32(s0), SkGetPackedG32(s1), blend);
442 int b = blend8(SkGetPackedB32(s0), SkGetPackedB32(s1), blend);
449 U32 t0 = (((s0 & 0xFF00FF) * blend + (s1 & 0xFF00FF) * otherBlend) >> 8) & 0xFF00FF;
450 U32 t1 = (((s0 >> 8) & 0xFF00FF) * blend + ((s1 >> 8) & 0xFF00FF) * otherBlend) & 0xFF00FF00;
454 return ((((s0 & 0xFF00FF) * blend + (s1 & 0xFF00FF) * otherBlend) >> 8) & 0xFF00FF) |
455 ((((s0 >> 8) & 0xFF00FF) * blend + ((s1 >> 8) & 0xFF00FF) * otherBlend) & 0xFF00FF00);
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.c788 EAS_I32 EAS_HWMemCmp (const void *s1, const void *s2, EAS_I32 amount) argument
790 return (EAS_I32) memcmp(s1, s2, (size_t) amount);
H A DEASLibVst.c483 EAS_I32 EAS_HWMemCmp (const void *s1, const void *s2, EAS_I32 amount) argument
485 return (EAS_I32) memcmp(s1, s2, (size_t) amount);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompose.h211 StateTuple(StateId s1, StateId s2, int f) argument
212 : state_id1(s1), state_id2(s2), filt(f) {}
270 // and those of the resulting (string) FST, a state tuple (s1, s2) is
271 // simply mapped to StateId s1. Hence, we use an STL vector as a
283 StateTuple(StateId s1, StateId s2, int /* f */) argument
284 : state_id1(s1), state_id2(s2) {}
454 StateId s1 = tuple.state_id1; local
459 ComposeFstImplBase<A>::fst1_, s1, f, true);
461 OrderedExpand(s, ComposeFstImplBase<A>::fst1_, s1,
623 StateId s1 local
[all...]
/external/stlport/src/c_locale_glibc/
H A Dc_locale_glibc2.c363 const char *s1, size_t n1,
370 strncpy(buf1, s1, bufsize1); buf1[bufsize1] = 0;
375 s1 += bufsize1; n1 -= bufsize1;
383 const wchar_t *s1, size_t n1,
390 wcsncpy(buf1, s1, bufsize1); buf1[bufsize1] = 0;
395 s1 += bufsize1; n1 -= bufsize1;
362 _Locale_strcmp(struct _Locale_collate * __loc, const char *s1, size_t n1, const char *s2, size_t n2) argument
382 _WLocale_strcmp(struct _Locale_collate *__loc, const wchar_t *s1, size_t n1, const wchar_t *s2, size_t n2) argument
/external/v8/src/arm/
H A Dsimulator-arm.h136 s0 = 0, s1, s2, s3, s4, s5, s6, s7, enumerator in enum:v8::internal::Simulator::Register

Completed in 971 milliseconds

<<111213141516