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

1 23 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/arm-vfp/
funop.S 3 * line that specifies an instruction that performs "s1 = op s0".
14 $instr @ s1<- op
17 fsts s1, [r9] @ vA<- s1
fbinop2addr.S 4 * "s2 = s0 op s1".
13 flds s1, [r3] @ s1<- vB
  /external/chromium/base/
string_util_win.h 23 inline int strcasecmp(const char* s1, const char* s2) {
24 return _stricmp(s1, s2);
27 inline int strncasecmp(const char* s1, const char* s2, size_t count) {
28 return _strnicmp(s1, s2, count);
31 inline int strncmp16(const char16* s1, const char16* s2, size_t count) {
32 return ::wcsncmp(s1, s2, count);
string16.h 48 int c16memcmp(const char16* s1, const char16* s2, size_t n);
51 char16* c16memmove(char16* s1, const char16* s2, size_t n);
52 char16* c16memcpy(char16* s1, const char16* s2, size_t n);
78 static int compare(const char_type* s1, const char_type* s2, size_t n) {
79 return c16memcmp(s1, s2, n);
91 static char_type* move(char_type* s1, const char_type* s2, int_type n) {
92 return c16memmove(s1, s2, n);
95 static char_type* copy(char_type* s1, const char_type* s2, size_t n) {
96 return c16memcpy(s1, s2, n);
string_util_posix.h 36 inline int strncmp16(const char16* s1, const char16* s2, size_t count) {
38 return ::wcsncmp(s1, s2, count);
40 return c16memcmp(s1, s2, count);
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
residu.cpp 206 Word32 s1; local
220 s1 = 0x0000800L;
232 s1 += ((Word32) * (p_coef) * *(p_input1++));
236 s1 += ((Word32) * (p_coef) * *(p_input1++));
242 s1 += (((Word32) * (p_coef)) * *(p_input1));
247 *(p_residual_ptr--) = (Word16)(s1 >> 12);
pred_lt.cpp 277 Word32 s1; local
327 s1 = 0x00004000L;
333 s1 += ((Word32) * (pX3)) * *(pC1++);
334 s1 += ((Word32) * (pX2++)) * *(pC1);
337 s1 += ((Word32) * (pX3)) * *(pC1++);
338 s1 += ((Word32) * (pX2++)) * *(pC1);
343 *(p_exc++) = (Word16)(s1 >> 15);
  /external/chromium/third_party/icu/source/common/
ustr_cnv.c 91 static int32_t u_astrnlen(const char *s1, int32_t n)
95 if (s1)
97 while (n-- && *(s1++))
178 u_austrncpy(char *s1,
182 char *target = s1;
189 s1+n,
198 *s1 = 0; /* failure */
200 if(target < (s1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
204 *s1 = 0;
206 return s1;
    [all...]
  /external/icu4c/common/
ustr_cnv.c 91 static int32_t u_astrnlen(const char *s1, int32_t n)
95 if (s1)
97 while (n-- && *(s1++))
178 u_austrncpy(char *s1,
182 char *target = s1;
189 s1+n,
198 *s1 = 0; /* failure */
200 if(target < (s1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
204 *s1 = 0;
206 return s1;
    [all...]
unormcmp.cpp 49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
63 * get one code unit c1 from s1 (-1 if end of source)
143 unorm_cmpEquivFold(const UChar *s1, int32_t length1,
150 /* current-level start/limit - s1/s2 as current */
196 start1=s1;
200 limit1=s1+length1;
223 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) {
229 ++s1;
238 s1=stack1[level1].s
    [all...]
  /external/wpa_supplicant/
os_none.c 142 int os_memcmp(const void *s1, const void *s2, size_t n)
160 int os_strcasecmp(const char *s1, const char *s2)
166 return os_strcmp(s1, s2);
170 int os_strncasecmp(const char *s1, const char *s2, size_t n)
176 return os_strncmp(s1, s2, n);
192 int os_strcmp(const char *s1, const char *s2)
198 int os_strncmp(const char *s1, const char *s2, size_t n)
os.h 259 * @s1: First buffer
262 * Returns: An integer less than, equal to, or greater than zero if s1 is
266 int os_memcmp(const void *s1, const void *s2, size_t n);
286 * @s1: First string
288 * Returns: An integer less than, equal to, or greater than zero if s1 is
291 int os_strcasecmp(const char *s1, const char *s2);
295 * @s1: First string
298 * Returns: An integer less than, equal to, or greater than zero if s1 is
302 int os_strncasecmp(const char *s1, const char *s2, size_t n);
322 * @s1: First strin
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_none.c 142 int os_memcmp(const void *s1, const void *s2, size_t n)
160 int os_strcasecmp(const char *s1, const char *s2)
166 return os_strcmp(s1, s2);
170 int os_strncasecmp(const char *s1, const char *s2, size_t n)
176 return os_strncmp(s1, s2, n);
192 int os_strcmp(const char *s1, const char *s2)
198 int os_strncmp(const char *s1, const char *s2, size_t n)
os.h 259 * @s1: First buffer
262 * Returns: An integer less than, equal to, or greater than zero if s1 is
266 int os_memcmp(const void *s1, const void *s2, size_t n);
286 * @s1: First string
288 * Returns: An integer less than, equal to, or greater than zero if s1 is
291 int os_strcasecmp(const char *s1, const char *s2);
295 * @s1: First string
298 * Returns: An integer less than, equal to, or greater than zero if s1 is
302 int os_strncasecmp(const char *s1, const char *s2, size_t n);
322 * @s1: First strin
    [all...]
  /external/tremolo/Tremolo/
mdct.c 107 REG_TYPE s1 = x[0] - x[1]; local
116 x[1] = s7 - s1;
118 x[3] = s7 + s1;
129 REG_TYPE s0, s1, s2, s3; local
132 s1 = x[10] - x[11]; x[10] += x[11];
135 x[ 0] = MULT31((s0 - s1) , cPI2_8);
137 x[ 2] = MULT31((s0 + s1) , cPI2_8);
144 s1 = x[ 7] - x[ 6]; x[15] = x[ 7] + x[ 6];
145 x[ 4] = s2; x[ 5] = s1;
156 REG_TYPE s0, s1, s2, s3 local
201 REG_TYPE s0, s1, s2, s3; local
279 REG_TYPE s0, s1, s2, s3; local
331 REG_TYPE s1 = -x[1]; local
341 REG_TYPE t0,t1,v0,v1,s0,s1; local
367 REG_TYPE t0,t1,v0,v1,q0,q1,s0,s1; local
    [all...]
  /external/chromium/googleurl/base/
string16.h 71 int c16memcmp(const char16* s1, const char16* s2, size_t n);
74 char16* c16memmove(char16* s1, const char16* s2, size_t n);
75 char16* c16memcpy(char16* s1, const char16* s2, size_t n);
97 static int compare(const char_type* s1, const char_type* s2, size_t n) {
98 return c16memcmp(s1, s2, n);
110 static char_type* move(char_type* s1, const char_type* s2, int_type n) {
111 return c16memmove(s1, s2, n);
114 static char_type* copy(char_type* s1, const char_type* s2, size_t n) {
115 return c16memcpy(s1, s2, n);
  /external/tcpdump/
print-ascii.c 81 register int s1, s2; local
90 s1 = *cp++;
93 " %02x%02x", s1, s2);
95 *(asp++) = (isgraph(s1) ? s1 : '.');
108 s1 = *cp++;
110 " %02x", s1);
112 *(asp++) = (isgraph(s1) ? s1 : '.');
  /libcore/luni/src/main/java/org/apache/harmony/archive/util/
Util.java 87 * @param s1
93 public static boolean asciiEqualsIgnoreCase(String s1, String s2) {
94 if (s1 == null || s2 == null) {
97 if (s1 == s2) {
101 int length = s1.length();
107 char c1 = s1.charAt(i);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-185165.js 56 var s1 = f1.toString();
59 eval("f2=" + s1);
64 expect = s1;
  /libcore/luni/src/main/java/org/apache/xpath/functions/
FuncContains.java 46 String s1 = m_arg0.execute(xctxt).str(); local
50 if (s1.length() == 0 && s2.length() == 0)
53 int index = s1.indexOf(s2);
FuncSubstringAfter.java 47 XMLString s1 = m_arg0.execute(xctxt).xstr(); local
49 int index = s1.indexOf(s2);
53 : (XString)s1.substring(index + s2.length());
  /external/webkit/JavaScriptCore/wtf/
StringExtras.h 77 inline int strncasecmp(const char* s1, const char* s2, size_t len)
79 return _strnicmp(s1, s2, len);
82 inline int strcasecmp(const char* s1, const char* s2)
84 return _stricmp(s1, s2);
108 int strcasecmp(const char* s1, const char* s2);
109 int strncasecmp(const char* s1, const char* s2, size_t len);
  /external/apache-http/src/org/apache/commons/codec/
StringEncoderComparator.java 73 Comparable s1 = (Comparable) ((Encoder) this.stringEncoder).encode(o1); local
75 compareCode = s1.compareTo(s2);
  /external/e2fsprogs/misc/
util.h 18 extern int strcasecmp (char *s1, char *s2);
  /libcore/luni/src/test/java/tests/api/java/io/
SequenceInputStreamTest.java 37 String s1 = "Hello"; field in class:SequenceInputStreamTest
61 InputStream is = new ByteArrayInputStream(s1.getBytes());
82 streams[0] = new ByteArrayInputStream(s1.getBytes());
97 byte buf[] = new byte[s1.length() + s2.length()];
98 si.read(buf, 0, s1.length());
99 si.read(buf, s1.length(), s2.length());
101 buf).equals(s1 + s2));
119 assertEquals("Returned incorrect number of bytes!", s1.length(), si.available());
122 si.available() == s1.length());
183 s1.charAt(1), (char) si.read())
    [all...]

Completed in 833 milliseconds

1 23 4 5 6 7 8 91011>>