/external/clang/test/SemaCXX/ |
array-bounds-system-header.cpp | 8 NOP(a[3] = 5); // expected-warning {{array index 3}}
|
warn-unused-value.cpp | 27 #define NOP(x) (x) 29 NOP(f1 == f2); // expected-warning {{expression result unused}} 31 #undef NOP
|
/external/clang/test/SemaCXX/Inputs/ |
array-bounds-system-header.h | 11 #define NOP(x) (x)
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
UnknownInstruction.java | 40 super(Opcode.NOP);
|
ArrayDataPseudoInstruction.java | 50 super(Opcode.NOP); 61 super(Opcode.NOP); 146 if (opcode != Opcode.NOP) { 147 throw new RuntimeException("The opcode for an ArrayDataPseudoInstruction must be NOP");
|
PackedSwitchDataPseudoInstruction.java | 51 super(Opcode.NOP); 63 super(Opcode.NOP); 152 if (opcode != Opcode.NOP) { 153 throw new RuntimeException("The opcode for a PackedSwitchDataPseudoInstruction must be NOP");
|
SparseSwitchDataPseudoInstruction.java | 51 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/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
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-shape-complex-thai.cc | 86 NOP, 143 case NOP: return u; 184 /*T0*/ {{NOP,T3}, {NOP,T0}, {SD, T3}}, 185 /*T1*/ {{SL, T2}, {NOP,T1}, {SDL,T2}}, 186 /*T2*/ {{NOP,T3}, {NOP,T2}, {SL, T3}}, 187 /*T3*/ {{NOP,T3}, {NOP,T3}, {NOP,T3}} [all...] |
/external/harfbuzz_ng/src/ |
hb-ot-shape-complex-thai.cc | 86 NOP, 143 case NOP: return u; 184 /*T0*/ {{NOP,T3}, {NOP,T0}, {SD, T3}}, 185 /*T1*/ {{SL, T2}, {NOP,T1}, {SDL,T2}}, 186 /*T2*/ {{NOP,T3}, {NOP,T2}, {SL, T3}}, 187 /*T3*/ {{NOP,T3}, {NOP,T3}, {NOP,T3}} [all...] |
/external/javassist/src/main/javassist/convert/ |
TransformNew.java | 45 * 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);
|
/external/llvm/test/MC/X86/AlignedBundling/ |
long-nop-pad.s | 14 # To align this group to a bundle end, we need a 15-byte NOP and a 12-byte NOP. 15 # CHECK: 0: nop 16 # CHECK-NEXT: f: nop 24 # CHECK: 20: nop 25 # CHECK-NEXT: 2f: nop 26 # CHECK-NEXT: 3e: nop
|
pad-bundle-groups.s | 18 # We'll need a 6-byte NOP before this group 19 # CHECK: a: nop 28 # CHECK: 1a: nop 39 # And here we'll need a 11-byte NOP 41 # CHECK: 35: nop
|
pad-align-to-bundle-end.s | 16 # To align this group to a bundle end, we need a 1-byte NOP. 17 # CHECK: a: nop 28 # CHECK: 1a: nop 29 # The nop sequence may be implemented as one instruction or many, but if 31 # CHECK: 20: nop
|
single-inst-bundling.s | 4 # Test simple NOP insertion for single instructions. 20 # of nop padding are inserted instead and it starts at 0x10 21 # CHECK: nop 33 # CHECK: nop
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/ |
InstructionIterator.java | 53 System.err.println(String.format("unknown opcode encountered - %x. Treating as nop.", 57 if (opcode == Opcode.NOP) { 62 instruction = new Instruction10x(Opcode.NOP, insns, insnsPosition);
|
/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";
|
SwitchData.java | 111 out.writeShort(0x100 | DalvOps.NOP); 131 out.writeShort(0x200 | DalvOps.NOP);
|
/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";
|
/external/dexmaker/src/dx/java/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";
|
/dalvik/dx/src/com/android/dx/rop/code/ |
RegOps.java | 32 /** {@code nop()} */ 33 public static final int NOP = 1; 314 case NOP: return "nop";
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
RegOps.java | 32 /** {@code nop()} */ 33 public static final int NOP = 1; 314 case NOP: return "nop";
|
/external/javassist/src/main/javassist/compiler/ |
CodeGen.java | 939 '|', NOP, NOP, LOR, IOR, 940 '^', NOP, NOP, LXOR, IXOR, 941 '&', NOP, NOP, LAND, IAND, 942 LSHIFT, NOP, NOP, LSHL, ISHL, 943 RSHIFT, NOP, NOP, LSHR, ISHR [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/ |
armVCM4P10_InterpolateLuma_Align_unsafe_s.S | 20 NOP 79 NOP
|