HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 751 - 775 of 1019) sorted by null

<<31323334353637383940>>

  /dalvik/vm/analysis/
DexVerify.cpp 76 * - opcode of first instruction begins at index 0
104 Opcode opcode = dexOpcodeFromCodeUnit(*insns); local
105 if (opcode == OP_NEW_INSTANCE)
107 if (opcode == OP_MONITOR_ENTER)
230 * - opcode of first instruction begins at index 0
820 switch (decInsn.opcode) {
    [all...]
VfyBasicBlock.cpp 409 Opcode opcode = dexOpcodeFromCodeUnit(meth->insns[idx]); local
410 OpcodeFlags opFlags = dexGetFlagsFromOpcode(opcode);
445 } else if (opcode == OP_NOP && isDataChunk(meth->insns[nextIdx])) {
  /external/qemu/target-mips/
translate.c 45 /* indirect opcode tables */
117 /* Reserved major opcode */
465 uint32_t opcode; member in struct:DisasContext
507 ctx->pc, ctx->opcode , ## __VA_ARGS__)
516 MIPS_DEBUG("Invalid %s %03x %03x %03x", op, ctx->opcode >> 26, \
517 ctx->opcode & 0x3F, ((ctx->opcode >> 16) & 0x1F)); \
835 opcode tables. */
    [all...]
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 437 // Check the opcode.
438 return instruction1.opcode == instruction2.opcode ||
439 instruction1.canonicalOpcode() == instruction2.opcode;
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 603 * Returns whether the given instruction opcode represents a dup or swap
606 private boolean isDupOrSwap(int opcode)
608 return opcode >= InstructionConstants.OP_DUP &&
609 opcode <= InstructionConstants.OP_SWAP;
  /bionic/libc/netbsd/resolv/
res_mkquery.c 118 int op, /* opcode of query */
147 hp->opcode = op;
157 * perform opcode specific processing
  /external/bluetooth/bluedroid/stack/include/
avrc_api.h 150 typedef void (tAVRC_MSG_CBACK) (UINT8 handle, UINT8 label, UINT8 opcode,
smp_api.h 156 UINT16 opcode; member in struct:__anon3417
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
extensions.py 228 common.is_control_opcode(frame.opcode)):
252 if frame.rsv1 != 1 or common.is_control_opcode(frame.opcode):
592 if frame.rsv1 == 1 and not common.is_control_opcode(frame.opcode):
598 common.is_control_opcode(frame.opcode)):
  /external/freetype/src/truetype/
ttinterp.h 149 FT_Byte opcode; /* current opcode */ member in struct:TT_ExecContextRec_
150 FT_Int length; /* length of current opcode */
297 /* is the main function of the TrueType opcode interpreter. */
  /external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_nci.c 395 UINT16 opcode, old_opcode; local
412 STREAM_TO_UINT16 (opcode, p);
415 if (opcode == old_opcode)
432 p += 1; /* skip opcode */
436 STREAM_TO_UINT16 (vcs_cplt_params.opcode, p);
  /external/libnfc-nci/src/nfa/int/
nfa_snep_int.h 270 void nfa_snep_send_msg (UINT8 opcode, UINT8 dlink);
  /external/llvm/lib/Target/R600/
