HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 501 - 525 of 1512) sorted by null

<<21222324252627282930>>

  /dalvik/vm/mterp/mips/
binop2addr.S 27 GET_INST_OPCODE(t0) # extract opcode from rINST
binopLit16.S 27 GET_INST_OPCODE(t0) # extract opcode from rINST
unopWide.S 18 GET_INST_OPCODE(t0) # extract opcode from rINST
unopWider.S 17 GET_INST_OPCODE(t0) # extract opcode from rINST
  /dalvik/vm/mterp/x86/
OP_FILLED_NEW_ARRAY.S 19 jne .L${opcode}_continue # yes, continue
31 # note: fall through to .L${opcode}_continue
39 .L${opcode}_continue:
50 jne .L${opcode}_notimpl # no, not handled yet
125 .L${opcode}_notimpl:
OP_SGET_WIDE.S 22 je .L${opcode}_resolve # if not, make it so
23 .L${opcode}_finish: # field ptr in eax
35 .L${opcode}_resolve:
54 jmp .L${opcode}_finish # success, continue
OP_SPUT_OBJECT.S 21 je .L${opcode}_resolve # if not, make it so
22 .L${opcode}_finish: # field ptr in eax
38 .L${opcode}_resolve:
57 jmp .L${opcode}_finish # success, continue
OP_SPUT_WIDE.S 23 je .L${opcode}_resolve # if not, make it so
24 .L${opcode}_finish: # field ptr in eax
36 .L${opcode}_resolve:
55 jmp .L${opcode}_finish # success, continue
  /external/bluetooth/bluedroid/btif/include/
btif_api.h 326 bt_status_t btif_dut_mode_send(uint16_t opcode, uint8_t *buf, uint8_t len);
337 bt_status_t btif_le_test_mode(uint16_t opcode, uint8_t *buf, uint8_t len);
  /external/bluetooth/bluedroid/hci/include/
bt_vendor_lib.h 31 /** Vendor specific operations OPCODE */
265 * The opcode parameter gives the HCI OpCode (combination of OGF and OCF) of
266 * HCI Command packet. For example, opcode = 0x0c03 for the HCI_RESET command
269 typedef uint8_t (*cmd_xmit_cb)(uint16_t opcode, void *p_buf, tINT_CMD_CBACK p_cback);
320 int (*op)(bt_vendor_opcode_t opcode, void *param);
  /external/bluetooth/bluedroid/hci/src/
bt_hw.c 163 static uint8_t xmit_cb(uint16_t opcode, void *p_buf, tINT_CMD_CBACK p_cback)
165 return p_hci_if->send_int_cmd(opcode, (HC_BT_HDR *)p_buf, p_cback);
  /external/chromium/sdch/open-vcdiff/src/
instruction_map.h 38 // the corresponding opcode.
44 // to create the instruction->opcode mappings. The caller *must* have
54 // Finds an opcode that has the given inst, size, and mode for its first
57 // opcode. Otherwise, returns an opcode value between 0 and 255.
60 // usually want to try again with size == 0 to find an opcode that
73 // Given a first opcode (presumed to have been returned by a previous call to
74 // lookupFirstOpcode), finds an opcode that has the same first instruction as
75 // the first opcode, and has the given inst, size, and mode for its second
79 // usually want to try again with size == 0 to find an opcode tha
    [all...]
  /external/chromium_org/net/websockets/
