Home
last modified time | relevance | path

Searched refs:INSTRUCTION (Results 1 – 25 of 58) sorted by relevance

123

/external/smali/smalidea/src/main/java/org/jf/smalidea/
DSmaliTokens.java207 tokenColors.put("INSTRUCTION_FORMAT10t", SmaliHighlightingColors.INSTRUCTION);
208 tokenColors.put("INSTRUCTION_FORMAT10x", SmaliHighlightingColors.INSTRUCTION);
209 tokenColors.put("INSTRUCTION_FORMAT10x_ODEX", SmaliHighlightingColors.INSTRUCTION);
210 tokenColors.put("INSTRUCTION_FORMAT11n", SmaliHighlightingColors.INSTRUCTION);
211 tokenColors.put("INSTRUCTION_FORMAT11x", SmaliHighlightingColors.INSTRUCTION);
212 tokenColors.put("INSTRUCTION_FORMAT12x", SmaliHighlightingColors.INSTRUCTION);
213 tokenColors.put("INSTRUCTION_FORMAT12x_OR_ID", SmaliHighlightingColors.INSTRUCTION);
214 tokenColors.put("INSTRUCTION_FORMAT20bc", SmaliHighlightingColors.INSTRUCTION);
215 tokenColors.put("INSTRUCTION_FORMAT20t", SmaliHighlightingColors.INSTRUCTION);
216 tokenColors.put("INSTRUCTION_FORMAT21c_FIELD", SmaliHighlightingColors.INSTRUCTION);
[all …]
DSmaliHighlightingColors.java64 public static final TextAttributesKey INSTRUCTION = createTextAttributesKey( field in SmaliHighlightingColors
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstrainedOps.def14 #ifndef INSTRUCTION
15 #define INSTRUCTION(N,A,R,I,D)
20 #define FUNCTION INSTRUCTION
25 #define CMP_INSTRUCTION INSTRUCTION
38 INSTRUCTION(FAdd, 2, 1, experimental_constrained_fadd, FADD)
39 INSTRUCTION(FSub, 2, 1, experimental_constrained_fsub, FSUB)
40 INSTRUCTION(FMul, 2, 1, experimental_constrained_fmul, FMUL)
41 INSTRUCTION(FDiv, 2, 1, experimental_constrained_fdiv, FDIV)
42 INSTRUCTION(FRem, 2, 1, experimental_constrained_frem, FREM)
43 INSTRUCTION(FPExt, 1, 0, experimental_constrained_fpext, FP_EXTEND)
[all …]
/external/llvm-project/llvm/include/llvm/IR/
DConstrainedOps.def23 #ifndef INSTRUCTION
24 #define INSTRUCTION(N,A,R,I)
27 // DAG_INSTRUCTION is treated like an INSTRUCTION if the DAG node isn't used.
29 #define DAG_INSTRUCTION(N,A,R,I,D) INSTRUCTION(N,A,R,I)
34 #define FUNCTION(N,A,R,I) INSTRUCTION(N,A,R,I)
103 #undef INSTRUCTION
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
DNodeComparatorTest.java38 CounterEntity.INSTRUCTION).sort( in testSort()
48 .on(CounterEntity.INSTRUCTION); in testSecond1()
59 .on(CounterEntity.INSTRUCTION); in testSecond2()
DCoverageNodeImplTest.java17 import static org.jacoco.core.analysis.ICoverageNode.CounterEntity.INSTRUCTION;
67 parent.getCounter(INSTRUCTION)); in testIncrement()
DCounterComparatorTest.java91 .on(CounterEntity.INSTRUCTION); in testNodeComparator1()
/external/smali/smalidea/testData/
DInvalidInstruction.txt30 PsiElement(INSTRUCTION)
79 PsiElement(INSTRUCTION)
126 PsiElement(INSTRUCTION)
162 PsiElement(INSTRUCTION)
200 PsiElement(INSTRUCTION)
DInvalidMethodReference.txt30 PsiElement(INSTRUCTION)
73 PsiElement(INSTRUCTION)
117 PsiElement(INSTRUCTION)
167 PsiElement(INSTRUCTION)
218 PsiElement(INSTRUCTION)
DMissingDotDot.txt25 PsiElement(INSTRUCTION)
50 PsiElement(INSTRUCTION)
/external/proguard/src/proguard/optimize/peephole/
DBranchTargetFinder.java64 private static final short INSTRUCTION = 1 << 0; field in BranchTargetFinder
98 return (instructionMarks[offset] & INSTRUCTION) != 0; in isInstruction()
458 instructionMarks[offset] |= INSTRUCTION; in visitSimpleInstruction()
483 instructionMarks[offset] |= INSTRUCTION; in visitConstantInstruction()
530 instructionMarks[offset] |= INSTRUCTION; in visitVariableInstruction()
683 instructionMarks[offset] |= INSTRUCTION | BRANCH_ORIGIN; in markBranchOrigin()
/external/llvm-project/llvm/docs/AMDGPU/
DAMDGPUAsmGFX1011.rst41 **INSTRUCTION** **DST** **SRC0** **SRC1** **MODIFIERS**
51 …**INSTRUCTION** **DST** **SRC0** **SRC1** **MODIFIERS…
61 **INSTRUCTION** **DST** **SRC0** **SRC1**
71 …**INSTRUCTION** **DST** **SRC0** **SRC1** **SRC2** …
DAMDGPUAsmGFX906.rst41 **INSTRUCTION** **DST** **SRC0** **SRC1** **MODIFIERS**
54 **INSTRUCTION** **DST** **SRC0** **SRC1** **MODIFIERS**
64 …**INSTRUCTION** **DST** **SRC0** **SRC1** **SRC2** …
DAMDGPUAsmGFX908.rst41 …**INSTRUCTION** **DST** **SRC0** **SRC1** **SRC2** …
51 …**INSTRUCTION** **SRC0** **SRC1** **SRC2** **SRC3** …
61 **INSTRUCTION** **DST** **SRC0** **SRC1** **MODIFIERS**
83 **INSTRUCTION** **DST** **SRC0** **SRC1** **MODIFIERS**
93 …**INSTRUCTION** **DST** **SRC0** **SRC1** **SRC2** …
DAMDGPUAsmGFX904.rst41 …**INSTRUCTION** **DST** **SRC0** **SRC1** **SRC2** …
DAMDGPUAsmGFX900.rst41 …**INSTRUCTION** **DST** **SRC0** **SRC1** **SRC2** …
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIntrinsicInst.cpp152 #define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \ in isUnaryOp() macro
163 #define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \ in isTernaryOp() macro
172 #define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC, DAGN) \ in classof() macro
/external/llvm-project/llvm/lib/IR/
DIntrinsicInst.cpp152 #define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \ in isUnaryOp() macro
163 #define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \ in isTernaryOp() macro
172 #define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \ in classof() macro
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
DLimit.java42 entities.put(CounterEntity.INSTRUCTION, "instructions"); in entities.put() argument
69 this.entity = CounterEntity.INSTRUCTION; in Limit()
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
DLimitTest.java40 assertEquals(CounterEntity.INSTRUCTION, limit.getEntity()); in testDefaults()
105 limit.setCounter(CounterEntity.INSTRUCTION.name()); in testInstruction()
107 assertEquals(CounterEntity.INSTRUCTION, limit.getEntity()); in testInstruction()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DICoverageNode.java51 INSTRUCTION, enumConstant
DCoverageNodeImpl.java130 case INSTRUCTION: in getCounter()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/html/
DHTMLFormatter.java135 t.add("Missed Instructions", Styles.BAR, new BarColumn(CounterEntity.INSTRUCTION, in createTable()
138 new PercentageColumn(CounterEntity.INSTRUCTION, locale), false); in createTable()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
DClassRowWriter.java27 private static final CounterEntity[] COUNTERS = { CounterEntity.INSTRUCTION,
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/
DSmaliElementTypes.java72 public static final SmaliCompositeElementType INSTRUCTION = field in SmaliElementTypes

123