HomeSort by relevance Sort by last modified time
    Searched refs:s2 (Results 26 - 50 of 1149) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2002-04-09-StructRetVal.c 5 short s1, s2; member in struct:S
ms_struct.c 11 struct s2 { struct
14 } ATTR s2; variable in typeref:struct:s2
16 // CHECK: %struct.s2 = type { i32, [4 x i8], [4 x i64] }
  /external/clang/test/PCH/
changed-files.c 3 const char *s2 = m0; variable
  /external/valgrind/main/memcheck/tests/
memcmptest.c 8 char *s1, *s2; variable
12 s2 = malloc(10); strcpy(s2,"fooble");
13 if (memcmp(s1, s2, 8) != 0)
  /external/valgrind/main/none/tests/s390x/
sub.h 6 #define SUB_REG_MEM(insn, s1, s2, NOBORROW) \
16 : "d" (tmp), "Q" (s2) \
18 printf(#insn " %16.16lX - %16.16lX - %d = %16.16lX (cc=%d)\n", s1, s2, !NOBORROW, tmp, cc); \
21 #define SUB_REG_REG(insn, s1, s2, NOBORROW) \
31 : "d" (tmp), "d" (s2) \
33 printf(#insn " %16.16lX - %16.16lX - %d = %16.16lX (cc=%d)\n", s1, s2, !NOBORROW, tmp, cc); \
36 #define SUB_REG_IMM(insn, s1, s2, NOBORROW) \
42 insn(2,s2) \
49 printf(#insn " %16.16lX - %16.16lX - %d = %16.16lX (cc=%d)\n", s1, (unsigned long) 0x00000000##s2, !NOBORROW, v, cc); \
52 #define memsweep(i, s2, carryset)
    [all...]
xor.c 20 static void do_regmem_insns(unsigned long s2)
22 memsweep(x, s2);
23 memsweep(xg, s2);
24 regsweep(xr, s2);
25 regsweep(xgr, s2);
26 xysweep(s2);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
convolve.cpp 216 Word32 s1, s2; local
224 s2 = ((Word32) * (x)) * *(h--);
229 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (x), (Word32) * (h--), s2);
231 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (x), (Word32) * (h--), s2);
235 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (x), (Word32) * (h), s2);
238 *(y++) = (Word16)(s2 >> 12);
  /ndk/sources/host-tools/sed-4.2.1/lib/
streq.h 37 streq9 (const char *s1, const char *s2)
39 return strcmp (s1 + 9, s2 + 9) == 0;
43 streq8 (const char *s1, const char *s2, char s28)
50 return streq9 (s1, s2);
57 streq7 (const char *s1, const char *s2, char s27, char s28)
64 return streq8 (s1, s2, s28);
71 streq6 (const char *s1, const char *s2, char s26, char s27, char s28)
78 return streq7 (s1, s2, s27, s28);
85 streq5 (const char *s1, const char *s2, char s25, char s26, char s27, char s28)
92 return streq6 (s1, s2, s26, s27, s28)
    [all...]
  /bionic/libc/string/
strpbrk.c 34 * Find the first occurrence in s1 of a character in s2 (excluding NUL).
37 strpbrk(const char *s1, const char *s2)
43 for (scanp = s2; (sc = *scanp++) != 0;)
strxfrm.c 31 * Transform string s2 to string s1 using the current locale so that
39 strxfrm(char *s1, const char *s2, size_t n)
41 size_t len = strlen(s2) + 1;
45 memcpy(s1, s2, n);
strcasecmp.c 77 strcasecmp(const char *s1, const char *s2)
81 const u_char *us2 = (const u_char *)s2;
90 strncasecmp(const char *s1, const char *s2, size_t n)
95 const u_char *us2 = (const u_char *)s2;
  /bionic/libc/wchar/
wcsncasecmp.c 34 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n)
40 for (; *s1; s1++, s2++) {
42 c2 = towlower(*s2);
48 return (-*s2);
wcsncmp.c 42 wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n)
48 if (*s1 != *s2++) {
51 *(const unsigned int *)--s2);
  /dalvik/vm/mterp/c/
