HomeSort by relevance Sort by last modified time
    Searched defs:opcode (Results 326 - 350 of 1020) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 241 Rop opcode = insn.getOpcode(); local
248 if (opcode.getBranchingness() == Rop.BRANCH_IF) {
274 switch (opcode.getOpcode()) {
306 switch (opcode.getOpcode()) {
367 int opcode = insn.getOpcode().getOpcode(); local
404 switch (opcode) {
476 int opcode = insn.getOpcode().getOpcode(); local
481 if (opcode == RegOps.DIV || opcode == RegOps.REM) {
493 switch (opcode) {
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 282 Rop opcode = lastInsn.getOpcode(); local
284 if (opcode.getBranchingness() != Rop.BRANCH_RETURN
285 && opcode != Rops.THROW) {
  /dalvik/libdex/
InstrUtils.h 29 * See the file opcode-gen/README.txt for information about updating
33 kFmt00x = 0, // unknown format (also used for "breakpoint" opcode)
84 * Instruction width implied by an opcode's format; a value in the
92 * Opcode control flow flags, used by the verifier and JIT.
105 * Struct that includes a pointer to each of the opcode information
135 Opcode opcode; member in struct:DecodedInstruction
140 * Return the instruction width of the specified opcode, or 0 if not defined.
142 DEX_INLINE size_t dexGetWidthFromOpcode(Opcode opcode)
    [all...]
  /external/c-ares/
adig.c 416 int id, qr, opcode, aa, tc, rd, ra, rcode; local
443 opcode = DNS_HEADER_OPCODE(abuf);
462 printf("opcode: %s\n", opcodes[opcode]);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
InsnFormat.java 40 * flag to enable/disable the new extended opcode formats; meant as a
477 * Helper method to combine an opcode and a second byte of data into
480 * @param insn {@code non-null;} the instruction containing the opcode
489 int opcode = insn.getOpcode().getOpcode(); local
491 if ((opcode & 0xff) != opcode) {
492 throw new IllegalArgumentException("opcode out of range 0..255");
495 return (short) (opcode | (arg << 8));
499 * Helper method to get an extended (16-bit) opcode out of an
500 * instruction, returning it as a code unit. The opcode
508 int opcode = insn.getOpcode().getOpcode(); local
    [all...]
OutputFinisher.java 340 * <li>picking a final opcode for each instruction</li>
369 * the opcode out of each instruction into a separate array, to be
393 * opcode selections
443 * opcode selections
465 * expanded opcode and reserve registers for it.
484 * Attempts to fit the given instruction into a specific opcode,
485 * returning the opcode whose format that the instruction fits
488 * opcode as a first "best guess" and then pessimizes from there
493 * opcode; {@code null} means that no simple opcode fit
689 Dop opcode = insn.getOpcode(); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoDecoder.java 284 int opcode = bs.readByte() & 0xff; local
286 switch (opcode) {
389 if (opcode < DBG_FIRST_SPECIAL) {
391 "Invalid extended opcode encountered "
392 + opcode);
395 int adjopcode = opcode - DBG_FIRST_SPECIAL;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 242 Rop opcode = insn.getOpcode(); local
249 if (opcode.getBranchingness() == Rop.BRANCH_IF) {
275 switch (opcode.getOpcode()) {
307 switch (opcode.getOpcode()) {
368 int opcode = insn.getOpcode().getOpcode(); local
405 switch (opcode) {
477 int opcode = insn.getOpcode().getOpcode(); local
482 if (opcode == RegOps.DIV || opcode == RegOps.REM) {
494 switch (opcode) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
SsaToRop.java 283 Rop opcode = lastInsn.getOpcode(); local
285 if (opcode.getBranchingness() != Rop.BRANCH_RETURN
286 && opcode != Rops.THROW) {
  /external/javassist/src/main/javassist/bytecode/
CodeAttribute.java 35 public class CodeAttribute extends AttributeInfo implements Opcode {
444 code[where] = (byte)Opcode.LDC_W;
487 int opcode = ci.byteAt(index); local
488 if (opcode < ILOAD)
490 else if (opcode < IASTORE) {
491 if (opcode < ILOAD_0) {
493 shiftIndex8(ci, index, opcode, lessThan, delta);
495 else if (opcode < IALOAD) {
497 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD);
499 else if (opcode < ISTORE
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 31 import javassist.bytecode.Opcode;
85 public class Analyzer implements Opcode {
182 int opcode = iter.byteAt(pos); local
184 if (opcode == TABLESWITCH) {
186 } else if (opcode == LOOKUPSWITCH) {
188 } else if (opcode == RET) {
190 } else if (Util.isJumpInstruction(opcode)) {
193 if (Util.isJsr(opcode)) {
196 } else if (! Util.isGoto(opcode)) {
201 } else if (opcode != ATHROW && ! Util.isReturn(opcode))
    [all...]
Executor.java 25 import javassist.bytecode.Opcode;
32 public class Executor implements Opcode {
68 int opcode = iter.byteAt(pos); local
71 // Declared opcode in order
72 switch (opcode) {
132 evalLoad(Type.INTEGER, opcode - ILOAD_0, frame, subroutine);
138 evalLoad(Type.LONG, opcode - LLOAD_0, frame, subroutine);
144 evalLoad(Type.FLOAT, opcode - FLOAD_0, frame, subroutine);
150 evalLoad(Type.DOUBLE, opcode - DLOAD_0, frame, subroutine);
156 evalLoad(Type.OBJECT, opcode - ALOAD_0, frame, subroutine)
830 int opcode = iter.byteAt(pos); local
879 int opcode = iter.byteAt(pos + 1); local
    [all...]
  /external/kernel-headers/original/uapi/linux/
ndctl.h 53 __u32 opcode; member in struct:nd_cmd_vendor_hdr
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_vertprog.c 375 const struct rc_opcode_info *info = rc_get_opcode_info(vpi->Opcode);
395 (vpi->Opcode != RC_OPCODE_SEQ &&
396 vpi->Opcode != RC_OPCODE_SNE));
398 switch (vpi->Opcode) {
511 rc_error(&compiler->Base, "Unknown opcode %s\n", info->Name);
568 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
570 for (i = 0; i < opcode->NumSrcRegs; ++i) {
577 if (opcode->HasDstReg) {
591 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode) local
626 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
667 const struct rc_opcode_info *opcode = rc_get_opcode_info(inst->U.I.Opcode); local
706 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
812 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
827 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
    [all...]
radeon_optimize.c 73 reader_data->Writer->U.I.PreSub.Opcode,
93 (inst->U.I.Opcode == RC_OPCODE_TEX ||
94 inst->U.I.Opcode == RC_OPCODE_TXB ||
95 inst->U.I.Opcode == RC_OPCODE_TXP ||
96 inst->U.I.Opcode == RC_OPCODE_TXD ||
97 inst->U.I.Opcode == RC_OPCODE_TXL ||
98 inst->U.I.Opcode == RC_OPCODE_KIL)){
217 inst->U.I.Opcode = RC_OPCODE_MUL;
224 inst->U.I.Opcode = RC_OPCODE_ADD;
230 inst->U.I.Opcode = RC_OPCODE_MOV
311 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_shader.h 40 unsigned opcode:16; member in struct:sh_op
223 unsigned opcode:16; member in struct:sh_comment
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_disasm.c 39 } opcode[128] = { variable in typeref:struct:__anon20203
468 if (!opcode[id].name) {
469 format (file, "*** invalid opcode value %d ", id);
472 string (file, opcode[id].name);
1081 err |= print_opcode (file, inst->header.opcode);
1085 if (inst->header.opcode == BRW_OPCODE_MATH) {
1089 } else if (inst->header.opcode != BRW_OPCODE_SEND &&
1090 inst->header.opcode != BRW_OPCODE_SENDC)
1094 if (inst->header.opcode != BRW_OPCODE_NOP) {
1100 if (inst->header.opcode == BRW_OPCODE_SEND && gen < 6
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 36 import org.jf.dexlib2.Opcode;
69 private boolean isAllowedOdex(@Nonnull Opcode opcode) {
79 return opcode.isVolatileFieldAccessor() || opcode == Opcode.THROW_VERIFICATION_ERROR;
84 Opcode opcode = instruction.getOpcode(); local
152 Opcode.ARRAY_PAYLOAD);
158 throw new ExceptionWithContext("Invalid 31t opcode: %s", instruction.getOpcode())
    [all...]
  /external/tcpdump/
print-lwres.c 56 lwres_uint32_t opcode; member in struct:lwres_lwpacket
174 static const struct tok opcode[] = { variable in typeref:struct:tok
317 /* opcode and pktflags */
318 v = EXTRACT_32BITS(&np->opcode);
319 s = tok2str(opcode, "#0x%x", v);
341 /* per-opcode content */
355 switch (EXTRACT_32BITS(&np->opcode)) {
455 switch (EXTRACT_32BITS(&np->opcode)) {
  /external/toybox/toys/pending/
tftp.c 92 * Makes a request packet in BUFFER with OPCODE and file PATH of MODE
95 static int mkpkt_request(uint8_t *buffer, int opcode, char *path, int mode)
97 buffer[0] = opcode >> 8;
98 buffer[1] = opcode & 0xff;
181 static inline int check_data( uint8_t *packet, uint16_t *opcode,
184 *opcode = (uint16_t) packet[0] << 8 | (uint16_t) packet[1];
185 if (*opcode == TFTP_OP_DATA) {
218 uint16_t opcode, rblockno; local
246 opcode = (uint16_t) packet[0] << 8 | (uint16_t) packet[1];
249 if (opcode != TFTP_OP_ACK)
271 uint16_t blockno = 0, opcode, rblockno = 0; local
    [all...]
  /external/v8/src/ic/mips/
ic-mips.cc 893 uint32_t opcode = Assembler::GetOpcodeField(branch_instr); local
    [all...]
  /external/v8/src/ic/mips64/
ic-mips64.cc 889 uint32_t opcode = Assembler::GetOpcodeField(branch_instr); local
    [all...]
  /external/valgrind/VEX/priv/
guest_tilegx_toIR.c 294 ULong cins, opcode = -1, rd, ra, rb, imm = 0; local
422 opcode = decoded[n].opcode->mnemonic;
431 for (opi = 0; opi < decoded[n].opcode->num_operands; opi++) {
470 switch (opcode) {
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_gpsk.c 673 u8 opcode, id; local
682 opcode = *pos++;
684 wpa_printf(MSG_DEBUG, "EAP-GPSK: Received frame: opcode %d", opcode);
691 switch (opcode) {
700 "EAP-GPSK: Ignoring message with unknown opcode %d",
701 opcode);
  /hardware/broadcom/libbt/src/
bt_vendor_brcm_a2dp.c 157 uint16_t opcode; local
728 int brcm_vnd_a2dp_execute(bt_vendor_opcode_t opcode, void *ev_data)
730 tBRCM_VND_A2DP_EVENT ssm_event = (opcode == BT_VND_OP_A2DP_OFFLOAD_START)?
733 ALOGD("%s opcode %d , state %d", __FUNCTION__, opcode, brcm_vnd_a2dp_pdata.state);

Completed in 710 milliseconds

<<11121314151617181920>>