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

1 2 3 4 5 67 8 91011>>

  /external/kernel-headers/original/uapi/linux/can/
bcm.h 57 * @opcode: opcode, see enum below.
67 __u32 opcode; member in struct:bcm_msg_head
  /external/kernel-headers/original/uapi/linux/
nvme_ioctl.h 21 __u8 opcode; member in struct:nvme_user_io
36 __u8 opcode; member in struct:nvme_passthru_cmd
  /external/libunwind/src/dwarf/
Gexpr.c 194 uint8_t opcode, operands_signature, u8; local
246 if ((ret = dwarf_readu8 (as, a, addr, &opcode, arg)) < 0)
249 operands_signature = operands[opcode];
264 switch ((dwarf_expr_op_t) opcode)
277 Debug (15, "OP_lit(%d)\n", (int) opcode - DW_OP_lit0);
278 push (opcode - DW_OP_lit0);
293 (int) opcode - DW_OP_breg0, (unsigned long) operand1);
295 dwarf_to_unw_regnum (opcode - DW_OP_breg0),
321 Debug (15, "OP_reg(r%d)\n", (int) opcode - DW_OP_reg0);
322 *valp = dwarf_to_unw_regnum (opcode - DW_OP_reg0)
    [all...]
  /external/libunwind_llvm/src/
DwarfInstructions.hpp 238 uint8_t opcode = addressSpace.get8(p++); local
242 switch (opcode) {
608 value = static_cast<pint_t>(opcode - DW_OP_lit0);
646 reg = static_cast<uint32_t>(opcode - DW_OP_reg0);
691 reg = static_cast<uint32_t>(opcode - DW_OP_breg0);
747 _LIBUNWIND_ABORT("dwarf opcode not implemented");
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_proto.h 76 enum rbug_opcode opcode; member in struct:rbug_header
85 int32_t opcode; member in struct:rbug_proto_header
95 * Get printable string for opcode.
97 const char* rbug_proto_get_name(enum rbug_opcode opcode);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 105 static unsigned int translate_rgb_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode)
107 switch(opcode) {
114 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name);
125 static unsigned int translate_alpha_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode)
127 switch(opcode) {
136 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name);
164 code->alu.inst[ip].rgb_inst = translate_rgb_opcode(c, inst->RGB.Opcode);
165 code->alu.inst[ip].alpha_inst = translate_alpha_opcode(c, inst->Alpha.Opcode);
427 unsigned int opcode; local
    [all...]