AMDGPUInstrInfo.h 125 // Helper functions that check the opcode for status information
144 virtual bool isMov(unsigned opcode) const = 0;
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 77 uint32_t opcode; member in struct:__anon11876::Expression
81 Expression(uint32_t o = ~2U) : opcode(o) { }
84 if (opcode != other.opcode)
86 if (opcode == ~0U || opcode == ~1U)
96 return hash_combine(Value.opcode, Value.type,
112 Expression create_cmp_expression(unsigned Opcode,
121 uint32_t lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Pred,
163 e.opcode = I->getOpcode()
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 161 switch (simpleInstruction.opcode)
244 switch (variableInstruction.opcode)
303 switch (constantInstruction.opcode)
335 switch (branchInstruction.opcode)
    [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerProxy.h 79 virtual void dataProcessing(int opcode, int cc, int s,
  /external/bluetooth/bluedroid/bta/av/
bta_av_act.c 245 static void bta_av_rc_msg_cback(UINT8 handle, UINT8 label, UINT8 opcode, tAVRC_MSG *p_msg)
253 APPL_TRACE_ERROR2("rc_msg handle: %d opcode=0x%x", handle, opcode);
255 APPL_TRACE_EVENT2("bta_av_rc_msg_cback handle: %d opcode=0x%x", handle, opcode);
258 if (opcode == AVRC_OP_VENDOR && p_msg->vendor.p_vendor_data != NULL)
264 else if (opcode == AVRC_OP_PASS_THRU && p_msg->pass.p_pass_data != NULL)
276 p_buf->opcode = opcode;
870 if (p_data->rc_msg.opcode == AVRC_OP_PASS_THRU
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelLowering.cpp 43 const char *MBlazeTargetLowering::getTargetNodeName(unsigned Opcode) const {
44 switch (Opcode) {
358 // true/false values to select between, and a branch opcode to use.
494 unsigned opcode = 0; local
497 case MBlaze::LAA32: opcode = MBlaze::ADDIK; break;
498 case MBlaze::LAS32: opcode = MBlaze::RSUBIK; break;
499 case MBlaze::LAD32: opcode = MBlaze::AND; break;
500 case MBlaze::LAO32: opcode = MBlaze::OR; break;
501 case MBlaze::LAX32: opcode = MBlaze::XOR; break;
502 case MBlaze::LAN32: opcode = MBlaze::AND; break
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/XME/
xme.c 237 int opcode, event, error; local
242 if (!XQueryExtension(dpy, XIGMISC_PROTOCOL_NAME, &opcode, &event, &error))
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DebugInfoBuilder.java 250 private void emitSpecialOpcode(Output out, byte opcode) {
251 out.writeByte(opcode);
  /sdk/emulator/qtools/
thumbdis.cpp 31 * "decode()" function that maps a thumb instruction to an opcode enum.
42 #include "opcode.h"
48 Opcode opcode; member in struct:thumb_opcode
253 Opcode decode_insn_thumb(uint32_t given)
259 return insn->opcode;
  /external/bluetooth/bluedroid/stack/btm/
btm_devctl.c     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
CodeItem.java 439 if (fixGoto && instruction.opcode == Opcode.GOTO) {
448 new Instruction20t(Opcode.GOTO_16, codeAddress));
453 new Instruction30t(Opcode.GOTO_32, codeAddress));
458 } else if (fixGoto && instruction.opcode == Opcode.GOTO_16) {
464 new Instruction30t(Opcode.GOTO_32, codeAddress));
468 } else if (fixJumbo && instruction.opcode.hasJumboOpcode()) {
488 instruction.opcode.name + " instruction at address " + currentCodeAddress);
514 if (instruction.opcode == Opcode.PACKED_SWITCH || instruction.opcode == Opcode.SPARSE_SWITCH)
    [all...]
  /external/v8/src/arm/
deoptimizer-arm.cc 206 ASSERT(Translation::BEGIN == static_cast<Translation::Opcode>(value));
227 Translation::Opcode opcode = local
228 static_cast<Translation::Opcode>(iterator.Next());
229 ASSERT(Translation::BEGIN == opcode);
230 USE(opcode);
236 opcode = static_cast<Translation::Opcode>(iterator.Next());
237 USE(opcode);
238 ASSERT(Translation::JS_FRAME == opcode);
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 157 RelocInfo rinfo(call_address + 1, // 1 after the call opcode.
294 ASSERT(Translation::BEGIN == static_cast<Translation::Opcode>(value));
318 Translation::Opcode opcode = local
319 static_cast<Translation::Opcode>(iterator.Next());
320 ASSERT(Translation::BEGIN == opcode);
321 USE(opcode);
327 opcode = static_cast<Translation::Opcode>(iterator.Next());
328 USE(opcode);
    [all...]

Completed in 2070 milliseconds

<<31323334353637383940>>