Searched refs:s1 (Results 151 - 175 of 643) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dvolatile-1.c298 struct { int x; } s, s1; local
300 printf("s is at %p\n", &(s = s1));
301 printf("s.x is at %p\n", &((s = s1).x));
H A Darm-arguments.c12 struct s1 { char f0; }; struct
13 struct s1 f1(void) {}
/external/llvm/include/llvm/ADT/
H A DTrie.h208 std::string s1(s);
211 char Id = s1[0];
213 typename Node::QueryResult r = nNode->query(s1);
226 s1 = s1.substr(nNode->label().length());
231 tNode = addNode(data, s1.substr(r));
235 tNode = addNode(data, s1);
247 std::string s1(s);
250 char Id = s1[0];
252 typename Node::QueryResult r = nNode->query(s1);
[all...]
/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/v8/test/mjsunit/
H A Duri.js34 var s1 = String.fromCharCode(cc1); variable
56 assertEquals('%7D', encodeURI(s1));
67 assertEquals(cc1, decodeURI(encodeURI(s1)).charCodeAt(0));
/external/bison/src/
H A Dnullable.c61 symbol_number *s1; local
76 s1 = s2 = squeue;
118 while (s1 < s2)
119 for (p = rsets[*s1++ - ntokens]; p; p = p->next)
/external/clang/test/FixIt/
H A Dfixit.c13 int strcmp(const char *s1, const char *s2);
/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 Denum.c79 struct s1 { struct
85 static enum e1 badfunc(struct s1 *q) {
/external/clang/test/SemaCXX/
H A Dscope-check.cpp103 unsigned f(unsigned s0, unsigned s1, void **ip) { argument
112 s0 -= s1;
116 s0 = s1;
117 s1 = tmp;
/external/clang/test/SemaTemplate/
H A Dinstantiate-function-2.cpp10 S<int> s1; local
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal-enc.c32 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
43 s1 = GETU32(pt + 4) ^ rk[1];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
90 PUTU32(ct + 4, s1);
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal-enc.c32 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
43 s1 = GETU32(pt + 4) ^ rk[1];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
90 PUTU32(ct + 4, s1);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-internal-enc.c32 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
43 s1 = GETU32(pt + 4) ^ rk[1];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
90 PUTU32(ct + 4, s1);
/external/clang/test/Analysis/
H A Dbstring.c36 void *__memcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
44 void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
158 void *__mempcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
166 void *mempcpy(void *restrict s1, const void *restrict s2, size_t n);
280 void *__memmove_chk(void *s1, const void *s2, size_t n, size_t destlen);
287 void *memmove(void *s1, const void *s2, size_t n);
328 int bcmp(/*const*/ void *s1, /*const*/ void *s2, size_t n);
334 int memcmp(const void *s1, const void *s2, size_t n);
405 void bcopy(/*const*/ void *s1, void *s2, size_t n);
/external/webkit/Source/WebCore/platform/audio/
H A DFFTFrame.cpp111 double s1 = s1base; local
120 s1 = pow(s1, 0.75);
121 s2 = 1.0 - s1;
124 s1 = 1.0 - s2;
128 double magdb = s1 * mag1db + s2 * mag2db;
154 deltaPhaseBlend = s1 * deltaPhase1 + s2 * (2.0 * piDouble + deltaPhase2);
156 deltaPhaseBlend = s1 * (2.0 * piDouble + deltaPhase1) + s2 * deltaPhase2;
158 deltaPhaseBlend = s1 * deltaPhase1 + s2 * deltaPhase2;
/external/grub/stage2/
H A Dchar_io.c931 grub_memcmp (const char *s1, const char *s2, int n) argument
935 if (*s1 < *s2)
937 else if (*s1 > *s2)
939 s1++;
950 grub_strncat (char *s1, const char *s2, int n) argument
954 while (++i < n && s1[i] != 0);
956 while (i < n && (s1[i++] = *(s2++)) != 0);
958 s1[n - 1] = 0;
963 s1[i] = 0;
977 grub_strcmp (const char *s1, cons argument
1110 substring(const char *s1, const char *s2) argument
1144 grub_strstr(const char *s1, const char *s2) argument
[all...]
/external/yaffs2/yaffs2/
H A Dyaffs_tagscompat.c379 const yaffs_Spare * s0, const yaffs_Spare * s1)
383 s0->tagByte0 != s1->tagByte0 ||
384 s0->tagByte1 != s1->tagByte1 ||
385 s0->tagByte2 != s1->tagByte2 ||
386 s0->tagByte3 != s1->tagByte3 ||
387 s0->tagByte4 != s1->tagByte4 ||
388 s0->tagByte5 != s1->tagByte5 ||
389 s0->tagByte6 != s1->tagByte6 ||
390 s0->tagByte7 != s1->tagByte7 ||
391 s0->ecc1[0] != s1
378 yaffs_VerifyCompare(const __u8 * d0, const __u8 * d1, const yaffs_Spare * s0, const yaffs_Spare * s1) argument
[all...]
/external/valgrind/main/exp-ptrcheck/
H A Dh_intercepts.c158 ( const char* s1, const char* s2, SizeT nmax ); \
160 ( const char* s1, const char* s2, SizeT nmax ) \
165 if (*s1 == 0 && *s2 == 0) return 0; \
166 if (*s1 == 0) return -1; \
169 if (*(unsigned char*)s1 < *(unsigned char*)s2) return -1; \
170 if (*(unsigned char*)s1 > *(unsigned char*)s2) return 1; \
172 s1++; s2++; n++; \
186 ( const char* s1, const char* s2 ); \
188 ( const char* s1, const char* s2 ) \
193 c1 = *(unsigned char *)s1; \
[all...]
/external/openssl/crypto/aes/
H A Daes_core.c785 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
798 s1 = GETU32(in + 4) ^ rk[1];
803 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
804 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
805 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
806 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
809 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9];
813 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
814 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
815 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1
976 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
/external/qemu/
H A Daes.c889 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
902 s1 = GETU32(in + 4) ^ rk[1];
907 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
908 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
909 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
910 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
913 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9];
917 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
918 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
919 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1
1080 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
/external/icu4c/common/
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/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);
H A DSoundexUtils.java69 * @param s1
83 static int difference(StringEncoder encoder, String s1, String s2) throws EncoderException { argument
84 return differenceEncoded(encoder.encode(s1), encoder.encode(s2));
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncNormalizeSpace.java48 XMLString s1 = getArg0AsString(xctxt);
50 return (XString)s1.fixWhiteSpace(true, true, false);

Completed in 578 milliseconds

1234567891011>>