HomeSort by relevance Sort by last modified time
    Searched refs:NOP (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
NOP.java 21 * NOP - Do nothing
25 public class NOP extends Instruction {
27 public NOP() {
28 super(org.apache.bcel.Const.NOP, (short) 1);
  /external/clang/test/SemaCXX/
array-bounds-system-header.cpp 8 NOP(a[3] = 5); // expected-warning {{array index 3}}
warn-unused-value.cpp 32 #define NOP(x) (x)
34 NOP(f1 == f2); // expected-warning {{expression result unused}}
36 #undef NOP
  /external/clang/test/SemaCXX/Inputs/
array-bounds-system-header.h 11 #define NOP(x) (x)
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
MutableMethodImplementationTest.java 48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
49 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
50 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
51 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
52 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
73 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
74 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
75 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
76 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
77 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
    [all...]
PayloadAlignmentTest.java 53 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
82 Assert.assertEquals(instruction.getOpcode(), Opcode.NOP);
97 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
135 Opcode.NOP,
164 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
165 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
168 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
171 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
180 Opcode.NOP,
182 Opcode.NOP,
    [all...]
FixGotoTest.java 25 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
71 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
94 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
101 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
107 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
InstructionHandleTestCase.java 29 final InstructionHandle ih = InstructionHandle.getInstructionHandle(new NOP());// have to start with a valid non BI
37 final InstructionHandle ih = InstructionHandle.getInstructionHandle(new NOP());// have to start with a valid non BI
39 ih.setInstruction(new NOP());
45 final InstructionHandle ih = InstructionHandle.getInstructionHandle(new NOP());// have to start with a valid non BI
59 final InstructionHandle ih = il.append(InstructionConst.NOP);
BranchHandleTestCase.java 46 bh.setInstruction(new NOP());
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
FinallyFilterTest.java 64 m.visitInsn(Opcodes.NOP);
67 m.visitInsn(Opcodes.NOP); // finally block
72 m.visitInsn(Opcodes.NOP);
74 m.visitInsn(Opcodes.NOP); // finally block
81 m.visitInsn(Opcodes.NOP); // finally block
108 m.visitInsn(Opcodes.NOP); // try body
110 m.visitInsn(Opcodes.NOP); // finally body
116 m.visitInsn(Opcodes.NOP); // catch body
118 m.visitInsn(Opcodes.NOP); // finally body
125 m.visitInsn(Opcodes.NOP); // finally bod
    [all...]
EnumFilterTest.java 35 m.visitInsn(Opcodes.NOP);
47 m.visitInsn(Opcodes.NOP);
59 m.visitInsn(Opcodes.NOP);
71 m.visitInsn(Opcodes.NOP);
83 m.visitInsn(Opcodes.NOP);
SyntheticFilterTest.java 35 m.visitInsn(Opcodes.NOP);
47 m.visitInsn(Opcodes.NOP);
59 m.visitInsn(Opcodes.NOP);
SynchronizedFilterTest.java 51 m.visitInsn(Opcodes.NOP);
97 m.visitInsn(Opcodes.NOP);
100 m.visitInsn(Opcodes.NOP);
106 m.visitInsn(Opcodes.NOP);
109 m.visitInsn(Opcodes.NOP);
114 m.visitInsn(Opcodes.NOP);
141 m.visitInsn(Opcodes.NOP);
  /external/clang/test/Sema/
unused-expr.c 129 #define NOP(a) (a)
139 NOP((long)foo(i, j)); // expected-warning {{expression result unused}}
141 NOP((long)0); // expected-warning {{expression result unused}}
143 NOP((t3(i), fn2())); // expected-warning {{ignoring return value}}
145 NOP((foo(i, j) ? 0 : t3(i), 1)); // expected-warning {{expression result unused}}
147 NOP((foo(i, j), 1)); // expected-warning {{expression result unused}}
151 #undef NOP
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Arm/
CpuPause.asm 34 NOP
35 NOP
36 NOP
37 NOP
38 NOP
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
InstructionTest.java 31 instruction = new Instruction(new InsnNode(Opcodes.NOP), 123);
36 final InsnNode node = new InsnNode(Opcodes.NOP);
58 new InsnNode(Opcodes.NOP), 122);
65 final Instruction i = new Instruction(new InsnNode(Opcodes.NOP), 122);
70 final Instruction s1 = new Instruction(new InsnNode(Opcodes.NOP), 123);
78 final Instruction s2 = new Instruction(new InsnNode(Opcodes.NOP), 124);
97 final Instruction i1 = new Instruction(new InsnNode(Opcodes.NOP), 123);
99 final Instruction i2 = new Instruction(new InsnNode(Opcodes.NOP), 123);
109 final Instruction first = new Instruction(new InsnNode(Opcodes.NOP), 0);
112 final Instruction insn = new Instruction(new InsnNode(Opcodes.NOP),
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-thai.cc 86 NOP,
142 case NOP: return u;
183 /*T0*/ {{NOP,T3}, {NOP,T0}, {SD, T3}},
184 /*T1*/ {{SL, T2}, {NOP,T1}, {SDL,T2}},
185 /*T2*/ {{NOP,T3}, {NOP,T2}, {SL, T3}},
186 /*T3*/ {{NOP,T3}, {NOP,T3}, {NOP,T3}}
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedUnknownInstruction.java 43 super(dexFile, Opcode.NOP, instructionStart);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableUnknownInstruction.java 44 super(Opcode.NOP);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
FrameSnapshot.java 27 private static final FrameSnapshot NOP = new FrameSnapshot(null, null);
45 * does not contain stackmap information a "NOP" IFrame is returned.
49 return NOP;
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/X86/AlignedBundling/
pad-bundle-groups.s 20 # We'll need a 6-byte NOP before this group
21 # CHECK: a: nop
30 # CHECK: 1a: nop
41 # And here we'll need a 10-byte NOP + 1-byte NOP
43 # CHECK: 35: nop
44 # CHECK: 3f: nop
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/
LeonPasses.cpp 31 // some earlier versions of the LEON processor line. NOP instructions must
35 // This pass inserts a NOP after any LD or LDF instruction.
54 BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP));
111 // exist for some earlier versions of the LEON processor line. Five NOP
146 BuildMI(MBB, MBBI, DL, TII.get(SP::NOP));
150 BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP));
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OddSpacer.java 24 * Pseudo-instruction which either turns into a {@code nop} or
50 out.writeShort(InsnFormat.codeUnit(DalvOps.NOP, 0));
73 return "nop // spacer";
  /dalvik/dx/src/com/android/dx/dex/code/
OddSpacer.java 25 * Pseudo-instruction which either turns into a {@code nop} or
51 out.writeShort(InsnFormat.codeUnit(Opcodes.NOP, 0));
74 return "nop // spacer";
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 32 /** {@code nop()} */
33 public static final int NOP = 1;
314 case NOP: return "nop";

Completed in 1316 milliseconds

1 2 3 4 5 6 7 8 910