HomeSort by relevance Sort by last modified time
    Searched defs:s2 (Results 201 - 225 of 1994) sorted by null

1 2 3 4 5 6 7 891011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
syntax-1.s 72 s2: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
aligncomm-4.c 6 long s2 = 0; variable
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
InstructionTest.java 78 final Instruction s2 = new Instruction(new InsnNode(Opcodes.NOP), 124); local
79 s2.setPredecessor(i, 0);
80 s2.setCovered(1);
82 assertEquals(1, s2.getCoveredBranches());
  /art/test/Statics/
Statics.java 20 static final char s2 = 'a'; field in class:Statics
35 return s2;
  /external/annotation-tools/annotation-file-utilities/tests/
MemberSelectTypes.java 25 MemberSelectTypes.StaticInner s2 = (MemberSelectTypes.StaticInner) s; local
28 s2 = new MemberSelectTypes.StaticInner();
  /external/clang/test/Analysis/
explain-svals.cpp 9 struct S2 : S3 {
11 } s2[10]; member in struct:S
59 clang_analyzer_explain(&s.s2[5].y[3]); // expected-warning-re{{{{^pointer to element of type 'int' with index 3 of field 'y' of base object 'S::S3' inside element of type 'struct S::S2' with index 5 of field 's2' of parameter 's'$}}}}
60 if (!s.s2[7].x) {
61 clang_analyzer_explain(s.s2[7].x); // expected-warning-re{{{{^concrete memory address '0'$}}}}
63 clang_analyzer_explain(s.s2[7].x + 1); // expected-warning-re{{{{^concrete memory address '0'$}}}}
  /external/clang/test/CodeGen/
atomics-inlining.c 9 unsigned short s1, s2; variable
26 (void)__atomic_load(&s1, &s2, memory_order_seq_cst);
27 (void)__atomic_store(&s1, &s2, memory_order_seq_cst);
bitfield.c 49 struct s2 { struct
ppc64-struct-onefloat.c 5 typedef struct s2 { double d; } Sd; struct
13 // CHECK: %b = alloca %struct.s2, align 8
18 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s2, %struct.s2* %b, i32 0, i32 0
24 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s2, %struct.s2* %{{[a-zA-Z0-9.]+}}, i32 0, i32 0
40 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s2, %struct.s2* %p2, i32 0, i32 0
46 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s2, %struct.s2* %{{[a-zA-Z0-9.]+}}, i32 0, i32
    [all...]
x86_32-arguments-win32.c 13 struct s2 { struct
17 struct s2 f2_1(void) { while (1) {} }
  /external/clang/test/CodeGenCXX/
global-array-destruction.cpp 22 S s2; variable
  /external/clang/test/Sema/
pragma-align-mac68k.c 23 struct s2 { struct
27 extern int a2_0[offsetof(struct s2, f0) == 0 ? 1 : -1];
28 extern int a2_1[offsetof(struct s2, f1) == 2 ? 1 : -1];
29 extern int a2_2[sizeof(struct s2) == 10 ? 1 : -1];
30 extern int a2_3[__alignof(struct s2) == 2 ? 1 : -1];
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...]
warn-strncat-size.c 16 char *strncat(char *restrict s1, const char *restrict s2, size_t n);
24 char s2[200]; variable
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}}
42 strncat(s1+3, s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}}
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/
builtin-assume-aligned.cpp 47 constexpr void *s2 = __builtin_assume_aligned(x, 32, 5); variable
static-assert.cpp 29 S<int> s2; variable
  /external/eigen/test/
product_symm.cpp 34 s2 = internal::random<Scalar>(); local
39 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs1),
40 rhs13 = (s1*m1) * (s2*rhs1));
42 VERIFY_IS_APPROX(rhs12 = (s1*m2).transpose().template selfadjointView<Upper>() * (s2*rhs1),
43 rhs13 = (s1*m1.transpose()) * (s2*rhs1));
45 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().transpose() * (s2*rhs1),
46 rhs13 = (s1*m1.transpose()) * (s2*rhs1));
48 VERIFY_IS_APPROX(rhs12 = (s1*m2).conjugate().template selfadjointView<Lower>() * (s2*rhs1),
49 rhs13 = (s1*m1).conjugate() * (s2*rhs1));
51 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().conjugate() * (s2*rhs1)
    [all...]
