/external/tcpdump/ |
D | print-zephyr.c | 51 char *opcode; member 169 PARSE_FIELD_STR(z.opcode); in zephyr_print() 199 if (!strcmp(z.opcode, "USER_HIDE")) in zephyr_print() 201 else if (!strcmp(z.opcode, "USER_UNHIDE")) in zephyr_print() 209 printf(" zephyr-admin %s", str_to_lower(z.opcode)); in zephyr_print() 215 if (!strcmp(z.opcode, "SUBSCRIBE") || in zephyr_print() 216 !strcmp(z.opcode, "SUBSCRIBE_NODEFS") || in zephyr_print() 217 !strcmp(z.opcode, "UNSUBSCRIBE")) { in zephyr_print() 219 printf(" %ssub%s", strcmp(z.opcode, "SUBSCRIBE") ? "un" : "", in zephyr_print() 220 strcmp(z.opcode, "SUBSCRIBE_NODEFS") ? "" : in zephyr_print() [all …]
|
D | print-rx.c | 393 u_int32_t opcode; /* RX opcode (host order) */ member 439 int32_t opcode; in rx_print() local 541 sport, &opcode)) { in rx_print() 545 fs_reply_print(bp, length, opcode); in rx_print() 548 cb_reply_print(bp, length, opcode); in rx_print() 551 prot_reply_print(bp, length, opcode); in rx_print() 554 vldb_reply_print(bp, length, opcode); in rx_print() 557 kauth_reply_print(bp, length, opcode); in rx_print() 560 vol_reply_print(bp, length, opcode); in rx_print() 563 bos_reply_print(bp, length, opcode); in rx_print() [all …]
|
D | print-tftp.c | 80 register int opcode, i; in tftp_print() local 90 opcode = EXTRACT_16BITS(&tp->th_opcode); in tftp_print() 91 cp = tok2str(op2str, "tftp-#%d", opcode); in tftp_print() 97 switch (opcode) { in tftp_print() 113 if (opcode != OACK) in tftp_print() 116 if (opcode != OACK) in tftp_print() 154 printf("(unknown #%d)", opcode); in tftp_print()
|
/external/bluez/hcidump/parser/ |
D | obex.c | 39 static char *opcode2str(uint8_t opcode) in opcode2str() argument 41 switch (opcode & 0x7f) { in opcode2str() 233 uint8_t last_opcode, opcode, status; in obex_dump() local 240 opcode = get_u8(frm); in obex_dump() 242 status = opcode & 0x7f; in obex_dump() 254 if (!(opcode & 0x70)) { in obex_dump() 256 opcode2str(opcode), in obex_dump() 257 opcode & 0x80 ? 'f' : 'c', length); in obex_dump() 258 set_opcode(frm->handle, frm->dlci, opcode); in obex_dump() 262 opcode & 0x80 ? 'f' : 'c', in obex_dump() [all …]
|
D | lmp.c | 170 static char *opcode2str(uint16_t opcode) in opcode2str() argument 172 switch (opcode) { in opcode2str() 386 uint8_t opcode = LMP_U8(frm); in accepted_dump() local 389 printf("op code %d (%s)\n", opcode, opcode2str(opcode)); in accepted_dump() 394 uint8_t opcode = LMP_U8(frm); in not_accepted_dump() local 398 printf("op code %d (%s)\n", opcode, opcode2str(opcode)); in not_accepted_dump() 800 uint16_t opcode = LMP_U8(frm) + (LMP_U8(frm) << 7); in accepted_ext_dump() local 803 printf("op code %d/%d (%s)\n", opcode & 0x7f, opcode >> 7, opcode2str(opcode)); in accepted_ext_dump() 808 uint16_t opcode = LMP_U8(frm) + (LMP_U8(frm) << 7); in not_accepted_ext_dump() local 812 printf("op code %d/%d (%s)\n", opcode & 0x7f, opcode >> 7, opcode2str(opcode)); in not_accepted_ext_dump() [all …]
|
D | parser.c | 123 uint8_t opcode; member 137 frame_table[i].opcode = 0; in del_frame() 211 return frame_table[i].opcode; in get_opcode() 216 void set_opcode(uint16_t handle, uint8_t dlci, uint8_t opcode) in set_opcode() argument 223 frame_table[i].opcode = opcode; in set_opcode()
|
/external/elfutils/libdw/ |
D | dwarf_getsrclines.c | 311 unsigned int opcode; in dwarf_getsrclines() local 316 opcode = *linep++; in dwarf_getsrclines() 319 if (likely (opcode >= opcode_base)) in dwarf_getsrclines() 328 + (opcode - opcode_base) % line_range); in dwarf_getsrclines() 330 * ((opcode - opcode_base) in dwarf_getsrclines() 345 else if (opcode == 0) in dwarf_getsrclines() 358 opcode = *linep++; in dwarf_getsrclines() 360 switch (opcode) in dwarf_getsrclines() 440 else if (opcode <= DW_LNS_set_epilog_begin) in dwarf_getsrclines() 443 switch (opcode) in dwarf_getsrclines() [all …]
|
D | dwarf_getmacros.c | 55 unsigned int opcode = *readp++; local 61 switch (opcode) 96 mac.opcode = opcode;
|
/external/bluez/utils/tools/ |
D | hciattach_tialt.c | 66 static int read_command_complete(int fd, uint16_t opcode) { in read_command_complete() argument 70 "Failed to read response for opcode %#04x\n", opcode); in read_command_complete() 86 FAILIF(resp.cmd_complete.opcode != (uint16_t)opcode, in read_command_complete() 88 resp.cmd_complete.opcode, opcode); in read_command_complete() 92 opcode); in read_command_complete() 110 cmd.hci_hdr.opcode = 0xff36; in texas_change_speed() 166 hci_cmd->plen, hci_cmd->opcode); in texas_load_firmware() 174 if (read_command_complete(fd, hci_cmd->opcode) < 0) { in texas_load_firmware()
|
/external/openssl/crypto/perlasm/ |
D | x86_64-xlate.pl | 76 { package opcode; # pick up opcodes package 324 my %opcode = # lea 2f-1f(%rip),%dst; 1: nop; 2: 340 $self->{value} = sprintf "\t.long\t0x%x,0x90000000",$opcode{$1}; 404 /\.picmeup/ && do { $self->{value} = sprintf"\tDD\t 0%Xh,090000000h",$opcode{$line}; 441 undef $opcode; 450 } elsif ($opcode=opcode->re(\$line)) { ARGUMENT: { 452 if ($src=register->re(\$line)) { opcode->size($src->size()); } 461 if ($dst=register->re(\$line)) { opcode->size($dst->size()); } 467 $sz=opcode->size(); 471 printf "\t%s\t%s,%s", $opcode->out($dst->size()), [all …]
|
/external/webkit/JavaScriptCore/assembler/ |
D | X86Assembler.h | 1298 void oneByteOp(OneByteOpcodeID opcode) in oneByteOp() argument 1301 m_buffer.putByteUnchecked(opcode); in oneByteOp() 1304 void oneByteOp(OneByteOpcodeID opcode, RegisterID reg) in oneByteOp() argument 1308 m_buffer.putByteUnchecked(opcode + (reg & 7)); in oneByteOp() 1311 void oneByteOp(OneByteOpcodeID opcode, int reg, RegisterID rm) in oneByteOp() argument 1315 m_buffer.putByteUnchecked(opcode); in oneByteOp() 1319 void oneByteOp(OneByteOpcodeID opcode, int reg, RegisterID base, int offset) in oneByteOp() argument 1323 m_buffer.putByteUnchecked(opcode); in oneByteOp() 1327 void oneByteOp_disp32(OneByteOpcodeID opcode, int reg, RegisterID base, int offset) in oneByteOp_disp32() argument 1331 m_buffer.putByteUnchecked(opcode); in oneByteOp_disp32() [all …]
|
/external/grub/netboot/ |
D | fsys_tftp.c | 104 if (tr->opcode == ntohs (TFTP_ERROR)) in buf_fill() 112 if (tr->opcode == ntohs (TFTP_OACK)) in buf_fill() 162 tp.opcode = htons (TFTP_ERROR); in buf_fill() 167 + sizeof (tp.opcode) + sizeof (tp.u.err.errcode) in buf_fill() 189 else if (tr->opcode == ntohs (TFTP_DATA)) in buf_fill() 216 tp.opcode = abort ? htons (TFTP_ERROR) : htons (TFTP_ACK); in buf_fill() 338 grub_printf ("opcode = 0x%x, rrq = ", (unsigned long) tp.opcode); in tftp_read() 429 tp.opcode = htons (TFTP_RRQ); in tftp_dir() 436 + sizeof (tp.ip) + sizeof (tp.udp) + sizeof (tp.opcode) + 1); in tftp_dir()
|
D | main.c | 264 arpreq.opcode = htons (ARP_REQUEST); in udp_transmit() 320 tp.opcode = htons (TFTP_RRQ); in tftp() 323 + sizeof (tp.ip) + sizeof (tp.udp) + sizeof (tp.opcode) + 1); in tftp() 368 if (tr->opcode == ntohs (TFTP_ERROR)) in tftp() 376 if (tr->opcode == ntohs (TFTP_OACK)) in tftp() 407 tp.opcode = htons (TFTP_ERROR); in tftp() 412 + sizeof (tp.opcode) + sizeof (tp.u.err.errcode) in tftp() 427 else if (tr->opcode == ntohs (TFTP_DATA)) in tftp() 446 tp.opcode = htons (TFTP_ACK); in tftp() 497 rarpreq.opcode = htons (RARP_REQUEST); in rarp() [all …]
|
/external/webkit/JavaScriptCore/bytecode/ |
D | Opcode.cpp | 40 #define OPCODE_NAME_ENTRY(opcode, size) #opcode, argument 169 void OpcodeStats::recordInstruction(int opcode) in recordInstruction() argument 171 opcodeCounts[opcode]++; in recordInstruction() 174 opcodePairCounts[lastOpcode][opcode]++; in recordInstruction() 176 lastOpcode = opcode; in recordInstruction()
|
D | Opcode.h | 169 #define OPCODE_ID_ENUM(opcode, length) opcode, argument 179 #define OPCODE_LENGTH(opcode) opcode##_length argument 181 #define OPCODE_ID_LENGTH_MAP(opcode, length) length, argument 223 static void recordInstruction(int opcode);
|
D | CodeBlock.cpp | 211 OpcodeID currentOpcode = exec->interpreter()->getOpcodeID(instructions[i].u.opcode); in instructionOffsetForNth() 287 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id)) { in printStructures() 291 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_self)) { in printStructures() 295 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_proto)) { in printStructures() 299 if (vPC[0].u.opcode == interpreter->getOpcode(op_put_by_id_transition)) { in printStructures() 303 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_chain)) { in printStructures() 307 if (vPC[0].u.opcode == interpreter->getOpcode(op_put_by_id)) { in printStructures() 311 if (vPC[0].u.opcode == interpreter->getOpcode(op_put_by_id_replace)) { in printStructures() 315 if (vPC[0].u.opcode == interpreter->getOpcode(op_resolve_global)) { in printStructures() 321 …opcode == interpreter->getOpcode(op_get_by_id_generic) || vPC[0].u.opcode == interpreter->getOpcod… in printStructures() [all …]
|
D | Instruction.h | 114 Instruction(Opcode opcode) in Instruction() 121 u.opcode = opcode; in Instruction() 138 Opcode opcode; member
|
/external/webkit/JavaScriptCore/docs/ |
D | make-bytecode-docs.pl | 17 my $opcode = $_; 31 …print OUTPUT "<h2><code>${opcode}</code></h2>\n<p><b>Format: </b><code>\n${format}\n</code></p>\n<… 33 push @undocumented, $opcode;
|
/external/webkit/WebCore/xml/ |
D | XPathPredicate.cpp | 70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs) in NumericOp() argument 71 : m_opcode(opcode) in NumericOp() 101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs) in EqTestOp() argument 102 : m_opcode(opcode) in EqTestOp() 204 LogicalOp::LogicalOp(Opcode opcode, Expression* lhs, Expression* rhs) in LogicalOp() argument 205 : m_opcode(opcode) in LogicalOp()
|
/external/qemu/hw/ |
D | goldfish_mmc.c | 165 struct mmc_opcode* opcode = mmc_opcodes; 167 while (opcode->cmd != command && opcode->cmd != -1) opcode++; 168 return opcode->name; 176 int opcode = cmd & 63; in goldfish_mmc_do_command() local 187 switch (opcode) { in goldfish_mmc_do_command()
|
/external/webkit/JavaScriptCore/pcre/ |
D | pcre_internal.h | 303 #define OPCODE_ENUM_VALUE(opcode) OP_##opcode, argument 391 static inline bool isBracketStartOpcode(unsigned char opcode) in isBracketStartOpcode() argument 393 if (opcode >= OP_BRA) in isBracketStartOpcode() 395 switch (opcode) { in isBracketStartOpcode()
|
/external/bluez/libs/include/bluetooth/ |
D | hci_lib.h | 196 static inline void hci_filter_set_opcode(int opcode, struct hci_filter *f) in hci_filter_set_opcode() argument 198 f->opcode = opcode; in hci_filter_set_opcode() 202 f->opcode = 0; in hci_filter_clear_opcode() 204 static inline int hci_filter_test_opcode(int opcode, struct hci_filter *f) in hci_filter_test_opcode() argument 206 return (f->opcode == opcode); in hci_filter_test_opcode()
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.h | 135 OpcodeID getOpcodeID(Opcode opcode) in getOpcodeID() argument 138 ASSERT(isOpcode(opcode)); in getOpcodeID() 139 return m_opcodeIDTable.get(opcode); in getOpcodeID() 141 return opcode; in getOpcodeID() 347 …bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op… in isCallBytecode() argument
|
/external/freetype/src/truetype/ |
D | ttinterp.c | 2583 A = (FT_Short)( CUR.opcode & 1 ) << 14; \ 2603 A = (FT_Short)( CUR.opcode & 1 ) << 14; \ 2623 A = (FT_Short)( CUR.opcode & 1 ) << 14; \ 2638 CUR.opcode, \ 2650 CUR.opcode, \ 3094 CUR.tt_metrics.compensations[CUR.opcode - 0x68] ); 3099 CUR.tt_metrics.compensations[CUR.opcode - 0x6C] ); 4151 CUR.opcode = CUR.code[CUR.IP]; in SkipCode() 4153 CUR.length = opcode_length[CUR.opcode]; in SkipCode() 4195 switch ( CUR.opcode ) in Ins_IF() [all …]
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 745 final int opcode = 0xFF & code [ip]; in visit() local 762 switch (opcode) in visit() 788 branches.put (ip, new IFJUMP2 (opcode, target)); in visit() 804 branches.put (ip, new JUMP2 (opcode, target)); in visit() 891 branches.put (ip, new JUMP4 (opcode, target)); in visit() 902 branches.put (ip, new RET (opcode, iv)); in visit() 916 branches.put (ip, new TERMINATE (opcode)); in visit() 929 size = (wide ? WIDE_SIZE : NARROW_SIZE) [opcode]; in visit() 934 wide = (opcode == _wide); in visit() 1485 protected Branch (final int opcode, final int [] targets) in Branch() argument [all …]
|