Searched refs:opcode (Results 176 - 200 of 376) sorted by relevance

1234567891011>>

/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-eigrp.c43 u_int8_t opcode; member in struct:eigrp_common_header
247 tok2str(eigrp_opcode_values, "unknown (%u)",eigrp_com_header->opcode),
257 printf("\n\tEIGRP v%u, opcode: %s (%u), chksum: 0x%04x, Flags: [%s]\n\tseq: 0x%08x, ack: 0x%08x, AS: %u, length: %u",
259 tok2str(eigrp_opcode_values, "unknown, type: %u",eigrp_com_header->opcode),
260 eigrp_com_header->opcode,
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MBlaze/Disassembler/
H A DMBlazeDisassembler.cpp465 unsigned opcode = mblazeBinary2Opcode[ (insn>>26)&0x3F ]; local
466 switch (opcode) {
491 default: return opcode;
524 // Get the MCInst opcode from the binary instruction and make sure
526 unsigned opcode = getOPCODE(insn); local
527 if (opcode == UNSUPPORTED)
530 instr.setOpcode(opcode);
537 uint64_t tsFlags = MBlazeInsts[opcode].TSFlags;
569 switch (opcode) {
599 switch (opcode) {
[all...]
/macosx-10.10/dtrace-147/libdwarf/
H A Ddwarf_line.c94 extended opcode DW_LNE_define_file.
384 This is the current opcode read from the statement program. */
385 Dwarf_Small opcode; local
408 opcode. */
415 /* This is the length of an extended opcode instr. */
567 opcode = *(Dwarf_Small *) line_ptr;
572 WHAT_IS_OPCODE(type, opcode, prefix.pf_opcode_base,
578 int opcnt = prefix.pf_opcode_length_table[opcode];
598 opcode = opcode
[all...]
H A Dpro_expr.c75 Dwarf_Small opcode,
126 switch (opcode) {
488 *next_byte_ptr = opcode;
74 dwarf_add_expr_gen(Dwarf_P_Expr expr, Dwarf_Small opcode, Dwarf_Unsigned val1, Dwarf_Unsigned val2, Dwarf_Error * error) argument
/macosx-10.10/IOFireWireIP-226.2/KernelHeaders/IOKit/
H A DIOFWIPDefinitions.h159 UInt16 opcode; /* ARP request or response */ member in struct:__anon1609
218 UInt8 opcode; /* Advertise or solicit */ member in struct:__anon1612
/macosx-10.10/IOFireWireIP-226.2/KernelSource/BSD/
H A Dif_firewire.cpp153 fwa->opcode = htons(arpop);
278 inet_arp_handle_input(ifp, ntohs(fwa->opcode), &sender_hw, &sender_ip, &target_ip);
/macosx-10.10/JavaScriptCore-7600.1.17/disassembler/ARMv7/
H A DARMv7DOpcode.h179 bool matches(uint16_t opcode) argument
181 return (opcode & m_opcodeMask) == m_opcodePattern;
209 unsigned opcodeGroupNumber(unsigned opcode) { return (opcode >> 11) & OpcodeGroup::opcodeTableMask; } argument
682 bool matches(uint32_t opcode) argument
684 return (opcode & m_opcodeMask) == m_opcodePattern;
715 unsigned opcodeGroupNumber(unsigned opcode) { return (opcode >> 25) & OpcodeGroup::opcodeTableMask; } argument
/macosx-10.10/bind9-45.101/bind9/lib/lwres/
H A Dlwres_noop.c27 * the resolver daemon and is simply echoed back. The opcode is intended
30 * There are four main functions for the no-op opcode. One render
56 * is because the no-op opcode simply echos whatever data was sent: the
82 * The no-op opcode functions lwres_nooprequest_render(),
140 pkt->opcode = LWRES_OPCODE_NOOP;
193 pkt->opcode = LWRES_OPCODE_NOOP;
H A Dlwresutil.c314 if (pkt.opcode != LWRES_OPCODE_GETADDRSBYNAME)
424 if (pkt.opcode != LWRES_OPCODE_GETNAMEBYADDR)
539 if (pkt.opcode != LWRES_OPCODE_GETRDATABYNAME)
/macosx-10.10/cxxfilt-11/cxxfilt/include/opcode/
H A Dm88k.h24 * The first field of the table is the opcode field. If an opcode
25 * is specified which has any non-opcode bits on, a system error
49 /* Define the number of bits in the primary opcode field of the instruction,
52 /* Size of opcode field. */
173 struct IR_FIELDS opcode; member in struct:mem_wrd
423 unsigned op:OP, /* simulator version of opcode. */
439 unsigned int opcode; member in struct:INSTRUCTAB
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dd10v-dis.c22 #include "opcode/d10v.h"
163 && ((op->mask & insn) == (unsigned long) op->opcode))
215 == (unsigned int) op->opcode))
H A Dia64-dis.c26 #include "opcode/ia64.h"
35 unit_to_type (ia64_insn opcode, enum ia64_unit unit) argument
40 op = IA64_OP (opcode);
H A Dm68k-dis.c27 #include "opcode/m68k.h"
568 an opcode tabe error was found.
1229 The only place this is stored in the opcode table is
1322 _("<internal error in opcode table: %s %s>\n"),
1372 /* Speed up the matching by sorting the opcode
1373 table on the upper four bits of the opcode. */
1378 numopcodes[(m68k_opcodes[i].opcode >> 28) & 15]++;
1393 *opc_pointer[(m68k_opcodes[i].opcode >> 28) & 15]++ = &m68k_opcodes[i];
1402 unsigned long opcode = opc->opcode;
1400 unsigned long opcode = opc->opcode; local
[all...]
H A Dhppa-dis.c26 #include "opcode/hppa.h"
376 const struct pa_opcode *opcode = &pa_opcodes[i]; local
378 if ((insn & opcode->mask) == opcode->match)
382 if (opcode->arch == pa20w)
385 (*info->fprintf_func) (info->stream, "%s", opcode->name);
387 if (!strchr ("cfCY?-+nHNZFIuv{", opcode->args[0]))
389 for (s = opcode->args; *s != '\0'; ++s)
778 which distinguish true/false conditions by opcode
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Direp.h129 * Each tuple has an opcode in addition to its arguments.
130 * Define opcode data type and the valid opcodes.
131 * For each opcode the comment indicates the valid arguments and their types.
186 * Each tuple has flags in addition to its opcode and arguments.
304 IR_opcode_k_t opcode; member in struct:IR_tup_n_t
316 ((tup_p)->next == NULL && (tup_p)->opcode == IR_op_noop_k) )
/macosx-10.10/ntp-92/scripts/monitoring/
H A Dntp.pl35 ;# C R|E|M|Op R response E error M more Op opcode
79 local($fh,$opcode, $associd, $data,$address) = @_;
95 ($opcode & 0x1f) | ($data ? 0x20 : 0),
/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DX86DisassemblerTables.cpp267 /// to an opcode modifier type.
657 uint8_t opcode) {
687 errs() << "Opcode " << (uint16_t)opcode << "\n";
700 uint8_t opcode,
713 setTableFields(decision.opcodeDecisions[index].modRMDecisions[opcode],
716 opcode);
/macosx-10.10/BerkeleyDB-21/db/libdb_java/
H A Ddb_java.i153 private final void handle_env_feedback(int opcode, int percent) {
154 if (opcode == DbConstants.DB_RECOVER)
371 private final void handle_db_feedback(int opcode, int percent) {
372 if (opcode == DbConstants.DB_UPGRADE)
374 else if (opcode == DbConstants.DB_VERIFY)
/macosx-10.10/JavaScriptCore-7600.1.17/offlineasm/
H A Dx86.rb488 unless node.opcode == "move"
503 newNode = Instruction.new(node.codeOrigin, node.opcode, newOperands, node.annotation)
580 def handleX86OpWithNumOperands(opcode, kind, numOperands)
583 $asm.puts "#{opcode} #{orderOperands(operands[1].x86Operand(kind), operands[2].x86Operand(kind))}"
585 $asm.puts "#{opcode} #{orderOperands(operands[0].x86Operand(kind), operands[2].x86Operand(kind))}"
588 $asm.puts "#{opcode} #{orderOperands(operands[1].x86Operand(kind), operands[2].x86Operand(kind))}"
591 $asm.puts "#{opcode} #{orderOperands(operands[0].x86Operand(kind), operands[1].x86Operand(kind))}"
595 def handleX86Op(opcode, kind)
596 handleX86OpWithNumOperands(opcode, kind, operands.size)
599 def handleX86Shift(opcode, kin
[all...]
H A Dast.rb865 attr_reader :opcode, :operands, :annotation
867 def initialize(codeOrigin, opcode, operands, annotation=nil)
869 @opcode = opcode
879 Instruction.new(codeOrigin, @opcode, @operands.map(&proc), @annotation)
883 "\t" + opcode.to_s + " " + operands.collect{|v| v.dump}.join(", ")
887 case opcode
893 raise "Unhandled opcode #{opcode} at #{codeOriginString}"
/macosx-10.10/tcl-105/tk/tk/generic/ttk/
H A DttkLayout.c726 for ( ; !(spec->opcode & _TTK_LAYOUT_END) ; ++spec) {
729 Ttk_NewTemplateNode(spec->elementName, spec->opcode);
739 if (spec->opcode & _TTK_CHILDREN && last) {
747 if (spec->opcode & _TTK_CHILDREN) {
750 if (spec->opcode & _TTK_LAYOUT_END) {
763 while (!(spec->opcode & _TTK_LAYOUT_END)) {
768 } while (!(spec->opcode & _TTK_LAYOUT));
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/dns/
H A Ddns.tcl200 set state(opcode) 0; # 0 = query, 1 = inverse query.
235 -inv* { set state(opcode) 1 }
236 -status {set state(opcode) 2}
291 switch -exact -- $flags(opcode) {
537 switch -exact -- $state(opcode) {
541 [expr {($state(opcode) << 11) | ($state(-recurse) << 8)}] \
548 [expr {($state(opcode) << 11) | ($state(-recurse) << 8)}] \
906 array set flags {query 0 opcode 0 authoritative 0 errorcode 0
912 set flags(opcode) [expr {($hdr & 0x7800) >> 11}]
/macosx-10.10/dyld-353.2.1/src/
H A DImageLoaderMachOCompressed.cpp441 uint8_t opcode = *p & REBASE_OPCODE_MASK; local
443 switch (opcode) {
502 dyld::throwf("bad rebase opcode %d", *p);
939 uint8_t opcode = *p & BIND_OPCODE_MASK; local
941 switch (opcode) {
1013 dyld::throwf("bad bind opcode %d in bind info", *p);
1041 uint8_t opcode = *p & BIND_OPCODE_MASK; local
1043 switch (opcode) {
1096 dyld::throwf("bad lazy bind opcode %d", *p);
1212 uint8_t opcode local
1306 uint8_t opcode = *p & BIND_OPCODE_MASK; local
1398 uint8_t opcode = *p & BIND_OPCODE_MASK; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/txn/
H A Dtxn_autop.c44 (void)printf("\topcode: %lu\n", (u_long)argp->opcode);
90 (void)printf("\topcode: %lu\n", (u_long)argp->opcode);
268 (void)printf("\topcode: %lu\n", (u_long)argp->opcode);
/macosx-10.10/bind9-45.101/bind9/bin/named/
H A Dlwdclient.c188 ns_lwdclient_log(50, "opcode %08x", client->pkt.opcode);
190 switch (client->pkt.opcode) {
204 ns_lwdclient_log(50, "unknown opcode %08x", client->pkt.opcode);

Completed in 590 milliseconds

1234567891011>>