Searched defs:s5 (Results 1 - 25 of 146) sorted by relevance

123456

/external/clang/test/Sema/
H A Dno-documentation-warn-tagdecl-specifier.c27 /** @return s5 Test 5 - expected warning here */
28 struct s5 { int is; }; struct
29 struct s5* f5(void);
H A Dpragma-align-mac68k.c50 struct s5 { struct
54 extern int a5_0[sizeof(struct s5) == 4 ? 1 : -1];
55 extern int a5_1[__alignof(struct s5) == 2 ? 1 : -1];
H A Dwarn-strlcpycat-size.c15 } s4, **s5; variable in typeref:struct:__anon2922
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}}
H A Dwarn-strncat-size.c21 } s4, **s5; variable in typeref:struct:__anon2923
41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
/external/clang/test/SemaCXX/
H A Dwarn-dangling-field.cpp42 S5 s5 = { 0 }; // ok, lifetime-extended variable
45 S5 s5; // expected-note {{here}} member in struct:S6
46 S6() : s5 { 0 } {} // expected-warning {{binding reference subobject of member 's5' to a temporary}}
H A Delaborated-type-specifier.cpp41 int test_funcparam_scope(struct S5 * s5) { argument
43 if (s5 == s5_2) return 1; // expected-error {{comparison of distinct pointer types ('struct S5 *' and 'struct S5 *')}}
/external/clang/test/CodeGen/
H A Dx86_32-arguments-win32.c35 struct s5 { struct
38 struct s5 f5_1(void) { while (1) {} }
39 void f5_2(struct s5 a0) {}
H A Dppc64-struct-onefloat.c7 typedef struct s5 { Sd ds; } SSd; struct
15 // CHECK: %e = alloca %struct.s5, align 8
23 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s5, %struct.s5* %e, i32 0, i32 0
45 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s5, %struct.s5* %p5, i32 0, i32 0
H A Dregparm-struct.c73 struct s5 { struct
76 __attribute__((regparm(3))) void f9(struct s5 a, int b);
79 struct s5 x = {41};
/external/clang/test/OpenMP/
H A Ddistribute_firstprivate_messages.cpp45 S5(const S5 &s5):a(s5.a) { } argument
H A Ddistribute_parallel_for_copyin_messages.cpp36 S5 &operator=(const S5 &s5) { return *this; } // expected-note 3 {{implicitly declared private here}} argument
H A Ddistribute_parallel_for_shared_messages.cpp33 S5(const S5 &s5):a(s5.a) { } argument
H A Ddistribute_parallel_for_simd_copyin_messages.cpp36 S5 &operator=(const S5 &s5) { return *this; } // expected-note 3 {{implicitly declared private here}} argument
H A Ddistribute_parallel_for_simd_shared_messages.cpp33 S5(const S5 &s5):a(s5.a) { } argument
H A Dparallel_copyin_messages.cpp33 S5 &operator =(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}} argument
H A Dparallel_for_copyin_messages.cpp36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}} argument
H A Dparallel_for_simd_copyin_messages.cpp36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}} argument
H A Dparallel_sections_copyin_messages.cpp36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}} argument
H A Dparallel_sections_shared_messages.cpp42 S5(const S5 &s5) : a(s5.a) {} argument
H A Dparallel_shared_messages.cpp39 S5(const S5 &s5):a(s5.a) { } argument
H A Dsingle_copyprivate_messages.cpp32 S5 &operator=(const S5 &s5) { return *this; } // expected-note 3 {{implicitly declared private here}} argument
H A Dtarget_parallel_shared_messages.cpp39 S5(const S5 &s5):a(s5.a) { } argument
H A Dtask_shared_messages.cpp42 S5(const S5 &s5) : a(s5.a) {} argument
H A Dteams_shared_messages.cpp39 S5(const S5 &s5):a(s5.a) { } argument
/external/syslinux/lzo/src/
H A Dlzo_init.c180 __lzo_init_v2(unsigned v, int s1, int s2, int s3, int s4, int s5, argument
202 (s5 == -1 || s5 == (int) sizeof(lzo_uint)) &&

Completed in 2408 milliseconds

123456