Home
last modified time | relevance | path

Searched refs:NOP (Results 1 – 25 of 162) sorted by relevance

1234567

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
DMutableMethodImplementationTest.java48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testTryEndAtEndOfMethod()
49 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testTryEndAtEndOfMethod()
50 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testTryEndAtEndOfMethod()
51 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testTryEndAtEndOfMethod()
52 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testTryEndAtEndOfMethod()
73 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testNewLabelByAddress()
74 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testNewLabelByAddress()
75 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testNewLabelByAddress()
76 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testNewLabelByAddress()
77 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testNewLabelByAddress()
[all …]
DPayloadAlignmentTest.java53 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testPayloadAlignmentRemoveNop()
82 Assert.assertEquals(instruction.getOpcode(), Opcode.NOP); in testPayloadAlignmentAddNop()
97 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testPayloadAlignmentRemoveNopWithReferent()
135 Opcode.NOP, in testPayloadAlignmentAddNopWithReferent()
164 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testPackedSwitchAlignment()
165 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testPackedSwitchAlignment()
168 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testPackedSwitchAlignment()
171 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testPackedSwitchAlignment()
180 Opcode.NOP, in testPackedSwitchAlignment()
182 Opcode.NOP, in testPackedSwitchAlignment()
[all …]
DFixGotoTest.java25 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGotoToGoto16()
48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGotoToGoto32()
71 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGoto16ToGoto32()
94 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGotoCascading()
101 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGotoCascading()
107 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGotoCascading()
DFixOffsetsTest.java61 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixOffsets()
69 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixOffsets()
82 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixOffsets()
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-thai.cc86 NOP, enumerator
142 case NOP: return u; in thai_pua_shape()
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}},
210 /*B0*/ {{NOP,B0}, {NOP,B2}, {NOP, B0}},
211 /*B1*/ {{NOP,B1}, {RD, B2}, {NOP, B1}},
212 /*B2*/ {{NOP,B2}, {SD, B2}, {NOP, B2}},
245 thai_action_t action = above_edge.action != NOP ? above_edge.action : below_edge.action; in do_thai_pua_shaping()
/external/clang/test/Sema/
Dunused-expr.c129 #define NOP(a) (a) macro
139 NOP((long)foo(i, j)); // expected-warning {{expression result unused}} in t11()
141 NOP((long)0); // expected-warning {{expression result unused}} in t11()
143 NOP((t3(i), fn2())); // expected-warning {{ignoring return value}} in t11()
145 NOP((foo(i, j) ? 0 : t3(i), 1)); // expected-warning {{expression result unused}} in t11()
147 NOP((foo(i, j), 1)); // expected-warning {{expression result unused}} in t11()
151 #undef NOP
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationShrinker.java58 private static final int NOP = InstructionConstants.OP_NOP & 0xff; field in EvaluationShrinker
1081 NOP : // ...O -> ...O in fixedDup()
1082 stackEntryNecessary1 ? NOP : // ...O -> ...O in fixedDup()
1084 NOP; // ... -> ... in fixedDup()
1105 stackEntryNecessary0 ? NOP : // ...XO -> ...XO in fixedDup_x1()
1107 NOP : // ...X -> ...X in fixedDup_x1()
1119 NOP : // ...O -> ...O in fixedDup_x1()
1121 stackEntryNecessary0 ? NOP : // ...O -> ...O in fixedDup_x1()
1123 NOP; // ... -> ... in fixedDup_x1()
1147 stackEntryNecessary0 ? NOP : // ...XYO -> ...XYO in fixedDup_x2()
[all …]
/external/javassist/src/main/javassist/convert/
DTransformNew.java62 iterator.writeByte(NOP, pos); in transform()
63 iterator.writeByte(NOP, pos + 1); in transform()
64 iterator.writeByte(NOP, pos + 2); in transform()
65 iterator.writeByte(NOP, pos + 3); in transform()
/external/clang/test/SemaCXX/
Dwarn-unused-value.cpp27 #define NOP(x) (x) macro
29 NOP(f1 == f2); // expected-warning {{expression result unused}} in b()
31 #undef NOP
Darray-bounds-system-header.cpp8 NOP(a[3] = 5); // expected-warning {{array index 3}} in test_system_header_macro()
/external/javassist/src/main/javassist/compiler/
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, LSHR, ISHR,
944 ARSHIFT, NOP, NOP, LUSHR, IUSHR };
1016 if (op != NOP) { in atArithBinExpr()
1297 /* double */ NOP, D2F, D2L, D2I,
1298 /* float */ F2D, NOP, F2L, F2I,
1299 /* long */ L2D, L2F, NOP, L2I,
[all …]
/external/libpcap/
Doptimize.c73 #define NOP -1 macro
336 if (c == NOP) in atomuse()
379 if (s->code == NOP) in atomdef()
420 if (s->s.code == NOP) in compute_local_ud()
573 s->code = NOP; in vstore()
646 while (s != 0 && s->s.code == NOP) in this_op()
783 s->s.code = NOP; in opt_peep()
784 add->s.code = NOP; in opt_peep()
785 tax->s.code = NOP; in opt_peep()
815 last->s.code = NOP; in opt_peep()
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DFrameSnapshot.java27 private static final FrameSnapshot NOP = new FrameSnapshot(null, null); field in FrameSnapshot
49 return NOP; in create()
/external/llvm/test/MC/X86/AlignedBundling/
Dlong-nop-pad.s16 # To align this group to a bundle end, we need a 15-byte NOP and a 12-byte NOP.
/external/libedit/src/
Dvi.c64 if (el->el_chared.c_vcmd.action != NOP) { in cv_action()
73 el->el_chared.c_vcmd.action = NOP; in cv_action()
162 if (el->el_chared.c_vcmd.action != NOP) { in vi_prev_big_word()
187 if (el->el_chared.c_vcmd.action != NOP) { in vi_prev_word()
211 if (el->el_chared.c_vcmd.action != NOP) { in vi_next_big_word()
235 if (el->el_chared.c_vcmd.action != NOP) { in vi_next_word()
477 if (el->el_chared.c_vcmd.action != NOP) { in vi_end_big_word()
501 if (el->el_chared.c_vcmd.action != NOP) { in vi_end_word()
547 el->el_chared.c_vcmd.action = NOP; in vi_command_mode()
574 if (el->el_chared.c_vcmd.action != NOP) { in vi_zero()
[all …]
Dcommon.c213 if (el->el_chared.c_vcmd.action != NOP) { in ed_move_to_end()
240 if (el->el_chared.c_vcmd.action != NOP) { in ed_move_to_beg()
287 el->el_chared.c_vcmd.action == NOP)) in ed_next_char()
295 if (el->el_chared.c_vcmd.action != NOP) { in ed_next_char()
321 if (el->el_chared.c_vcmd.action != NOP) { in ed_prev_word()
344 if (el->el_chared.c_vcmd.action != NOP) { in ed_prev_char()
712 el->el_chared.c_vcmd.action = NOP; in ed_search_prev_history()
780 el->el_chared.c_vcmd.action = NOP; in ed_search_next_history()
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRegOps.java33 public static final int NOP = 1; field in RegOps
314 case NOP: return "nop"; in opName()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DClassProbesAdapterTest.java163 mv.visitInsn(Opcodes.NOP); in writeMethodWithBranch()
178 mv.visitInsn(Opcodes.NOP); in writeMethodWithTableSwitch()
193 mv.visitInsn(Opcodes.NOP); in writeMethodWithLookupSwitch()
/external/libavc/common/arm/
Dih264_platform_macros.h94 #define NOP(nop_cnt) {UWORD32 nop_i; for (nop_i = 0; nop_i < nop_cnt; nop_i++) asm("nop");} macro
112 #define NOP(nop_cnt) \ macro
/external/libavc/common/armv8/
Dih264_platform_macros.h94 #define NOP(nop_cnt) {UWORD32 nop_i; for (nop_i = 0; nop_i < nop_cnt; nop_i++) asm("nop");} macro
112 #define NOP(nop_cnt) \ macro
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv10_context.c221 BEGIN_NV04(push, NV04_GRAPH(3D, NOP), 1); in nv10_hwctx_init()
245 BEGIN_NV04(push, NV04_GRAPH(3D, NOP), 1); in nv10_hwctx_init()
266 BEGIN_NV04(push, NV04_GRAPH(3D, NOP), 1); in nv10_hwctx_init()
270 BEGIN_NV04(push, NV04_GRAPH(3D, NOP), 1); in nv10_hwctx_init()
364 BEGIN_NV04(push, NV04_GRAPH(3D, NOP), 1); in nv10_hwctx_init()
/external/clang/test/SemaCXX/Inputs/
Darray-bounds-system-header.h11 #define NOP(x) (x) macro
/external/llvm/lib/Target/NVPTX/
DNVPTXVector.td19 NVPTXInst sInst=NOP>
240 NVPTXInst sInst=NOP> :
247 NVPTXRegClass regclass2, NVPTXInst sInst=NOP> :
254 NVPTXInst sInst=NOP> :
260 NVPTXInst i64op=NOP, NVPTXInst i32op=NOP, NVPTXInst
261 i16op=NOP, NVPTXInst i8op=NOP> {
279 NVPTXInst f64=NOP, NVPTXInst f32=NOP,
280 NVPTXInst f32_ftz=NOP> {
294 NVPTXInst i64op=NOP, NVPTXInst i32op=NOP,
295 NVPTXInst i16op=NOP, NVPTXInst i8op=NOP> {
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DDexBackedUnknownInstruction.java43 super(dexFile, Opcode.NOP, instructionStart); in DexBackedUnknownInstruction()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
DImmutableUnknownInstruction.java44 super(Opcode.NOP); in ImmutableUnknownInstruction()

1234567