HomeSort by relevance Sort by last modified time
    Searched defs:s4 (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/clang/test/Sema/
arm-layout.c 45 struct s4 { struct
49 check(s4_size, sizeof(struct s4) == 4);
50 check(s4_align, __alignof(struct s4) == 4);
52 check(s4_size, sizeof(struct s4) == 1);
53 check(s4_align, __alignof(struct s4) == 1);
pragma-pack-5.c 40 struct s4 { struct
45 extern int check[sizeof(struct s4) == 4 ? 1 : -1];
46 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
pragma-pack-and-options-align.c 43 struct s4 { struct
49 extern int a[sizeof(struct s4) == 8 ? 1 : -1];
pragma-align-mac68k.c 41 struct s4 { struct
45 extern int a4_0[offsetof(struct s4, f0) == 0 ? 1 : -1];
46 extern int a4_1[offsetof(struct s4, f1) == 1 ? 1 : -1];
47 extern int a4_2[sizeof(struct s4) == 2 ? 1 : -1];
48 extern int a4_3[__alignof(struct s4) == 2 ? 1 : -1];
warn-strlcpycat-size.c 15 } s4, **s5; variable in typeref:struct:__anon6781
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}}
warn-strncat-size.c 21 } s4, **s5; variable in typeref:struct:__anon6782
43 strncat(s4.f1, 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/
elaborated-type-specifier.cpp 22 void test_elab2(struct S4 *s4); // expected-note{{'NS::S4' declared here}}
25 void X::test_elab2(S4 *s4) { } // expected-note{{passing argument to parameter 's4' here}}
29 struct S4 *s4 = 0; local
30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}
38 S4 *s4; \/\/ expected-error{{unknown type name 'S4'; did you mean 'NS::S4'?}} local
    [all...]
warn-unused-result.cpp 33 const S &s4 = g1(); local
  /external/clang/test/SemaTemplate/
self-comparison.cpp 28 template <int A> struct S4 {
46 S4<1> s4; s4.foo<1>(); local
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
residu.cpp 209 Word32 s4; local
223 s4 = 0x0000800L;
235 s4 += ((Word32) * (p_coef--) * *(p_input4++));
239 s4 += ((Word32) * (p_coef--) * *(p_input4++));
245 s4 += (((Word32) * (p_coef)) * *(p_input4));
250 *(p_residual_ptr--) = (Word16)(s4 >> 12);
  /ndk/tests/device/test-stlport_shared-exception/jni/
vtable2.cpp 30 struct S4 : public S3, virtual public S2
55 void S4::s1 ()
101 S4 primary vtable
106 S4 offset to top
107 S4 RTTI
109 S4::s1
111 S2-in-S4 secondary vtable
114 S4::s1 vcall offset
118 S4 RTTI
120 S4::s
152 S4 s4; local
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
vtable2.cpp 30 struct S4 : public S3, virtual public S2
55 void S4::s1 ()
101 S4 primary vtable
106 S4 offset to top
107 S4 RTTI
109 S4::s1
111 S2-in-S4 secondary vtable
114 S4::s1 vcall offset
118 S4 RTTI
120 S4::s
152 S4 s4; local
    [all...]
  /external/clang/test/CodeGen/
bitfield.c 62 struct s4 { struct
ppc64-struct-onefloat.c 6 typedef struct s4 { Sf fs; } SSf; struct
14 // CHECK: %d = alloca %struct.s4, align 4
20 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s4* %d, i32 0, i32 0
42 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s4* %p4, i32 0, i32 0
x86_32-arguments-win32.c 27 struct s4 { struct
31 struct s4 f4_1(void) { while (1) {} }
  /external/eigen/unsupported/Eigen/src/MoreVectorization/
MathFunctions.h 61 Packet4f s4=pmadd(s3,z1, p4f_asin5); local
62 Packet4f temp=pmul(s4,z1);//not really a madd but a mul by z so that the next term can be a madd
75 Packet4f s4=pmadd(s3,z2, p4f_asin5); local
76 Packet4f temp=pmul(s4,z2);//not really a madd but a mul by z so that the next term can be a madd
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_en.cpp 280 Word32 s4; /* Intermediate energy accumulator */ local
295 s4 = 0;
318 s4 = L_mac(s4, tmp2, tmp2, pOverflow);
359 exp = norm_l(s4);
360 ltp_res_en = (Word16)(L_shl(s4, exp, pOverflow) >> 16);
  /dalvik/dexgen/src/com/android/dexgen/util/
Hex.java 169 public static String s4(int v) { method in class:Hex
  /dalvik/dx/src/com/android/dx/util/
Hex.java 169 public static String s4(int v) { method in class:Hex
  /external/clang/test/Analysis/
malloc-overflow.c 22 struct s4 struct
27 void * f4(struct s4 *s)
32 void * f5(struct s4 *s)
34 struct s4 s2 = *s;
  /external/dexmaker/src/dx/java/com/android/dx/util/
Hex.java 169 public static String s4(int v) { method in class:Hex
  /external/elfutils/libcpu/
memory-access.h 88 int32_t s4; member in union:unaligned
129 return up->s4;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Hex.java 181 public static String s4(int v) { method in class:Hex
  /external/v8/test/mjsunit/
uri.js 40 var s4 = String.fromCharCode(cc4); variable
59 assertEquals('%D5%95', encodeURI(s4));
70 assertEquals(cc4, decodeURI(encodeURI(s4)).charCodeAt(0));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Unicode/
uc-005.js 96 var s4 = '\u02b4 = Z'; variable
108 var sEval = s0 + s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10;
140 expect = s4.charAt(0);

Completed in 3610 milliseconds

1 2 3 4