HomeSort by relevance Sort by last modified time
    Searched refs:S2 (Results 376 - 400 of 560) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenCXX/
microsoft-abi-static-initializers.cpp 61 static S S2;
  /external/clang/test/OpenMP/
distribute_parallel_for_private_messages.cpp 12 class S2 {
16 S2() : a(0) {}
18 const S2 b;
19 const S2 ba[5];
distribute_parallel_for_simd_aligned_messages.cpp 105 class S2 {
108 S2():a(0) { }
110 const S2 b; // expected-note 1 {{'b' defined here}}
111 const S2 ba[5];
288 #pragma omp distribute parallel for simd aligned (a, b) // expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S1'}} expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S2'}}
distribute_parallel_for_simd_linear_messages.cpp 101 class S2 {
104 S2():a(0) { }
106 const S2 b; // expected-note 2 {{'b' defined here}}
107 const S2 ba[5];
distribute_parallel_for_simd_private_messages.cpp 12 class S2 {
16 S2() : a(0) {}
18 const S2 b;
19 const S2 ba[5];
distribute_simd_aligned_messages.cpp 105 class S2 {
108 S2():a(0) { }
110 const S2 b; // expected-note 1 {{'b' defined here}}
111 const S2 ba[5];
288 #pragma omp distribute simd aligned (a, b) // expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S1'}} expected-error {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S2'}}
distribute_simd_linear_messages.cpp 101 class S2 {
104 S2():a(0) { }
106 const S2 b; // expected-note 2 {{'b' defined here}}
107 const S2 ba[5];
distribute_simd_private_messages.cpp 12 class S2 {
16 S2() : a(0) {}
18 const S2 b;
19 const S2 ba[5];
simd_linear_messages.cpp 72 class S2 {
75 S2():a(0) { }
77 const S2 b; // expected-note 2 {{'b' defined here}}
78 const S2 ba[5];
taskloop_simd_linear_messages.cpp 72 class S2 {
75 S2():a(0) { }
77 const S2 b; // expected-note 2 {{'b' defined here}}
78 const S2 ba[5];
parallel_for_simd_ast_print.cpp 114 template<int LEN> struct S2 {
128 // S2<4>::func is called below in main.
129 // CHECK: template <int LEN = 4> struct S2 {
176 S2<4>::func(0,arr,arr,arr);
simd_ast_print.cpp 117 template<int LEN> struct S2 {
131 // S2<4>::func is called below in main.
132 // CHECK: template <int LEN = 4> struct S2 {
178 S2<4>::func(0,arr,arr,arr);
  /external/clang/test/Parser/
MicrosoftExtensions.c 68 struct __declspec(12) S2 {}; /* expected-error {{__declspec attributes must be an identifier or string literal}} */
cxx0x-ambig.cpp 50 struct S2 {
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
5 extern "C" void *memcpy(void *s1, const void *s2, unsigned n);
6 extern "C" void *memcmp(void *s1, const void *s2, unsigned n);
15 struct S2 { int x; } s2; variable in typeref:struct:S2
125 memset(&s2, 0, sizeof s2);
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 294 concat(const std::string &S1, const std::string &S2, char Delim = ' ') {
297 S = S2;
298 else if (!S2.empty())
299 S = S1 + Delim + S2;
  /external/clang/test/PCH/
cxx-templates.h 114 struct S2 {
118 extern template class S2<true>;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCExpr.cpp 278 if (const MipsMCExpr *S2 = dyn_cast<const MipsMCExpr>(S1->getSubExpr())) {
279 if (S1->getKind() == MEK_NEG && S2->getKind() == MEK_GPREL) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
libiberty.h 361 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2)))
  /toolchain/binutils/binutils-2.25/include/
libiberty.h 364 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2)))
  /external/pcre/dist2/src/sljit/
sljitNativeSPARC_common.c 109 #define S2(s2) (reg_map[s2])
111 #define S2A(s2) (s2)
441 FAIL_IF(push_inst(compiler, SAVE | D(SLJIT_SP) | S1(SLJIT_SP) | S2(TMP_REG1), UNMOVABLE_INS));
472 return push_inst(compiler, RESTORE | D(SLJIT_R0) | S1(src) | S2(0), UNMOVABLE_INS);
525 | S1(arg & REG_MASK) | ((arg & OFFS_REG_MASK) ? S2(OFFS_REG(arg)) : IMM(argw)),
615 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot);
616 FAIL_IF(push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot))
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.cpp 185 case Mips::S2:
201 bool SaveS2 = Reserved[Mips::S2];
208 MIB.addReg(Mips::S2);
231 bool SaveS2 = Reserved[Mips::S2];
251 MIB.addReg(Mips::S2, RegState::Define);
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 67 const SCEV *S2 = SE.getSCEV(V2);
71 const SCEV *P2 = SE.getAddExpr(S2, S2);
257 auto *S2 = SE.getSCEV(PN);
264 EXPECT_EQ(S1, S2);
  /libcore/ojluni/src/main/java/sun/misc/
FloatingDecimal.java 517 int S2, S5; // powers of 2 and powers of 5, respectively, in S
524 S2 = S5 + nTinyBits;
539 int common2factor = Math.min( B2, S2 );
541 S2 -= common2factor;
559 S2 -= M2;
594 int tenSbits = S2+1 + (( (S5+1) < N_5_BITS.length )? N_5_BITS[(S5+1)] : ( (S5+1)*3 ));
599 int s = FDBigInteger.SMALL_5_POW[S5] << S2;
653 long s = FDBigInteger.LONG_5_POW[S5] << S2;
710 FDBigInteger Sval = FDBigInteger.valueOfPow52(S5, S2);
717 FDBigInteger tenSval = FDBigInteger.valueOfPow52(S5 + 1, S2 + shiftBias + 1); //Sval.mult( 10 )
    [all...]
  /art/compiler/utils/mips64/
managed_register_mips64_test.cc 206 EXPECT_FALSE(no_reg.Equals(Mips64ManagedRegister::FromGpuRegister(S2)));
214 EXPECT_FALSE(reg_ZERO.Equals(Mips64ManagedRegister::FromGpuRegister(S2)));
223 EXPECT_FALSE(reg_A1.Equals(Mips64ManagedRegister::FromGpuRegister(S2)));
227 Mips64ManagedRegister reg_S2 = Mips64ManagedRegister::FromGpuRegister(S2);
232 EXPECT_TRUE(reg_S2.Equals(Mips64ManagedRegister::FromGpuRegister(S2)));
240 EXPECT_FALSE(reg_F0.Equals(Mips64ManagedRegister::FromGpuRegister(S2)));
250 EXPECT_FALSE(reg_F31.Equals(Mips64ManagedRegister::FromGpuRegister(S2)));

Completed in 1417 milliseconds

<<11121314151617181920>>