Searched refs:NOP (Results 1 - 25 of 59) sorted by relevance

123

/external/clang/test/SemaCXX/
H A Darray-bounds-system-header.cpp8 NOP(a[3] = 5); // expected-warning {{array index 3}}
H A Dwarn-unused-value.cpp27 #define NOP(x) (x) macro
29 NOP(f1 == f2); // expected-warning {{expression result unused}}
31 #undef NOP macro
/external/clang/test/SemaCXX/Inputs/
H A Darray-bounds-system-header.h11 #define NOP(x) (x) macro
/external/javassist/src/main/javassist/convert/
H A DTransformNew.java45 * NOP
46 * NOP
62 iterator.writeByte(NOP, pos);
63 iterator.writeByte(NOP, pos + 1);
64 iterator.writeByte(NOP, pos + 2);
65 iterator.writeByte(NOP, pos + 3);
H A DTransformAccessArrayField.java144 iterator.writeByte(NOP, pos);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DInstructionIterator.java54 if (opcode == Opcode.NOP) {
59 instruction = new Instruction10x(Opcode.NOP, insns, insnsPosition);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DArrayDataPseudoInstruction.java50 super(Opcode.NOP);
61 super(Opcode.NOP);
146 if (opcode != Opcode.NOP) {
147 throw new RuntimeException("The opcode for an ArrayDataPseudoInstruction must be NOP");
H A DPackedSwitchDataPseudoInstruction.java51 super(Opcode.NOP);
63 super(Opcode.NOP);
152 if (opcode != Opcode.NOP) {
153 throw new RuntimeException("The opcode for a PackedSwitchDataPseudoInstruction must be NOP");
H A DSparseSwitchDataPseudoInstruction.java51 super(Opcode.NOP);
71 super(Opcode.NOP);
171 if (opcode != Opcode.NOP) {
172 throw new RuntimeException("The opcode for a SparseSwitchDataPseudoInstruction must be NOP");
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DOddSpacer.java51 out.writeShort(InsnFormat.codeUnit(Opcodes.NOP, 0));
H A DRopToDop.java60 // Opcodes.NOP
227 MAP.put(Rops.NOP, Dops.NOP);
500 return Dops.NOP;
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegOps.java33 public static final int NOP = 1; field in class:RegOps
314 case NOP: return "nop";
/external/javassist/src/main/javassist/compiler/
H A DCodeGen.java939 '|', NOP, NOP, LOR, IOR,
940 '^', NOP, NOP, LXOR, IXOR,
941 '&', NOP, NOP, LAND, IAND,
942 LSHIFT, NOP, NOP, LSHL, ISHL,
943 RSHIFT, NOP, NOP, LSH
[all...]
H A DJavac.java245 value = Opcode.NOP;
254 if (value != Opcode.NOP)
/external/libpcap/
H A Doptimize.c59 #define NOP -1 macro
371 if (c == NOP)
415 if (s->code == NOP)
457 if (s->s.code == NOP)
617 s->code = NOP;
683 while (s != 0 && s->s.code == NOP)
822 s->s.code = NOP;
823 add->s.code = NOP;
824 tax->s.code = NOP;
854 last->s.code = NOP;
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DOpcode.java217 int NOP = 0; field in interface:Opcode
H A DCodeAttribute.java387 newcode[i] = NOP;
388 newcode[i + 1] = NOP;
H A DCodeIterator.java30 * it should be overwritten with <code>NOP</code>.
471 * The inserted gap is filled with NOP. The gap length may be
488 * The inserted gap is filled with NOP. The gap length may be
510 * The inserted gap is filled with NOP. The gap length may be
527 * The inserted gap is filled with NOP. The gap length may be
564 * are also updated. The inserted gap is filled with NOP.
583 * inserted is still the same instruction. It is not <code>NOP</code>
695 newcode[i] = NOP;
789 * The inserted gap is filled with NOP. gapLength may be extended to
864 newcode[j++] = NOP;
[all...]
/external/javassist/src/main/javassist/
H A DCtConstructor.java385 iterator.writeByte(Opcode.NOP, pos);
386 iterator.writeByte(Opcode.NOP, pos + 1);
/external/javassist/src/main/javassist/expr/
H A DNewExpr.java174 iterator.writeByte(NOP, i);
H A DExpr.java295 iterator.writeByte(NOP, pos + i);
/external/tcpdump/
H A Dtelnet.h60 #define NOP 241 /* nop */ macro
72 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DMethodDefinition.java245 if (instructions[index].opcode == Opcode.NOP) {
260 if (instructions[index].opcode == Opcode.NOP) {
271 * @return true if the specified instruction is a NOP, and the next instruction is one of the variable sized
275 if (instruction.getInstruction().opcode != Opcode.NOP ||
/external/openssl/crypto/bn/asm/
H A Dpa-risc2.s134 NOP ; Needed to make the loop 16-byte aligned
135 NOP ; needed to make the loop 16-byte aligned
138 NOP
309 NOP
468 NOP
602 NOP
678 NOP
855 NOP ;offset 0xa38
/external/llvm/lib/Target/Hexagon/InstPrinter/
H A DHexagonInstPrinter.cpp60 Nop.setOpcode (Hexagon::NOP);

Completed in 364 milliseconds

123