Home
last modified time | relevance | path

Searched refs:I1 (Results 1 – 25 of 127) sorted by relevance

123456

/external/qemu/
Dmips-dis.c1110 #define I1 INSN_ISA1 macro
1206 {"nop", "", 0x00000000, 0xffffffff, 0, INSN2_ALIAS, I1 }, /* sll */
1209 {"li", "t,j", 0x24000000, 0xffe00000, WR_t, INSN2_ALIAS, I1 }, /* addiu */
1210 {"li", "t,i", 0x34000000, 0xffe00000, WR_t, INSN2_ALIAS, I1 }, /* ori */
1211 {"li", "t,I", 0, (int) M_LI, INSN_MACRO, 0, I1 },
1212 {"move", "d,s", 0, (int) M_MOVE, INSN_MACRO, 0, I1 },
1214 {"move", "d,s", 0x00000021, 0xfc1f07ff, WR_d|RD_s, INSN2_ALIAS, I1 },/* addu */
1215 {"move", "d,s", 0x00000025, 0xfc1f07ff, WR_d|RD_s, INSN2_ALIAS, I1 },/* or */
1216 {"b", "p", 0x10000000, 0xffff0000, UBD, INSN2_ALIAS, I1 },/* beq 0,0 */
1217 {"b", "p", 0x04010000, 0xffff0000, UBD, INSN2_ALIAS, I1 },/* bgez 0 */
[all …]
/external/clang/test/SemaCXX/
Dms-interface.cpp3 __interface I1 { variable
5 I1();
7 ~I1();
44 __interface I4 : I1, I2 {
51 __interface I5 : private I1 {
/external/clang/test/CodeGenObjC/
Dauto-property-synthesize-protocol.m22 @interface I1<P1> interface
26 @implementation I1 // expected-warning {{auto property synthesis will not synthesize property decla… implementation
31 // CHECK: define internal i32 @"\01-[I1 auto_req_window]"(
32 // CHECK: define internal void @"\01-[I1 setAuto_req_window:]"(
34 // CHECK-NOT: define internal i32 @"\01-[I1 no_auto_opt_window]"(
35 // CHECK-NOT: define internal void @"\01-[I1 setNo_auto_opt_window:]"(
D2009-01-21-invalid-debug-info.m6 // info for I1* to be generated, but referring to an invalid compile
10 @interface I1 @end interface
12 @implementation I1 implementation
16 I1 *f1(void) { return 0; }
Ddebug-info-class-extension.m5 @interface I1 interface
8 @implementation I1 { implementation
14 void foo(I1 *iptr) {}
Ddebug-info-property3.m4 @interface I1 interface
8 @implementation I1 implementation
12 void foo(I1 *iptr) {}
Ddebug-info-property4.m10 @interface I1 interface
14 @implementation I1 implementation
17 void foo(I1 *ptr) {}
Ddebug-info-crash.m18 @interface I1 @end interface
19 @implementation I1 implementation
21 // CHECK: @"\01-[I1 im0]"
/external/llvm/include/llvm/ADT/
DAPSInt.h268 static bool isSameValue(const APSInt &I1, const APSInt &I2) { in isSameValue() argument
269 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()) in isSameValue()
270 return I1 == I2; in isSameValue()
273 if (I1.getBitWidth() > I2.getBitWidth()) in isSameValue()
274 return isSameValue(I1, I2.extend(I1.getBitWidth())); in isSameValue()
275 else if (I2.getBitWidth() > I1.getBitWidth()) in isSameValue()
276 return isSameValue(I1.extend(I2.getBitWidth()), I2); in isSameValue()
280 if (I1.isSigned()) { in isSameValue()
281 if (I1.isNegative()) in isSameValue()
284 return APSInt(I1, true) == I2; in isSameValue()
[all …]
/external/clang/test/ASTMerge/Inputs/
Dcategory1.m1 @interface I1 interface
5 @interface I1 (Cat1) interface in Cat1
10 @interface I1 () interface in int
15 @interface I1 (Cat2) interface in Cat2
Dcategory2.m3 @interface I1 interface
7 @interface I1 (Cat1) interface in Cat1
12 @interface I1 () interface in Int
17 @interface I1 (Cat2) interface in Cat2
/external/clang/test/Index/
Dcomplete-categories.m4 @interface I1 @end interface
8 @interface I1(Cat1) @end interface in Cat1
9 @interface I1(Cat2) @end interface in Cat2
10 @interface I1(Cat3) @end interface in Cat3
18 @implementation I1(Cat2) @end implementation in Cat2
19 @implementation I1(Cat3) @end implementation in Cat3
/external/clang/test/CodeCompletion/
Dnamespace.cpp5 namespace I1 { } namespace
6 namespace I4 = I1;
8 namespace I1 { } namespace
Dusing-namespace.cpp8 namespace I1 { } namespace
9 namespace I4 = I1;
11 namespace I1 { } namespace
Dnamespace-alias.cpp8 namespace I1 { } namespace
9 namespace I4 = I1;
11 namespace I1 { } namespace
Dusing.cpp8 namespace I1 { } namespace
9 namespace I4 = I1;
11 namespace I1 { } namespace
/external/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm27 @interface I1 @end interface
33 operator I1*() const { return (I1*)_value; }
37 bool CompareI1(I1* obj) { return *this == obj; }
/external/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp171 for (SetVector<Value *>::iterator I1 = Pointers.begin(), E = Pointers.end(); in runOnFunction() local
172 I1 != E; ++I1) { in runOnFunction()
174 Type *I1ElTy = cast<PointerType>((*I1)->getType())->getElementType(); in runOnFunction()
177 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runOnFunction()
182 switch (AA.alias(*I1, I1Size, *I2, I2Size)) { in runOnFunction()
184 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent()); in runOnFunction()
187 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent()); in runOnFunction()
190 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2, in runOnFunction()
194 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent()); in runOnFunction()
/external/clang/test/SemaObjC/
Dno-ivar-access-control.m36 @interface I1 { interface
42 @interface I1() { interface in int
48 @implementation I1 implementation
60 @interface DER : I1
Dsynthesized-ivar.m20 @interface I1 { interface
26 @interface I1() { interface in int
32 @implementation I1 implementation
42 @interface DER : I1
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp177 bool isEquivalentOperation(const Instruction *I1,
286 bool FunctionComparator::isEquivalentOperation(const Instruction *I1, in isEquivalentOperation() argument
292 if (I1->getOpcode() != I2->getOpcode() || in isEquivalentOperation()
293 I1->getNumOperands() != I2->getNumOperands() || in isEquivalentOperation()
294 !isEquivalentType(I1->getType(), I2->getType()) || in isEquivalentOperation()
295 !I1->hasSameSubclassOptionalData(I2)) in isEquivalentOperation()
300 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i) in isEquivalentOperation()
301 if (!isEquivalentType(I1->getOperand(i)->getType(), in isEquivalentOperation()
306 if (const LoadInst *LI = dyn_cast<LoadInst>(I1)) in isEquivalentOperation()
311 if (const StoreInst *SI = dyn_cast<StoreInst>(I1)) in isEquivalentOperation()
[all …]
/external/clang/test/ARCMT/
DGC.m.result15 @interface I1
18 @implementation I1
87 void test2(id p, __strong I1 *ap[]) {
88 for (__strong I1 *specRule in p) {
DGC.m15 @interface I1 interface
18 @implementation I1 implementation
92 void test2(id p, __strong I1 *ap[]) {
93 for (__strong I1 *specRule in p) {
/external/clang/test/CXX/class/class.nest/
Dp3.cpp11 class I1;
13 class I1 { }; class in example::E
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/
Dp6-0x.cpp9 typedef int I1, I2; typedef
15 q->I1::~I2(); in f()

123456