websocket_frame.cc 45 scoped_ptr<WebSocketFrameHeader> ret(new WebSocketFrameHeader(opcode));
55 opcode = source.opcode;
60 WebSocketFrame::WebSocketFrame(WebSocketFrameHeader::OpCode opcode)
61 : header(opcode) {}
86 DCHECK((header.opcode & kOpCodeMask) == header.opcode)
87 << "header.opcode must fit to kOpCodeMask.";
114 first_byte |= header.opcode & kOpCodeMask
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
instruction_map.h 38 // the corresponding opcode.
44 // to create the instruction->opcode mappings. The caller *must* have
54 // Finds an opcode that has the given inst, size, and mode for its first
57 // opcode. Otherwise, returns an opcode value between 0 and 255.
60 // usually want to try again with size == 0 to find an opcode that
73 // Given a first opcode (presumed to have been returned by a previous call to
74 // lookupFirstOpcode), finds an opcode that has the same first instruction as
75 // the first opcode, and has the given inst, size, and mode for its second
79 // usually want to try again with size == 0 to find an opcode tha
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_pm4.c 35 void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode)
37 state->last_opcode = opcode;
58 unsigned opcode; local
61 opcode = PKT3_SET_CONFIG_REG;
65 opcode = PKT3_SET_SH_REG;
69 opcode = PKT3_SET_CONTEXT_REG;
78 if (opcode != state->last_opcode || reg != (state->last_reg + 1)) {
79 si_pm4_cmd_begin(state, opcode);
  /external/javassist/src/main/javassist/bytecode/analysis/
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/llvm/utils/TableGen/
X86DisassemblerTables.h 35 /// The decoder tables. There is one for each opcode type:
132 /// Opcode and ModRMDecisions. A ContextDecision is printed as:
148 /// IC is one of the contexts in InstructionContext. There is an opcode
190 /// 0xnn is the lowest possible opcode for the current instruction, used for
234 /// @param opcode - The opcode of the instruction, for error reporting.
238 uint8_t opcode);
250 /// setTableFields - Uses the opcode type, instruction context, opcode, and a
254 /// @param type - The opcode type (ONEBYTE, TWOBYTE, etc.
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pm4.c 35 void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode)
37 state->last_opcode = opcode;
58 unsigned opcode; local
61 opcode = PKT3_SET_CONFIG_REG;
65 opcode = PKT3_SET_SH_REG;
69 opcode = PKT3_SET_CONTEXT_REG;
78 if (opcode != state->last_opcode || reg != (state->last_reg + 1)) {
79 si_pm4_cmd_begin(state, opcode);
  /external/open-vcdiff/src/
instruction_map.h 38 // the corresponding opcode.
44 // to create the instruction->opcode mappings. The caller *must* have
54 // Finds an opcode that has the given inst, size, and mode for its first
57 // opcode. Otherwise, returns an opcode value between 0 and 255.
60 // usually want to try again with size == 0 to find an opcode that
73 // Given a first opcode (presumed to have been returned by a previous call to
74 // lookupFirstOpcode), finds an opcode that has the same first instruction as
75 // the first opcode, and has the given inst, size, and mode for its second
79 // usually want to try again with size == 0 to find an opcode tha
    [all...]
  /external/proguard/src/proguard/optimize/info/
DotClassMarker.java 51 if (constantInstruction.opcode == InstructionConstants.OP_LDC ||
52 constantInstruction.opcode == InstructionConstants.OP_LDC_W)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 154 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
159 if (opcode->HasDstReg) {
184 for(unsigned int src = 0; src < opcode->NumSrcRegs; ++src) {
233 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
235 switch(opcode->Opcode){
244 opcode = rc_get_opcode_info(ptr->U.I.Opcode);
316 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
    [all...]
r300_fragprog_swizzle.c 107 static int r300_swizzle_is_native(rc_opcode opcode, struct rc_src_register reg)
113 if (opcode == RC_OPCODE_KIL ||
114 opcode == RC_OPCODE_TEX ||
115 opcode == RC_OPCODE_TXB ||
116 opcode == RC_OPCODE_TXP) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
win64-except.c 363 switch (code->opcode) {
372 code->opcode = UWOP_ALLOC_SMALL;
379 code->opcode = UWOP_SAVE_NONVOL;
389 code->opcode = UWOP_SAVE_XMM128;
397 yasm_internal_error(N_("unrecognied unwind opcode"));
435 if (code->opcode == UWOP_ALLOC_LARGE && code->info == 1)
438 if (code->opcode == UWOP_ALLOC_SMALL && new_val > 128) {
440 code->opcode = UWOP_ALLOC_LARGE;
451 } else if (code->opcode == UWOP_SAVE_NONVOL && span == 2) {
452 code->opcode = UWOP_SAVE_NONVOL_FAR
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 154 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
159 if (opcode->HasDstReg) {
184 for(unsigned int src = 0; src < opcode->NumSrcRegs; ++src) {
233 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
235 switch(opcode->Opcode){
244 opcode = rc_get_opcode_info(ptr->U.I.Opcode);
316 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86nasm.pl 14 { my $opcode=shift;
18 { if ($opcode =~ m/^j/o && $#_==0) # optimize jumps
20 elsif ($opcode eq "lea" && $#_==1) # wipe storage qualifier from lea
22 elsif ($opcode eq "clflush" && $#_==0)
25 &::emit($opcode,@_);

Completed in 945 milliseconds

<<21222324252627282930>>