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

<<11121314151617181920>>

  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 73 Instruction::CastOps opcode = CastInst::getCastOpcode(AI, false, ArgVTy, local
76 CastInst::Create(opcode, AI, ArgVTy, "argv.cast", InitCall));
87 Instruction::CastOps opcode; local
89 opcode = CastInst::getCastOpcode(InitCall, true, AI->getType(), true);
91 CastInst::Create(opcode, InitCall, AI->getType(), "", InsertPos));
93 opcode = CastInst::getCastOpcode(AI, true,
96 CastInst::Create(opcode, AI, Type::getInt32Ty(Context),
  /external/open-vcdiff/src/
encodetable.cc 139 // The VCDiff format allows each opcode to represent either
141 // examine the opcode generated by the last call to EncodeInstruction.
142 // If that opcode was a single-instruction opcode, this function checks
143 // whether there is a compound (double-instruction) opcode that can
146 // single-instruction opcode at position last_opcode_index_ will be
147 // overwritten with the new double-instruction opcode.
149 // In the majority of cases, no compound opcode will be possible,
150 // and a new single-instruction opcode will be appended to
152 // if the opcode does not implicitly give the instruction size
218 OpcodeOrNone opcode = kNoOpcode; local
    [all...]
codetable.h 45 // OpcodeOrNone: An opcode is a value between 0-255. There is not room
46 // in a single byte to express all these values plus a "no opcode found"
47 // value. So use a 16-bit integer to hold either an opcode or kNoOpcode.
50 const OpcodeOrNone kNoOpcode = 0x100; // outside the opcode range 0x00 - 0xFF
117 static bool ValidateOpcode(int opcode,
  /external/proguard/src/proguard/classfile/instruction/
InstructionFactory.java 39 byte opcode = code[index++];
42 if (opcode == InstructionConstants.OP_WIDE)
44 opcode = code[index++];
48 switch (opcode)
290 throw new IllegalArgumentException("Unknown instruction opcode ["+opcode+"] at offset "+offset);
293 instruction.opcode = opcode;
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 254 byte opcode = variableInstruction.opcode;
255 if (opcode == InstructionConstants.OP_RET)
304 byte opcode = branchInstruction.opcode;
305 if (opcode == InstructionConstants.OP_JSR ||
306 opcode == InstructionConstants.OP_JSR_W)
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 44 * middle of an instruction or is a definitely-dead opcode
122 public void visitInvalid(int opcode, int offset, int length) {
127 public void visitNoArgs(int opcode, int offset, int length, Type type) {
128 switch (opcode) {
187 public void visitLocal(int opcode, int offset, int length,
189 if (opcode == ByteOps.RET) {
198 public void visitConstant(int opcode, int offset, int length,
215 public void visitBranch(int opcode, int offset, int length,
217 switch (opcode) {
246 public void visitSwitch(int opcode, int offset, int length
    [all...]
  /dalvik/vm/mterp/mips/
OP_FILLED_NEW_ARRAY.S 18 bnez a0, .L${opcode}_continue # yes, continue on
26 b .L${opcode}_continue
34 .L${opcode}_continue:
49 beqz t0, .L${opcode}_notimpl # no, not handled yet
104 GET_INST_OPCODE(t0) # ip <- opcode from rINST
112 .L${opcode}_notimpl:
  /external/openssl/crypto/modes/asm/
ghash-parisc.pl 639 { my $opcode=(0x03<<26)|($2<<21)|($1<<16)|(3<<6)|$3;
640 sprintf "\t.WORD\t0x%08x\t; %s",$opcode,$orig;
643 { my $opcode=(0x03<<26)|($2<<21)|(1<<12)|(3<<6)|$3;
644 $opcode|=(($1&0xF)<<17)|(($1&0x10)<<12); # encode offset
645 $opcode|=(1<<5) if ($mod =~ /^,m/);
646 $opcode|=(1<<13) if ($mod =~ /^,mb/);
647 sprintf "\t.WORD\t0x%08x\t; %s",$opcode,$orig;
657 { my $opcode=(0x1c<<26)|($3<<21)|($1<<16)|(($2&0x1FF8)<<1)|(($2>>13)&1);
658 sprintf "\t.WORD\t0x%08x\t; %s",$opcode,$orig;
669 { my $opcode=(0x36<<26)|($1<<21)|($4<<16)
    [all...]
  /external/openssl/crypto/perlasm/
ppc-xlate.pl 149 my $opcode = eval("\$$mnemonic");
151 if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
  /external/proguard/src/proguard/optimize/info/
ReadWriteFieldMarker.java 55 byte opcode = constantInstruction.opcode;
58 switch (opcode)
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
SyntheticAccessorResolver.java 84 switch (instructions[0].opcode.format) {
115 if (instruction.opcode.setsRegister() || instruction.opcode.setsWideRegister()) {
  /hardware/broadcom/libbt/src/
bt_vendor_brcm.c 130 static int op(bt_vendor_opcode_t opcode, void *param)
134 BTVNDDBG("op for %d", opcode);
136 switch(opcode)
  /hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/
uim.h 87 uint16_t opcode; /* OCF & OGF */ member in struct:__anon21978
100 uint16_t opcode; member in struct:__anon21980
107 uint16_t opcode; member in struct:__anon21981
  /hardware/ti/wpan/ti_st/uim-sysfs/
uim.h 86 uint16_t opcode; /* OCF & OGF */ member in struct:__anon21988
99 uint16_t opcode; member in struct:__anon21990
106 uint16_t opcode; member in struct:__anon21991
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 471 * swap the sources so that an opcode of form 12x can be selected
538 Dop opcode = RopToDop.dopFor(insn); local
545 di = new SimpleInsn(opcode, pos, getRegs(insn));
558 di = new TargetInsn(opcode, pos, getRegs(insn),
573 Dop opcode = RopToDop.dopFor(insn); local
595 di = new SimpleInsn(opcode, pos,
602 di = new CstInsn(opcode, pos, regs, insn.getConstant());
639 Dop opcode = dataInsn.isPacked() ? local
642 new TargetInsn(opcode, pos, getRegs(insn), dataAddress);
681 Dop opcode = RopToDop.dopFor(insn) local
734 Dop opcode = RopToDop.dopFor(insn); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 478 * swap the sources so that an opcode of form 12x can be selected
545 Dop opcode = RopToDop.dopFor(insn); local
552 di = new SimpleInsn(opcode, pos, getRegs(insn));
565 di = new TargetInsn(opcode, pos, getRegs(insn),
580 Dop opcode = RopToDop.dopFor(insn); local
602 di = new SimpleInsn(opcode, pos,
609 di = new CstInsn(opcode, pos, regs, insn.getConstant());
649 Dop opcode = dataInsn.isPacked() ? local
652 new TargetInsn(opcode, pos, getRegs(insn), dataAddress);
691 Dop opcode = RopToDop.dopFor(insn) local
744 Dop opcode = RopToDop.dopFor(insn); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopTranslator.java 478 * swap the sources so that an opcode of form 12x can be selected
545 Dop opcode = RopToDop.dopFor(insn); local
552 di = new SimpleInsn(opcode, pos, getRegs(insn));
565 di = new TargetInsn(opcode, pos, getRegs(insn),
580 Dop opcode = RopToDop.dopFor(insn); local
602 di = new SimpleInsn(opcode, pos,
609 di = new CstInsn(opcode, pos, regs, insn.getConstant());
646 Dop opcode = dataInsn.isPacked() ? local
649 new TargetInsn(opcode, pos, getRegs(insn), dataAddress);
688 Dop opcode = RopToDop.dopFor(insn) local
741 Dop opcode = RopToDop.dopFor(insn); local
    [all...]
  /dalvik/vm/compiler/
Dataflow.cpp 25 * instructions, where extended opcode at the MIR level are appended
825 Opcode opcode = insn->opcode; local
826 int dfAttributes = dvmCompilerDataFlowAttributes[opcode];
831 if ((int)opcode >= (int)kMirOpFirst) {
832 if ((int)opcode == (int)kMirOpPhi) {
836 sprintf(buffer, "Opcode %#x", opcode);
840 strcpy(buffer, dexGetOpcodeName(opcode));
927 int opcode = insn->opcode; local
    [all...]
  /bionic/libc/kernel/common/linux/can/
bcm.h 25 __u32 opcode; member in struct:bcm_msg_head
  /dalvik/vm/mterp/x86/
OP_APUT_OBJECT.S 26 je .L${opcode}_skip_check
41 jne .L${opcode}_types_okay
52 .L${opcode}_types_okay:
62 .L${opcode}_skip_check:
  /external/bluetooth/bluedroid/hci/src/
hci_h4.c 52 ** 2-bytes for opcode and 1 byte for length
57 ** 1-byte for opcode and 1 byte for length
126 uint16_t opcode; /* OPCODE of outstanding internal commands */ member in struct:__anon2998
159 uint8_t hci_h4_send_int_cmd(uint16_t opcode, HC_BT_HDR *p_buf, \
195 uint16_t opcode, len=0; local
199 STREAM_TO_UINT16(opcode, p)
204 if (opcode == HCI_READ_BUFFER_SIZE)
226 else if (opcode == HCI_LE_READ_BUFFER_SIZE)
258 uint16_t opcode, len local
    [all...]
hci_mct.c 53 ** 2-bytes for opcode and 1 byte for length
58 ** 1-byte for opcode and 1 byte for length
104 uint16_t opcode; /* OPCODE of outstanding internal commands */ member in struct:__anon3001
142 uint8_t hci_mct_send_int_cmd(uint16_t opcode, HC_BT_HDR *p_buf, \
178 uint16_t opcode, len=0; local
182 STREAM_TO_UINT16(opcode, p)
187 if (opcode == HCI_READ_BUFFER_SIZE)
209 else if (opcode == HCI_LE_READ_BUFFER_SIZE)
241 uint16_t opcode, len local
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
codetable.h 45 // OpcodeOrNone: An opcode is a value between 0-255. There is not room
46 // in a single byte to express all these values plus a "no opcode found"
47 // value. So use a 16-bit integer to hold either an opcode or kNoOpcode.
50 const OpcodeOrNone kNoOpcode = 0x100; // outside the opcode range 0x00 - 0xFF
117 static bool ValidateOpcode(int opcode,
  /external/kernel-headers/original/linux/can/
bcm.h 20 * @opcode: opcode, see enum below.
30 __u32 opcode; member in struct:bcm_msg_head
  /external/proguard/src/proguard/classfile/editor/
InstructionAdder.java 69 new ConstantInstruction(constantInstruction.opcode,

Completed in 2521 milliseconds

<<11121314151617181920>>