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

1 2 3 4 5 6

  /external/clang/test/CodeGen/
mms-bitfields.c 17 struct s3 { struct
20 } s3; variable in typeref:struct:s3
22 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
ms_struct.c 18 struct s3 { struct
21 } ATTR s3; variable in typeref:struct:s3
23 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
bitfield.c 58 struct s3 { struct
x86_32-arguments-win32.c 20 struct s3 { struct
24 struct s3 f3_1(void) { while (1) {} }
packed-structure.c 89 struct __attribute__((packed, aligned)) s3 { struct
94 int s3_1 = __alignof(((struct s3*) 0)->anInt);
96 int test3(struct s3 *ptr) {
  /external/webrtc/src/system_wrappers/source/
data_log_helpers_unittest.cc 54 std::string s1, s2, s3; local
62 m3.ToString(&s3);
63 ASSERT_EQ(s3, "1,2,3,");
  /external/v8/test/mjsunit/regress/
regress-crbug-3867.js 55 assertArrayEquals(["s1", "s2", "s3"], props({s1: 0, s2: 0, s3: 0}));
56 assertArrayEquals(["s3", "s2", "s1"], props({s3: 0, s2: 0, s1: 0}));
57 assertArrayEquals(["s3", "s1", "s2"], props({s3: 0, s1: 0, s2: 0}));
69 var o1 = {s1: 0, s2: 0, s3: 0}
72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o1));
74 var o2 = {s3: 0, s2: 0, s1: 0}
77 assertArrayEquals(["s3", "s2", "s1", "s4", "s0"], props(o2))
    [all...]
  /external/clang/test/Sema/
arm-layout.c 36 struct s3 { struct
41 check(s3_size, sizeof(struct s3) == 8);
42 check(s3_offset_0, __builtin_offsetof(struct s3, field0) == 0);
43 check(s3_offset_1, __builtin_offsetof(struct s3, field2) == 7);
pragma-pack-5.c 31 struct s3 { struct
37 extern int check[sizeof(struct s3) == 8 ? 1 : -1];
38 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
pragma-pack-and-options-align.c 35 struct s3 { struct
39 extern int a[sizeof(struct s3) == 8 ? 1 : -1];
pragma-align-mac68k.c 32 struct s3 { struct
36 extern int a3_0[offsetof(struct s3, f0) == 0 ? 1 : -1];
37 extern int a3_1[offsetof(struct s3, f1) == 2 ? 1 : -1];
38 extern int a3_2[sizeof(struct s3) == 18 ? 1 : -1];
39 extern int a3_3[__alignof(struct s3) == 2 ? 1 : -1];
warn-strlcpycat-size.c 10 char * s3; variable
23 strlcpy(s1, s3, strlen(s3)+1); // 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}}
  /external/clang/test/SemaCXX/
type-definition-in-specifier.cpp 6 struct S3;
18 struct S3 { int x; } s3; local
warn-unused-result.cpp 32 S &s3 = g3(); local
  /external/clang/test/SemaTemplate/
self-comparison.cpp 21 struct S3 {
45 S3 s3; s3.foo<1, 1>(); local
  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
37 s3 = GETU32(pt + 12) ^ rk[3];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];
94 PUTU32(ct + 12, s3);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
residu.cpp 208 Word32 s3; local
222 s3 = 0x0000800L;
234 s3 += ((Word32) * (p_coef) * *(p_input3++));
238 s3 += ((Word32) * (p_coef) * *(p_input3++));
244 s3 += (((Word32) * (p_coef)) * *(p_input3));
249 *(p_residual_ptr--) = (Word16)(s3 >> 12);
  /ndk/tests/device/test-stlport_shared-exception/jni/
vtable2.cpp 25 struct S3
27 virtual void s3 ();
30 struct S4 : public S3, virtual public S2
51 void S3::s3 () function in class:S3
93 S3 primary vtable
95 S3 offset to top
96 S3 RTTI
97 S3::s3
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
vtable2.cpp 25 struct S3
27 virtual void s3 ();
30 struct S4 : public S3, virtual public S2
51 void S3::s3 () function in class:S3
93 S3 primary vtable
95 S3 offset to top
96 S3 RTTI
97 S3::s3
    [all...]
  /external/dropbear/libtomcrypt/src/mac/pelican/
pelican.c 57 ulong32 s0, s1, s2, s3, t0, t1, t2, t3; local
63 LOAD32H(s3, pelmac->state + 12);
69 Te3(byte(s3, 0));
73 Te2(byte(s3, 1)) ^
77 Te1(byte(s3, 2)) ^
81 Te0(byte(s3, 3)) ^
85 s0 = t0; s1 = t1; s2 = t2; s3 = t3;
90 STORE32H(s3, pelmac->state + 12);
  /external/eigen/unsupported/Eigen/src/MoreVectorization/
MathFunctions.h 60 Packet4f s3=pmadd(s2,z1, p4f_asin4); local
61 Packet4f s4=pmadd(s3,z1, p4f_asin5);
74 Packet4f s3=pmadd(s2,z2, p4f_asin4); local
75 Packet4f s4=pmadd(s3,z2, p4f_asin5);
  /external/icu4c/test/intltest/
sdtfmtts.cpp 234 UnicodeString s3; local
236 s3 = pat.toLocalizedPattern(s3, status);
240 logln("Extracted pattern is " + s3);
241 if(s3 != p1) {
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_en.cpp 279 Word32 s3; /* Intermediate energy accumulator */ local
294 s3 = 0;
311 s3 = amrnb_fxp_mac_16_by_16bb((Word32) tmp2, (Word32) code[i], s3);/* Compute scalar product */
323 s3 = s3 << 1;
354 /* s3 is not always sum of squares */
355 exp = norm_l(s3);
356 frac_en[2] = (Word16)(L_shl(s3, exp, pOverflow) >> 16);
609 Word32 s3; /* Intermediate energy accumulator * local
    [all...]
  /external/clang/test/Analysis/
stack-addr-ps.cpp 19 int &s3 = s2; // expected-note {{binding reference variable 's3' here}} local
20 return s3; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}}
  /external/clang/test/PCH/
cxx-templates.cpp 33 S3<int> s3; local
34 s3.m();

Completed in 443 milliseconds

1 2 3 4 5 6