Searched defs:S2 (Results 151 - 166 of 166) sorted by relevance

1234567

/external/llvm/lib/IR/
H A DLegacyPassManager.cpp1160 enum PassDebuggingString S2,
1179 switch (S2) {
1159 dumpPassInfo(Pass *P, enum PassDebuggingString S1, enum PassDebuggingString S2, StringRef Msg) argument
H A DInstructions.cpp1639 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, argument
1647 Op<1>() = S2;
1652 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, argument
1660 Op<1>() = S2;
1741 BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2, argument
1744 assert(S1->getType() == S2->getType() &&
1746 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
1749 BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2, argument
1752 BinaryOperator *Res = Create(Op, S1, S2, Name);
3039 Value *S1, Value *S2,
3038 Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2, const Twine &Name, Instruction *InsertBefore) argument
3059 Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2, const Twine &Name, BasicBlock *InsertAtEnd) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp350 static BinaryOperator *CreateAdd(Value *S1, Value *S2, const Twine &Name, argument
353 return BinaryOperator::CreateAdd(S1, S2, Name, InsertBefore);
356 BinaryOperator::CreateFAdd(S1, S2, Name, InsertBefore);
362 static BinaryOperator *CreateMul(Value *S1, Value *S2, const Twine &Name, argument
365 return BinaryOperator::CreateMul(S1, S2, Name, InsertBefore);
368 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore);
/external/clang/test/CXX/drs/
H A Ddr0xx.cpp92 struct S2 : S1 {}; struct in namespace:dr7::PR16370
93 struct S3 : S2 {};
94 struct S4 : virtual S2 {};
/external/clang/test/CodeGenCXX/
H A Dmangle.cpp64 template <int N> struct S2 {}; struct
66 void f(S2<100>) {}
69 void f(S2<-100>) {}
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx1y.cpp797 struct S2 { struct in namespace:VirtualFromBase
812 constexpr X<X<S2>> xxs2;
813 constexpr X<S2> *q = const_cast<X<X<S2>>*>(&xxs2);
814 static_assert(q->f() == sizeof(X<S2>), ""); // expected-error {{constant expression}} expected-note {{virtual function call}}
H A Dtypo-correction.cpp261 struct S2 { struct in namespace:b6956809_test1
262 S2();
270 const S2 s;
271 s.methodd(&b); // expected-error-re{{no member named 'methodd' in 'b6956809_test1::S2'{{$}}}}
/external/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp1249 MachineOperand &S1 = MI->getOperand(2), &S2 = MI->getOperand(3); local
1250 if (!S1.isReg() && !S2.isReg())
1261 MachineOperand &S1 = CI->getOperand(2), &S2 = CI->getOperand(3); local
1287 if (!Done && S2.isReg()) {
1288 RegisterRef RS = S2;
1291 Done = coalesceRegisters(RD, RegisterRef(S2));
/external/pcre/dist/sljit/
H A DsljitNativeSPARC_common.c105 #define S2(s2) (reg_map[s2]) macro
445 FAIL_IF(push_inst(compiler, SAVE | D(SLJIT_SP) | S1(SLJIT_SP) | S2(TMP_REG1), UNMOVABLE_INS));
483 return push_inst(compiler, RESTORE | D(SLJIT_R0) | S1(src) | S2(0), UNMOVABLE_INS);
536 | S1(arg & REG_MASK) | ((arg & OFFS_REG_MASK) ? S2(OFFS_REG(arg)) : IMM(argw)),
626 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot);
627 FAIL_IF(push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot));
628 return push_inst(compiler, ADD | D(base) | S1(base) | S2(arg2), DR(base));
790 FAIL_IF(push_inst(compiler, (op == SLJIT_UMUL ? UMUL : SMUL) | D(SLJIT_R0) | S1(SLJIT_R0) | S2(SLJIT_R1), DR(SLJIT_R0)));
804 FAIL_IF(push_inst(compiler, OR | D(TMP_REG2) | S1(0) | S2(SLJIT_R0), DR(TMP_REG2)));
805 FAIL_IF(push_inst(compiler, (op == SLJIT_UDIV ? UDIV : SDIV) | D(SLJIT_R0) | S1(SLJIT_R0) | S2(SLJIT_R
[all...]
/external/webp/src/enc/
H A Dquant.c321 const VP8SegmentInfo* const S2) {
322 return (S1->quant_ == S2->quant_) && (S1->fstrength_ == S2->fstrength_);
335 const VP8SegmentInfo* const S2 = &enc->dqm_[s2]; local
336 if (SegmentsAreEquivalent(S1, S2)) {
320 SegmentsAreEquivalent(const VP8SegmentInfo* const S1, const VP8SegmentInfo* const S2) argument
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc126 typedef signed short S2; // NOLINT typedef
233 EXPECT_POISONED(*GetPoisoned<S2>());
242 EXPECT_POISONED(*GetPoisoned<S2>());
243 EXPECT_POISONED(*GetPoisoned<S2>());
244 EXPECT_POISONED(*GetPoisoned<S2>());
303 ReturnPoisoned<S2>();
308 EXPECT_POISONED(ReturnPoisoned<S2>());
480 S2 p2;
481 S2 ok2 = 1;
2727 S2
[all...]
/external/llvm/include/llvm/IR/
H A DInstructions.h1588 void init(Value *C, Value *S1, Value *S2) { argument
1589 assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select");
1592 Op<2>() = S2;
1595 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, argument
1599 init(C, S1, S2);
1602 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, argument
1606 init(C, S1, S2);
1612 static SelectInst *Create(Value *C, Value *S1, Value *S2, argument
1615 return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1617 static SelectInst *Create(Value *C, Value *S1, Value *S2, argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp2040 *S2 = cast<Instruction>(S->second); local
2042 Value *O1 = S1->getOperand(o), *O2 = S2->getOperand(o);
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1355 // S = (S1 & S2) | (V1 & S2) | (S1 & V2)
1357 Value *S2 = getShadow(&I, 1); local
1362 V2 = IRB.CreateIntCast(V2, S2->getType(), false);
1364 Value *S1S2 = IRB.CreateAnd(S1, S2);
1365 Value *V1S2 = IRB.CreateAnd(V1, S2);
1377 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2)
1379 Value *S2 = getShadow(&I, 1); local
1384 V2 = IRB.CreateIntCast(V2, S2
1699 Value *S2 = IRB.CreateICmp(I.getPredicate(), local
1773 Value *S2 = getShadow(&I, 1); local
2079 Value *S2 = IRB.CreateICmpNE(S, getCleanShadow(S)); local
2086 Value *S2 = IRB.CreateICmpNE(S, getCleanShadow(S)); local
2103 Value *S2 = getShadow(&I, 1); local
2165 Value *S2 = getShadow(&I, 1); local
[all...]
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 476 milliseconds

1234567