product_trmm.cpp 40 s2 = internal::random<Scalar>(); local
54 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.transpose()), s1*triTr.conjugate() * (s2*ge_left.transpose()));
57 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.adjoint()), s1*triTr.conjugate() * (s2*ge_left.adjoint()));
61 VERIFY_IS_APPROX( (ge_xs_save + s1*triTr.conjugate() * (s2*ge_left.adjoint())).eval(), ge_xs.noalias() += (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.adjoint()) );
  /external/eigen/unsupported/Eigen/src/MoreVectorization/
MathFunctions.h 59 Packet4f s2=pmadd(s1, z1, p4f_asin3); local
60 Packet4f s3=pmadd(s2,z1, p4f_asin4);
73 Packet4f s2=pmadd(s1, z2, p4f_asin3); local
74 Packet4f s3=pmadd(s2,z2, p4f_asin4);
  /external/honggfuzz/libhfuzz/
memorycmp.c 25 static inline int _strcmp(const char* s1, const char* s2, uintptr_t addr) {
29 for (i = 0; s1[i] == s2[i]; i++) {
30 if (s1[i] == '\0' || s2[i] == '\0') {
36 return (s1[i] - s2[i]);
39 static inline int _strcasecmp(const char* s1, const char* s2, uintptr_t addr) {
43 for (i = 0; tolower(s1[i]) == tolower(s2[i]); i++) {
44 if (s1[i] == '\0' || s2[i] == '\0') {
50 return (tolower(s1[i]) - tolower(s2[i]));
53 static inline int _strncmp(const char* s1, const char* s2, size_t n, uintptr_t addr) {
62 if (s1[i] != s2[i])
128 const unsigned char* s2 = (const unsigned char*)m2; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
sdtfmtts.cpp 223 UnicodeString s2; local
224 s2 = pat.toPattern(s2);
225 logln("Extracted pattern is " + s2);
226 if(s2 != p1) {
  /external/libchrome/base/strings/
string_piece_unittest.cc 486 TypeParam s2; local
538 std::string s2; local
541 a.CopyToString(&s2);
542 ASSERT_EQ(s2.size(), 6U);
543 ASSERT_EQ(s2, "foobar");
544 b.CopyToString(&s2);
545 ASSERT_EQ(s2.size(), 7U);
546 ASSERT_EQ(s1, s2);
547 e.CopyToString(&s2);
548 ASSERT_TRUE(s2.empty())
    [all...]
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move.pass.cpp 92 APtr s2 = std::move(s); local
93 assert(s2.get() == p);
106 APtr s2 = std::move(s); local
107 assert(s2.get() == p);
110 assert(s2.get_deleter().state() == 5);
121 APtr s2 = std::move(s); local
122 assert(s2.get() == p);
126 assert(s2.get_deleter().state() == d.state());
  /external/libvpx/libvpx/third_party/libyuv/source/
scale_mips.cc 238 const uint8* s2 = s1 + stride; local
239 const uint8* s3 = s2 + stride;
251 "lw $t2, 0(%[s2]) \n" // |11|10|9|8|
255 "lw $t6, 4(%[s2]) \n" // |27|26|25|24|
277 "addiu %[s2], %[s2], 8 \n"
287 "lw $t2, 0(%[s2]) \n" // |11|10|9|8|
305 [s2] "+r" (s2),
367 "lw $t0, 0(%[src_ptr]) \n" // |S3|S2|S1|S0
572 const uint8* s2 = src_ptr + stride; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
highbd_idct32x32_135_add_neon.c 100 int32x4x2_t in[12], s1[32], s2[32], s3[32], s4[32], s5[32], s6[32], s7[32], local
135 s2[8] = multiply_shift_and_narrow_s32_dual(in[2], cospi_30_64);
136 s2[15] = multiply_shift_and_narrow_s32_dual(in[2], cospi_2_64);
138 s2[10] = multiply_shift_and_narrow_s32_dual(in[10], cospi_22_64);
139 s2[13] = multiply_shift_and_narrow_s32_dual(in[10], cospi_10_64);
141 s2[11] = multiply_shift_and_narrow_s32_dual(in[6], -cospi_26_64);
142 s2[12] = multiply_shift_and_narrow_s32_dual(in[6], cospi_6_64);
144 s2[18] = highbd_idct_sub_dual(s1[19], s1[18]);
145 s2[19] = highbd_idct_add_dual(s1[18], s1[19]);
146 s2[20] = highbd_idct_add_dual(s1[20], s1[21])
453 int32x4x2_t in[16], s1[32], s2[32], s3[32], s4[32], s5[32], s6[32], s7[32], local
    [all...]

Completed in 415 milliseconds

1 2 3 4 5 6 7 891011>>