Searched defs:s4 (Results 1 - 25 of 113) sorted by relevance

12345

/external/chromium_org/v8/test/webkit/
H A Dregexp-zero-length-alternatives.js32 var s4 = "abab"; variable
252 shouldBe('s4.match(re31)', '["abab"]');
259 shouldBe('s4.match(re32)', '["abab"]');
/external/clang/test/Sema/
H A Darm-layout.c45 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);
H A Dpragma-pack-5.c40 struct s4 { struct
45 extern int check[sizeof(struct s4) == 4 ? 1 : -1];
46 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
H A Dpragma-pack-and-options-align.c43 struct s4 { struct
49 extern int a[sizeof(struct s4) == 8 ? 1 : -1];
H A Dno-documentation-warn-tagdecl-specifier.c22 /** @return s4 Test 4 */
23 struct s4* f4(void);
24 struct s4 { int is; }; struct
43 struct s4 *f8(struct s8 *p);
H A Dpragma-align-mac68k.c41 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];
H A Dwarn-strlcpycat-size.c15 } s4, **s5; variable in typeref:struct:__anon19192
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}}
H A Dwarn-strncat-size.c21 } s4, **s5; variable in typeref:struct:__anon19193
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/SemaTemplate/
H A Dself-comparison.cpp46 S4<1> s4; s4.foo<1>(); local
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stackdepot_test.cc73 uptr s4[] = {1, 3, 2, 5}; local
78 ids[3] = StackDepotPut(s4, ARRAY_SIZE(s4));
/external/clang/test/CodeGen/
H A Dbitfield.c73 struct s4 { struct
H A Dpragma-pack-1.c54 } s4; variable in typeref:struct:S4
H A Dx86_32-arguments-win32.c27 struct s4 { struct
31 struct s4 f4_1(void) { while (1) {} }
H A Darm64-aapcs-arguments.c20 // CHECK: void @test3(float %s0_s3.0, float %s0_s3.1, float %s0_s3.2, float %s0_s3.3, float %s4, [3 x float], [2 x double] %sp.coerce, [2 x double] %sp16.coerce)
22 void test3(HFA s0_s3, float s4, HFA sp, HFA sp16) { argument
H A Dppc64-struct-onefloat.c6 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
H A Dregparm-struct.c54 struct s4 { struct
60 __attribute__((regparm(3))) void f7(struct s4 a, int b);
63 struct s4 x = {41, 42, 43, 44};
/external/eigen/unsupported/Eigen/src/MoreVectorization/
H A DMathFunctions.h61 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
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_opts_mips_dsp.cpp164 int s0, s1, s2, s3, s4, s5, s6, s7; local
189 "lhu %[s4], 24(%[xx]) \n\t"
205 "lbux %[s4], %[s4](%[srcAddr]) \n\t"
221 "sll %[s4], %[s4], 2 \n\t"
238 "lwx %[s4], %[s4](%[table]) \n\t"
255 "sw %[s4], 48(%[colors]) \n\t"
275 "lhu %[s4], 2
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Duri.js40 var s4 = String.fromCharCode(cc4); variable
59 assertEquals('%D5%95', encodeURI(s4));
70 assertEquals(cc4, decodeURI(encodeURI(s4)).charCodeAt(0));
/external/clang/test/Analysis/
H A Dmalloc-overflow.c22 struct s4 struct
27 void * f4(struct s4 *s)
32 void * f5(struct s4 *s)
34 struct s4 s2 = *s;
/external/clang/test/SemaCXX/
H A Delaborated-type-specifier.cpp22 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}} argument
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
H A Dwarn-unused-result.cpp33 const S &s4 = g1(); local
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DHex.java169 public static String s4(int v) { method in class:Hex
/external/elfutils/0.153/libcpu/
H A Dmemory-access.h88 int32_t s4; member in union:unaligned
129 return up->s4;
/external/smali/util/src/main/java/org/jf/util/
H A DHex.java181 public static String s4(int v) { method in class:Hex

Completed in 966 milliseconds

12345