radeon_compiler.c 42 c->Program.Instructions.U.I.Opcode = RC_OPCODE_ILLEGAL_OPCODE;
119 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
122 for (i = 0; i < opcode->NumSrcRegs; ++i) {
127 if (opcode->HasDstReg) {
145 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
148 for(i = 0; i < opcode->NumSrcRegs; ++i) {
177 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
200 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
300 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
344 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
    [all...]
radeon_program_print.c 201 switch(inst.Opcode){
259 static unsigned update_branch_depth(rc_opcode opcode, unsigned *branch_depth)
261 switch (opcode) {
282 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
284 unsigned spaces = update_branch_depth(inst->U.I.Opcode, branch_depth);
289 fprintf(f, "%s", opcode->Name);
298 if (opcode->HasDstReg) {
302 if (opcode->NumSrcRegs)
306 for(reg = 0; reg < opcode->NumSrcRegs; ++reg)
383 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->RGB.Opcode); local
422 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->Alpha.Opcode); local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_llvm.c 175 unsigned opcode = emit_data->inst->Instruction.Opcode; local
176 unsigned dp_components = (opcode == TGSI_OPCODE_DP2 ? 2 :
177 (opcode == TGSI_OPCODE_DP3 ? 3 : 4));
191 if (opcode == TGSI_OPCODE_DPH) {
  /external/mesa3d/src/glx/
indirect_glx.c 63 SendMakeCurrentRequest(Display * dpy, CARD8 opcode,
76 req->reqType = opcode;
94 req->reqType = opcode;
109 req->reqType = opcode;
135 int opcode = __glXSetupForCommand(dpy); local
144 SendMakeCurrentRequest(dpy, opcode, gc->xid, tag, draw, read, &reply);
165 int opcode = __glXSetupForCommand(dpy); local
176 SendMakeCurrentRequest(dpy, opcode, None,
254 CARD8 opcode; local
263 opcode = __glXSetupForCommand(dpy)
303 CARD8 opcode; local
350 CARD8 opcode; local
    [all...]
  /external/mesa3d/src/mesa/main/
atifragshader.h 24 GLenum opcode; member in struct:ati_fs_opcode_st
53 GLenum Opcode[2];
62 GLenum Opcode;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
AbstractInsnNode.java 121 * The opcode of this instruction.
123 protected int opcode; field in class:AbstractInsnNode
146 * @param opcode the opcode of the instruction to be constructed.
148 protected AbstractInsnNode(final int opcode) {
149 this.opcode = opcode;
154 * Returns the opcode of this instruction.
156 * @return the opcode of this instruction.
159 return opcode;
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
Instruction.java 868 public byte opcode; field in class:Instruction
872 * Returns the canonical opcode of this instruction, i.e. typically the
873 * opcode whose extension has been removed.
877 return opcode;
903 // Write the wide opcode, if necessary.
909 // Write the opcode.
910 code[offset++] = opcode;
918 * Returns whether the instruction is wide, i.e. preceded by a wide opcode.
928 * Reads the data following the instruction opcode.
934 * Writes data following the instruction opcode
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 39 import org.jf.dexlib2.Opcode;
86 final Opcode opcode = instruction.getOpcode(); local
87 if (opcode == Opcode.PACKED_SWITCH_PAYLOAD || opcode == Opcode.SPARSE_SWITCH_PAYLOAD) {
350 if (instruction.getOpcode() != Opcode.NOP) {
374 if (targetInstruction.getOpcode() == Opcode.NOP) {
382 if ((instruction.opcode == Opcode.PACKED_SWITCH &
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DebugInfoItem.java 79 int opcode = reader.readUbyte(); local
80 switch (opcode) {
169 int adjusted = opcode - 0x0A;
  /external/tcpdump/
print-tftp.c 113 register int opcode, i; local
122 opcode = EXTRACT_16BITS(&tp->th_opcode);
123 cp = tok2str(op2str, "tftp-#%d", opcode);
125 /* Bail if bogus opcode */
129 switch (opcode) {
137 if (opcode != OACK)
140 if (opcode != OACK)
178 ND_PRINT((ndo, "(unknown #%d)", opcode));
  /external/v8/test/unittests/compiler/
common-operator-unittest.cc 26 IrOpcode::Value opcode; member in struct:v8::internal::compiler::__anon24479::SharedOperator
38 return os << IrOpcode::Mnemonic(fop.opcode);
98 EXPECT_EQ(sop.opcode, op->opcode());
176 EXPECT_EQ(IrOpcode::kEnd, op->opcode());
193 EXPECT_EQ(IrOpcode::kReturn, op->opcode());
209 EXPECT_EQ(IrOpcode::kBranch, op->opcode());
228 EXPECT_EQ(IrOpcode::kIfException, op->opcode());
244 EXPECT_EQ(IrOpcode::kSwitch, op->opcode());
260 EXPECT_EQ(IrOpcode::kIfValue, op->opcode());
    [all...]
js-operator-unittest.cc 48 IrOpcode::Value opcode; member in struct:v8::internal::compiler::__anon24493::SharedOperator
90 return os << IrOpcode::Mnemonic(sop.opcode);
136 EXPECT_EQ(sop.opcode, op->opcode());
162 IrOpcode::Value opcode; member in struct:v8::internal::compiler::__anon24494::SharedOperatorWithLanguageMode
194 return os << IrOpcode::Mnemonic(sop.opcode);
241 EXPECT_EQ(sop.opcode, op->opcode());
  /frameworks/base/services/core/java/com/android/server/hdmi/
NewDeviceAction.java 99 int opcode = cmd.getOpcode(); local
108 if (opcode == Constants.MESSAGE_SET_OSD_NAME) {
116 } else if (opcode == Constants.MESSAGE_FEATURE_ABORT) {
124 if (opcode == Constants.MESSAGE_DEVICE_VENDOR_ID) {
129 } else if (opcode == Constants.MESSAGE_FEATURE_ABORT) {
141 private boolean mayProcessCommandIfCached(int destAddress, int opcode) {
142 HdmiCecMessage message = getCecMessageCache().getMessage(destAddress, opcode);
SetArcTransmissionStateAction.java 121 int opcode = cmd.getOpcode(); local
122 if (opcode == Constants.MESSAGE_FEATURE_ABORT) {
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
ReplaceMethodCallsAdapter.java 90 mi.opcode = Opcodes.INVOKESTATIC;
179 mi.opcode = Opcodes.INVOKESTATIC;
252 public void visitMethodInsn(int opcode, String owner, String name, String desc,
256 MethodInformation mi = new MethodInformation(opcode, owner, name, desc);
258 opcode = mi.opcode;
265 super.visitMethodInsn(opcode, owner, name, desc, itf);
270 public int opcode; field in class:ReplaceMethodCallsAdapter.MethodInformation
275 public MethodInformation(int opcode, String owner, String name, String desc) {
276 this.opcode = opcode
    [all...]
  /hardware/google/apf/
apf_interpreter.c 88 const uint32_t opcode = EXTRACT_OPCODE(bytecode); local
106 switch (opcode) {
114 if (opcode >= LDBX_OPCODE) {
120 switch (opcode) {
134 // opcode cannot be any other value.
167 switch (opcode) {
265 // Unknown extended opcode
271 // Unknown opcode
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_pft.h 60 __u32 opcode; member in struct:pft_command
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_pft.h 109 * @opcode - see enum pft_command_opcode.
118 __u32 opcode; member in struct:pft_command
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DwarfInstructions.hpp 238 uint8_t opcode = addressSpace.get8(p++); local
242 switch (opcode) {
608 value = static_cast<pint_t>(opcode - DW_OP_lit0);
646 reg = static_cast<uint32_t>(opcode - DW_OP_reg0);
691 reg = static_cast<uint32_t>(opcode - DW_OP_breg0);
747 _LIBUNWIND_ABORT("dwarf opcode not implemented");

Completed in 2532 milliseconds

1 2 3 4 5 67 8 91011>>