OP_CONST_16.cpp 4 ILOGV("|const/16 v%d,#0x%04x", vdst, (s2)vsrc1);
5 SET_REGISTER(vdst, (s2) vsrc1);
OP_CONST_WIDE_16.cpp 4 ILOGV("|const-wide/16 v%d,#0x%04x", vdst, (s2)vsrc1);
5 SET_REGISTER_WIDE(vdst, (s2)vsrc1);
  /bootable/bootloader/legacy/libc/
strstr.c 31 char *strstr(const char *s1, const char *s2)
34 int l2 = strlen(s2);
37 if (memcmp(s1, s2, l2) == 0) {
  /external/valgrind/main/none/tests/
fdleak_dup2.c 8 int s2; local
13 s2 = DO( open("/dev/null", O_RDONLY) );
16 DO( dup2(s1, s2) ); // dup s1 as fd s2, which closes existing s2 fd
  /external/webrtc/src/system_wrappers/source/
data_log_helpers_unittest.cc 23 std::string s1, s2; local
25 v2.ToString(&s2);
27 ASSERT_EQ(s2, "10,");
30 ASSERT_EQ(s1, s2);
38 std::string s1, s2; local
40 v2.ToString(&s2);
42 ASSERT_EQ(s2, "10.3,");
45 ASSERT_EQ(s1, s2);
54 std::string s1, s2, s3; local
56 m2.ToString(&s2);
    [all...]
  /external/openssl/ssl/
s2_lib.c 316 return SSL_in_init(s) ? 0 : s->s2->ract_data_length;
321 SSL2_STATE *s2; local
323 if ((s2=OPENSSL_malloc(sizeof *s2)) == NULL) goto err;
324 memset(s2,0,sizeof *s2);
330 if ((s2->rbuf=OPENSSL_malloc(
334 if ((s2->wbuf=OPENSSL_malloc(
336 s->s2=s2;
352 SSL2_STATE *s2; local
367 SSL2_STATE *s2; local
    [all...]
s2_pkt.c 151 if (s->s2->ract_data_length != 0) /* read from buffer */
153 if (len > s->s2->ract_data_length)
154 n=s->s2->ract_data_length;
158 memcpy(buf,s->s2->ract_data,(unsigned int)n);
161 s->s2->ract_data_length-=n;
162 s->s2->ract_data+=n;
163 if (s->s2->ract_data_length == 0)
170 /* s->s2->ract_data_length == 0
201 /*s->s2->padding=0;*/
202 s->s2->escape=0
    [all...]
  /external/clang/test/Sema/
warn-strlcpycat-size.c 9 char s2[200]; variable
21 strlcpy(s1, s2, sizeof(s1)); // no warning
22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
25 strlcpy(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
27 strlcpy(s1+3, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the sour (…)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
syn_filt.cpp 260 Word32 s2; local
288 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (p_x++), (Word32) * (p_a++), 0x00000800L);
293 s2 = amrnb_fxp_msu_16_by_16bb((Word32) * (p_a), (Word32) * (p_yy1--), s2);
295 s2 = amrnb_fxp_msu_16_by_16bb((Word32) * (p_a), (Word32) * (p_yy1--), s2);
297 s2 = amrnb_fxp_msu_16_by_16bb((Word32) * (p_a), (Word32) * (p_yy1--), s2);
315 s2 = amrnb_fxp_msu_16_by_16bb((Word32)a[1], (Word32)temp, s2);
    [all...]
  /external/clang/test/Analysis/
stack-addr-ps.cpp 12 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} local
13 return s2; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}}
18 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} local
19 int &s3 = s2; // expected-note {{binding reference variable 's3' here}}
68 S &s2 = s1; // expected-note {{binding reference variable 's2' here}} local
69 int &x = s2.x; // expected-note {{binding reference variable 'x' here}}
  /external/tcpdump/
strcasecmp.c 67 strcasecmp(s1, s2)
68 const char *s1, *s2;
72 *us2 = (u_char *)s2;
81 strncasecmp(s1, s2, n)
82 const char *s1, *s2;
87 *us2 = (u_char *)s2;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
filenames.h 53 extern int filename_cmp (const char *s1, const char *s2);
54 #define FILENAME_CMP(s1, s2) filename_cmp(s1, s2)

Completed in 5511 milliseconds

12 3 4 5 6 7 8 91011>>