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

<<11121314151617181920>>

  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 372 s1 = W256[(j+14)&0x0f]; \
373 s1 = sigma1_256(s1); \
375 (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0); \
381 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; local
439 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; local
483 s1 = W256[(j+14)&0x0f];
484 s1 = sigma1_256(s1);
488 (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0)
708 sha2_word64 a, b, c, d, e, f, g, h, s0, s1; local
763 sha2_word64 a, b, c, d, e, f, g, h, s0, s1; local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
tstnorm.cpp 864 ref_norm_compare(const UnicodeString &s1, const UnicodeString &s2, uint32_t options, UErrorCode &errorCode) {
869 Normalizer::decompose(s1, FALSE, normOptions, r1, errorCode);
1124 UnicodeString s1, s2; local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
LinkedHashMapTest.java 313 Set<Map.Entry<String, String>> s1 = m1.entrySet(); local
314 s1.remove(m2.entrySet().iterator().next());
315 assertEquals("jumbo", s1.iterator().next().getKey());
674 Set s1 = lhm.entrySet(); local
675 Iterator it1 = s1.iterator();
676 assertTrue("Returned set of incorrect size 1", lhm.size() == s1.size());
742 Set s1 = lhm.keySet(); local
743 Iterator it1 = s1.iterator();
744 assertTrue("Returned set of incorrect size", lhm.size() == s1.size());
804 Collection s1 = lhm.values() local
866 Collection s1 = lhm.values(); local
    [all...]
  /frameworks/base/libs/utils/
String16.cpp 54 int strcmp16(const char16_t *s1, const char16_t *s2)
60 d = (int)(ch = *s1++) - (int)*s2++;
68 int strncmp16(const char16_t *s1, const char16_t *s2, size_t n)
74 d = (int)(ch = *s1++) - (int)*s2++;
135 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2)
137 const char16_t* e1 = s1+n1;
140 while (s1 < e1 && s2 < e2) {
141 const int d = (int)*s1++ - (int)*s2++;
150 ? ((int)*s1 - 0)
  /external/libnfc-nxp/src/
phFriNfc_NdefReg.c 41 static int16_t phFriNfc_NdefReg_Strncmp (const int8_t *s1, const int8_t *s2, uint32_t count);
45 static int16_t phFriNfc_NdefReg_Strncmp (const int8_t *s1, const int8_t *s2, uint32_t count)
47 return (int16_t)strncmp((const char*)s1,(const char*)s2, count);
49 int16_t phFriNfc_NdefReg_Strnicmp(const int8_t *s1, const int8_t *s2, uint32_t count)
55 c1 = *s1;
56 s1++;
phFriNfc_NdefRecord.h 501 * \param[in] s1 String to compare.
506 int16_t phFriNfc_NdefReg_Strnicmp(const int8_t *s1, const int8_t *s2, uint32_t count);
  /external/openssl/crypto/jpake/
jpake.c 62 void JPAKE_STEP1_init(JPAKE_STEP1 *s1)
64 JPAKE_STEP_PART_init(&s1->p1);
65 JPAKE_STEP_PART_init(&s1->p2);
68 void JPAKE_STEP1_release(JPAKE_STEP1 *s1)
70 JPAKE_STEP_PART_release(&s1->p2);
71 JPAKE_STEP_PART_release(&s1->p1);
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 845 inline int StrCaseCmp(const char* s1, const char* s2) {
846 return stricmp(s1, s2);
855 inline int StrCaseCmp(const char* s1, const char* s2) {
856 return _stricmp(s1, s2);
881 inline int StrCaseCmp(const char* s1, const char* s2) {
882 return strcasecmp(s1, s2);
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
UnknownFieldSetTest.java 414 private void checkNotEqual(UnknownFieldSet s1, UnknownFieldSet s2) {
415 String equalsError = String.format("%s should not be equal to %s", s1, s2);
416 assertFalse(equalsError, s1.equals(s2));
417 assertFalse(equalsError, s2.equals(s1));
420 String.format("%s should have a different hash code from %s", s1, s2),
421 s1.hashCode() == s2.hashCode());
  /external/v8/test/mjsunit/tools/
profile_view.js 79 function cmpStrs(s1, s2) {
80 return s1 == s2 ? 0 : (s1 < s2 ? -1 : 1);
  /external/v8/test/mjsunit/
uri.js 34 var s1 = String.fromCharCode(cc1); variable
56 assertEquals('%7D', encodeURI(s1));
67 assertEquals(cc1, decodeURI(encodeURI(s1)).charCodeAt(0));
string-compare-alignment.js 34 var s1 = base.substring(0, 64);
38 o[s1] = 1;
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 260 CharSequence s1 = "The quick brown fox jumps over \u00FEhe lazy dog."; local
261 CharSequence s2 = new Wrapper(s1);
262 Spannable s3 = new SpannableString(s1);
285 String out1 = TextUtils.ellipsize(s1, p, i, kind).toString();
289 String keep1 = TextUtils.ellipsize(s1, p, i, kind, true, null).toString();
307 assertEquals("wid " + i + " pass " + j, keep1.length(), s1.length());
  /dalvik/docs/
porting-proto.c.txt 29 typedef int8_t s1;
132 s1 int2byte(s4 x) { return (s1) x; }
210 s1 signedAA(u2 x) { return (s4)(x << 16) >> 24; }
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 271 * @param s1 {@code non-null;} the first column's string
275 protected final String twoColumns(String s1, String s2) {
293 return TwoColumnOutput.toString(s1, w1, separator, s2, w2);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 84 String s1 = lexer.number(); local
85 int day = Integer.parseInt(s1);
  /external/webkit/JavaScriptCore/runtime/
JSString.h 199 // This constructor constructs a new string by concatenating s1 & s2.
201 JSString(JSGlobalData* globalData, unsigned ropeLength, JSString* s1, JSString* s2)
203 , m_stringLength(s1->length() + s2->length())
208 appendStringInConstruct(index, s1);
212 // This constructor constructs a new string by concatenating s1 & s2.
214 JSString(JSGlobalData* globalData, unsigned ropeLength, JSString* s1, const UString& u2)
216 , m_stringLength(s1->length() + u2.size())
221 appendStringInConstruct(index, s1);
225 // This constructor constructs a new string by concatenating s1 & s2.
369 friend JSValue jsString(ExecState* exec, JSString* s1, JSString* s2)
    [all...]
  /external/webkit/WebKit/win/
WebActionPropertyBag.cpp 99 static bool isEqual(LPCWSTR s1, LPCWSTR s2)
101 return !wcscmp(s1, s2);
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
CountDownLatchTest.java 159 String s1 = s.toString(); local
160 assertTrue(s1.indexOf("Count = 1") >= 0);
  /external/icu4c/common/unicode/
utext.h 694 * @param s1 First source string.
705 utext_compare(UText *s1, int32_t length1,
725 * @param s1 First source string.
736 utext_compareNativeLimit(UText *s1, int64_t limit1,
754 * @param s1 First source string.
774 utext_caseCompare(UText *s1, int32_t length1,
795 * @param s1 First source string.
815 utext_caseCompareNativeLimit(UText *s1, int64_t limit1,
    [all...]
  /external/icu4c/test/intltest/
itspoof.cpp 110 UnicodeString s1("cxs");
112 int32_t checkResults = uspoof_areConfusableUnicodeString(sc, s1, s2, &status);
228 UnicodeString s1("A long string that will overflow stack buffers. A long string that will overflow stack buffers. "
232 TEST_ASSERT_EQ(USPOOF_SINGLE_SCRIPT_CONFUSABLE, uspoof_areConfusableUnicodeString(sc, s1, s2, &status));
  /external/qemu/
elf_ops.h 63 static int glue(symfind, SZ)(const void *s0, const void *s1)
66 struct elf_sym *sym = (struct elf_sym *)s1;
92 static int glue(symcmp, SZ)(const void *s0, const void *s1)
95 struct elf_sym *sym1 = (struct elf_sym *)s1;
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
console.h 211 int console_stricmp( char *s1, char *s2, U16 len );
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 251 String s1 = subPrefix + "try " + Hex.u2or4(entry.getStart()) local
256 annotateTo.annotate(amt1, s1);
259 printTo.println(s1);
  /external/bluetooth/glib/glib/
gtestutils.h 36 #define g_assert_cmpstr(s1, cmp, s2) do { const char *__s1 = (s1), *__s2 = (s2); \
39 #s1 " " #cmp " " #s2, __s1, #cmp, __s2); } while (0)

Completed in 2564 milliseconds

<<11121314151617181920>>