HomeSort by relevance Sort by last modified time
    Searched refs:I1 (Results 26 - 50 of 84) sorted by null

12 3 4

  /external/valgrind/main/callgrind/tests/
simwork2.stderr.exp 7 I1 misses:
9 I1 miss rate:
simwork3.stderr.exp 7 I1 misses:
9 I1 miss rate:
threads-use.stderr.exp 7 I1 misses:
9 I1 miss rate:
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 188 for (SetVector<Value *>::iterator I1 = Pointers.begin(), E = Pointers.end();
189 I1 != E; ++I1) {
191 Type *I1ElTy = cast<PointerType>((*I1)->getType())->getElementType();
194 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) {
199 switch (AA.alias(*I1, I1Size, *I2, I2Size)) {
201 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent());
204 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent());
207 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2,
211 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent())
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
has_nothrow_assign.cpp 59 struct I1
61 I1& operator=(I1&) throw(int) { throw int(); return *this; }
62 I1& operator=(const I1&) throw() { return *this; }
146 assert (NTEST (I1));
has_nothrow_copy-1.cpp 59 struct I1
61 I1(I1&) throw(int) { throw int(); }
62 I1(const I1&) throw() { }
136 assert (NTEST (I1));
  /ndk/tests/device/test-stlport_static-exception/jni/
has_nothrow_assign.cpp 59 struct I1
61 I1& operator=(I1&) throw(int) { throw int(); return *this; }
62 I1& operator=(const I1&) throw() { return *this; }
146 assert (NTEST (I1));
has_nothrow_copy-1.cpp 59 struct I1
61 I1(I1&) throw(int) { throw int(); }
62 I1(const I1&) throw() { }
136 assert (NTEST (I1));
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 18 struct I1 : B1 {
29 struct D1 : I1 {
  /external/clang/test/Index/
complete-properties.m 4 @interface I1
14 @interface I2 : I1
  /art/test/044-proxy/src/
NarrowingTest.java 21 interface I1 {
25 interface I2 extends I1 {
54 I1 proxyAsParent = proxy;
55 System.out.println("Invoking foo using I1 type: " + proxyAsParent.foo());
  /external/llvm/lib/Target/Hexagon/
HexagonCopyToCombine.cpp 83 MachineInstr *findPairable(MachineInstr *I1, bool &DoInsertAtI1);
87 void combine(MachineInstr *I1, MachineInstr *I2,
90 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2,
232 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
234 bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1,
243 // It is not safe to move I1 and I2 into one combine if I2 has a true
244 // dependence on I1.
245 if (I2UseReg && I1->modifiesRegister(I2UseReg, TRI))
250 // First try to move I2 towards I1.
252 // A reverse_iterator instantiated like below starts before I2, and I1
    [all...]
  /external/qemu/
mips-dis.c     [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 268 static bool isSameValue(const APSInt &I1, const APSInt &I2) {
269 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
270 return I1 == I2;
273 if (I1.getBitWidth() > I2.getBitWidth())
274 return isSameValue(I1, I2.extend(I1.getBitWidth()));
275 else if (I2.getBitWidth() > I1.getBitWidth())
276 return isSameValue(I1.extend(I2.getBitWidth()), I2);
280 if (I1.isSigned())
    [all...]
  /external/clang/test/Sema/
compound-literal.c 30 struct Incomplete* I1 = &(struct Incomplete){1, 2, 3}; // expected-error {{variable has incomplete type}}
warn-duplicate-enum.c 56 I1 = -1,
  /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/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 186 bool isEquivalentOperation(const Instruction *I1,
294 bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
300 if (I1->getOpcode() != I2->getOpcode() ||
301 I1->getNumOperands() != I2->getNumOperands() ||
302 !isEquivalentType(I1->getType(), I2->getType()) ||
303 !I1->hasSameSubclassOptionalData(I2))
308 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
309 if (!isEquivalentType(I1->getOperand(i)->getType(),
314 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
319 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 538 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size(); local
539 while (i1 != e1 && i2 != e2) {
540 if ((*V1)[i1].Value == (*V2)[i2].Value)
542 if ((*V1)[i1].Value < (*V2)[i2].Value)
543 ++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}}
  /external/llvm/lib/CodeGen/
BranchFolding.cpp 307 MachineBasicBlock::iterator &I1,
309 I1 = MBB1->end();
313 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
314 --I1; --I2;
316 while (I1->isDebugValue()) {
317 if (I1==MBB1->begin()) {
320 // I1==DBG at begin; I2==DBG at begin
325 // I1==DBG at begin; I2==non-DBG, or first of DBGs not at begin
328 --I1;
330 // I1==first (untested) non-DBG preceding known matc
    [all...]
  /external/openfst/src/test/
algo_test.h 321 VectorFst<Arc> I1(T);
322 Invert(&I1);
324 CHECK(Equiv(I1, I2));
330 VectorFst<Arc> I1(T);
332 Invert(&I1);
333 Project(&I1, PROJECT_OUTPUT);
334 CHECK(Equiv(P1, I1));
340 VectorFst<Arc> I1(T);
342 Invert(&I1);
343 Project(&I1, PROJECT_INPUT)
    [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/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...]

Completed in 673 milliseconds

12 3 4