HomeSort by relevance Sort by last modified time
    Searched refs:I1 (Results 51 - 75 of 106) sorted by null

1 23 4 5

  /external/llvm/lib/IR/
Instruction.cpp 267 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
269 assert(I1->getOpcode() == I2->getOpcode() &&
272 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
278 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
284 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
286 if (const CallInst *CI = dyn_cast<CallInst>(I1))
290 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
294 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
296 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
298 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
oi_stddefs.h 87 OI_UINT32 I1; /**< most significant 32 bits */
96 OI_INT32 I1; /**< most significant 32 bits as a signed integer */
105 OI_UINT32 I1; /**< most significant 32 bits */
116 OI_INT32 I1; /**< most significant 32 bits as a signed integer */
  /external/clang/test/Index/
complete-method-decls.m 78 @interface I1
84 @implementation I1
  /external/clang/test/Sema/
warn-duplicate-enum.c 56 I1 = -1,
  /external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
main.cpp 59 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) :
60 first_cool(I1,F1,C1),
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 314 Expr::const_child_iterator I1 = Expr1->child_begin();
316 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) {
317 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects))
319 ++I1;
324 if (I1 != Expr1->child_end())
418 CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin();
420 while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) {
421 if (!isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects))
423 ++I1;
    [all...]
  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 221 CompilationUnit I1 = new CompilationUnit("a.I1",
223 "public interface I1 extends I0{}");
226 "public class C0 implements I1{}");
229 "public class C0 implements I1, I0{}");
230 IApi fromApi = convert(I0, I1, C0);
231 IApi toApi = convert(I0, I1, C0_I1);
244 CompilationUnit I1 = new CompilationUnit("a.I",
248 IApi toApi = convert(I1,Number);
261 CompilationUnit I1 = new CompilationUnit("a.I",
    [all...]
  /external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
main.cpp 31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) :
32 first_cool(I1,F1,C1),
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 550 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size(); local
551 while (i1 != e1 && i2 != e2) {
552 if ((*V1)[i1].Value == (*V2)[i2].Value)
554 if ((*V1)[i1].Value < (*V2)[i2].Value)
555 ++i1;
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-function-1.cpp 161 template<typename T, int I1, int I2> struct Switch1 {
164 case I1: return y; // expected-note{{previous}}
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 82 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
87 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
  /external/llvm/lib/CodeGen/
BranchFolding.cpp 315 MachineBasicBlock::iterator &I1,
317 I1 = MBB1->end();
321 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
322 --I1; --I2;
324 while (I1->isDebugValue()) {
325 if (I1==MBB1->begin()) {
328 // I1==DBG at begin; I2==DBG at begin
333 // I1==DBG at begin; I2==non-DBG, or first of DBGs not at begin
336 --I1;
338 // I1==first (untested) non-DBG preceding known matc
    [all...]
  /external/valgrind/main/none/tests/ppc32/
testVMX.c 396 signed int Iaux;//, I1, I2;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_facade.hpp 406 template <class I1, class I2>
410 iterator_difference<I1>
413 is_convertible<I2,I1>
414 , typename I1::difference_type
419 is_convertible<I2,I1>
420 , iterator_difference<I1>
  /external/llvm/include/llvm/ADT/
APInt.h 552 static bool isSameValue(const APInt &I1, const APInt &I2) {
553 if (I1.getBitWidth() == I2.getBitWidth())
554 return I1 == I2;
556 if (I1.getBitWidth() > I2.getBitWidth())
557 return I1 == I2.zext(I1.getBitWidth());
559 return I1.zext(I2.getBitWidth()) == I2;
    [all...]
  /external/clang/test/Misc/
diag-template-diffing.cpp 40 class I1{};
41 void set1(I1<1,2,3,4,2,3,4,3>) {};
43 set1(I1<1,2,3,4,2,2,4,3,7>());
46 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I1<[5 * ...], 2, [2 * ...], 7>' to 'I1<[5 * ...], 3, [2 * ...], (no argument)>' for 1st argument
48 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I1<1, 2, 3, 4, 2, 2, 4, 3, 7>' to 'I1<1, 2, 3, 4, 2, 3, 4, 3, (no argument)>' for 1st argument
51 // CHECK-ELIDE-TREE: I1<
58 // CHECK-NOELIDE-TREE: I1<
962 int i1, i2, i3; member in namespace:VariadicDefault
    [all...]
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 39 template<typename I1, typename I2>
42 typedef typename conditional<(sizeof(I1)<sizeof(I2)), I2, I1>::type type;
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 514 /// range of [I1,I2] INCLUSIVE. I1 and I2 must be in the same basic block.
515 bool canInstructionRangeModify(const Instruction &I1, const Instruction &I2,
519 bool canInstructionRangeModify(const Instruction &I1, const Instruction &I2,
521 return canInstructionRangeModify(I1, I2, Location(Ptr, Size));
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 526 /// instructions to consider are all of the instructions in the range of [I1,I2]
527 /// INCLUSIVE. I1 and I2 must be in the same basic block.
529 bool AliasAnalysis::canInstructionRangeModify(const Instruction &I1,
532 assert(I1.getParent() == I2.getParent() &&
534 BasicBlock::const_iterator I = &I1;
  /external/valgrind/main/callgrind/
sim.c 94 static cache_t2 I1, D1, LL;
318 if ( cachesim_ref( &I1, a, size) == Hit ) return L1_Hit;
426 if ( cachesim_ref( &I1, a, size) == Hit ) return L1_Hit;
533 if ( cachesim_ref( &I1, a, size) == Hit ) return L1_Hit;
554 if ( cachesim_ref( &I1, a, size) == Hit ) return L1_Hit;
684 /* for I1/D1 caches */
    [all...]
  /external/ppp/pppd/
md4.c 46 #define I1 0xefcdab89
109 MDp->buffer[1] = I1;
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 102 cl::desc("Don't try to vectorize boolean (i1) values"));
    [all...]
SLPVectorizer.cpp 303 Instruction *I1 = dyn_cast<Instruction>(V1);
309 AllSameOpcodeRight = I1;
320 if(P1->getOpcode() != I1->getOpcode())
341 if (I0 && I1) {
342 if(!i && I0->getOpcode() > I1->getOpcode()) {
343 Left.push_back(I1);
345 } else if (i && I0->getOpcode() > I1->getOpcode() && Right[i-1] != I1) {
347 Left.push_back(I1);
349 } else if (i && I0->getOpcode() == I1->getOpcode() && Right[i-1] == I0)
    [all...]
  /external/qemu/disas/
i386.c 356 #define I1 { OP_I, const_1_mode }
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 445 Instruction *I1 = dyn_cast<Instruction>(I->getOperand(1));
447 if (!I0 || !I1 || I0->getOpcode() != I1->getOpcode())
458 Value *Opnd1_0 = I1->getOperand(0);
459 Value *Opnd1_1 = I1->getOperand(1);
491 if (I1) Flags &= I->getFastMathFlags();
    [all...]

Completed in 1040 milliseconds

1 23 4 5