Searched refs:opcode (Results 51 - 75 of 353) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/perlasm/
H A Dx86_64-xlate.pl67 { package opcode; # pick up opcodes
303 my %opcode = # lea 2f-1f(%rip),%dst; 1: nop; 2:
319 $self->{value} = sprintf "\t.long\t0x%x,0x90000000",$opcode{$1};
372 /\.picmeup/ && do { $self->{value} = sprintf"\tDD\t 0%Xh,090000000h",$opcode{$line};
396 undef $opcode;
405 } elsif ($opcode=opcode->re(\$line)) { ARGUMENT: {
407 if ($src=register->re(\$line)) { opcode->size($src->size()); }
416 if ($dst=register->re(\$line)) { opcode->size($dst->size()); }
422 $sz=opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Drtmutex-tester.c27 int opcode; member in struct:test_thread_data
60 switch(td->opcode) {
93 switch(td->opcode) {
175 op = td->opcode;
232 td->opcode = 0;
237 if (td->opcode > 0) {
243 if (td->opcode == RTTEST_LOCKCONT)
245 td->opcode = ret;
253 td->opcode = op;
269 if (td->opcode >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/scsi/
H A Discsi_proto.h55 uint8_t opcode; member in struct:iscsi_hdr
116 uint8_t opcode; member in struct:iscsi_cmd
152 uint8_t opcode; member in struct:iscsi_cmd_rsp
183 uint8_t opcode; member in struct:iscsi_async
211 uint8_t opcode; member in struct:iscsi_nopout
226 uint8_t opcode; member in struct:iscsi_nopin
242 uint8_t opcode; member in struct:iscsi_tm
271 uint8_t opcode; member in struct:iscsi_tm_rsp
298 uint8_t opcode; member in struct:iscsi_r2t_rsp
316 uint8_t opcode; member in struct:iscsi_data
335 uint8_t opcode; member in struct:iscsi_data_rsp
360 uint8_t opcode; member in struct:iscsi_text
378 uint8_t opcode; member in struct:iscsi_text_rsp
395 uint8_t opcode; member in struct:iscsi_login
424 uint8_t opcode; member in struct:iscsi_login_rsp
483 uint8_t opcode; member in struct:iscsi_logout
509 uint8_t opcode; member in struct:iscsi_logout_rsp
536 uint8_t opcode; member in struct:iscsi_snack
553 uint8_t opcode; member in struct:iscsi_reject
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/parser/
H A Dpsargs.c3 * Module Name: psargs - Parse AML opcode arguments
391 u16 opcode; local
401 opcode = AML_BYTE_OP;
410 opcode = AML_WORD_OP;
419 opcode = AML_DWORD_OP;
428 opcode = AML_QWORD_OP;
437 opcode = AML_STRING_OP;
463 acpi_ps_init_op(arg, opcode);
487 u16 opcode; local
497 opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/networking/
H A Dtftp.c124 uint16_t opcode; variable
144 /* build opcode */
145 opcode = TFTP_WRQ;
147 opcode = TFTP_RRQ;
190 opcode = TFTP_ACK;
192 opcode = TFTP_DATA;
205 *((uint16_t*)xbuf) = htons(opcode); /* fill in opcode part */
218 if (finished && (opcode == TFTP_ACK))
264 opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/nwfpe/
H A Ddouble_cpdo.c111 unsigned int DoubleCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd) argument
117 Fm = getFm(opcode);
118 if (CONSTANT_FM(opcode)) {
135 opc_mask_shift = (opcode & MASK_ARITHMETIC_OPCODE) >> 20;
136 if (!MONADIC_INSTRUCTION(opcode)) {
137 unsigned int Fn = getFn(opcode);
H A Dextended_cpdo.c90 unsigned int ExtendedCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd) argument
96 Fm = getFm(opcode);
97 if (CONSTANT_FM(opcode)) {
118 opc_mask_shift = (opcode & MASK_ARITHMETIC_OPCODE) >> 20;
119 if (!MONADIC_INSTRUCTION(opcode)) {
120 unsigned int Fn = getFn(opcode);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Drpza.c78 unsigned char opcode; local
112 opcode = s->buf[stream_ptr++]; /* Get opcode */
114 n_blocks = (opcode & 0x1f) + 1; /* Extract block counter from opcode */
116 /* If opcode MSbit is 0, we need more data to decide what to do */
117 if ((opcode & 0x80) == 0) {
118 colorA = (opcode << 8) | (s->buf[stream_ptr++]);
119 opcode = 0;
121 /* Must behave as opcode 11
[all...]
H A Dsmc.c61 (opcode & 0x10) ? (1 + s->buf[stream_ptr++]) : 1 + (opcode & 0x0F);
87 unsigned char opcode; local
145 opcode = s->buf[stream_ptr++];
146 switch (opcode & 0xF0) {
163 av_log(s->avctx, AV_LOG_INFO, "encountered repeat block opcode (%02X) but no blocks rendered yet\n",
164 opcode & 0xF0);
197 av_log(s->avctx, AV_LOG_INFO, "encountered repeat block opcode (%02X) but not enough blocks rendered yet\n",
198 opcode & 0xF0);
257 n_blocks = (opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/xmon/
H A Dppc.h1 /* ppc.h -- Header file for PowerPC opcode table
24 /* The opcode table is an array of struct powerpc_opcode. */
28 /* The opcode name. */
31 /* The opcode itself. Those bits which will be filled in with
33 unsigned long opcode; member in struct:powerpc_opcode
35 /* The opcode mask. This is used by the disassembler. This is a
37 opcode field, and zeroes indicating those bits which need not
41 /* One bit flags for the opcode. These are used to indicate which
52 /* The table itself is sorted by major opcode number, and is otherwise
80 /* A macro to extract the major opcode fro
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mmc/core/
H A Dmmc_ops.c32 cmd.opcode = MMC_SELECT_CARD;
72 cmd.opcode = MMC_GO_IDLE_STATE;
96 cmd.opcode = MMC_SEND_OP_COND;
129 cmd.opcode = MMC_ALL_SEND_CID;
152 cmd.opcode = MMC_SET_RELATIVE_ADDR;
174 cmd.opcode = MMC_SEND_CSD;
205 cmd.opcode = MMC_SEND_EXT_CSD;
239 cmd.opcode = MMC_SWITCH;
263 cmd.opcode = MMC_SEND_STATUS;
H A Dsd_ops.c88 cmd.opcode = MMC_APP_CMD;
119 cmd.opcode = SD_APP_SET_BUS_WIDTH;
149 cmd.opcode = SD_APP_OP_COND;
183 cmd.opcode = SD_SEND_IF_COND;
207 cmd.opcode = SD_SEND_RELATIVE_ADDR;
243 cmd.opcode = SD_APP_SEND_SCR;
291 cmd.opcode = SD_SWITCH;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/netfilter_bridge/
H A Debt_arp.h21 __be16 opcode; member in struct:ebt_arp_info
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/celleb/
H A Dbeat_wrapper.h26 extern s64 beat_hcall_norets(u64 opcode, ...);
27 extern s64 beat_hcall_norets8(u64 opcode, u64 arg1, u64 arg2, u64 arg3,
29 extern s64 beat_hcall1(u64 opcode, u64 retbuf[1], ...);
30 extern s64 beat_hcall2(u64 opcode, u64 retbuf[2], ...);
31 extern s64 beat_hcall3(u64 opcode, u64 retbuf[3], ...);
32 extern s64 beat_hcall4(u64 opcode, u64 retbuf[4], ...);
33 extern s64 beat_hcall5(u64 opcode, u64 retbuf[5], ...);
34 extern s64 beat_hcall6(u64 opcode, u64 retbuf[6], ...);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/db_printlog/
H A Dstatus.awk29 /opcode:/ {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/mm/
H A Dpg-r4k.c130 mi.i_format.opcode = pref_op;
145 mi.i_format.opcode = ld_op;
148 mi.i_format.opcode = lw_op;
172 mi.i_format.opcode = pref_op;
188 mi.c_format.opcode = cache_op;
214 mi.c_format.opcode = cache_op;
230 mi.i_format.opcode = sd_op;
233 mi.i_format.opcode = sw_op;
264 mi.i_format.opcode = cpu_has_64bit_gp_regs ? daddiu_op : addiu_op;
278 mi.i_format.opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/cxgb3/
H A Diwch_cq.c85 PDBG("%s qpid 0x%x type %d opcode %d status 0x%x wrid hi 0x%x "
96 wc->opcode = IB_WC_RECV;
100 wc->opcode = IB_WC_RDMA_WRITE;
103 wc->opcode = IB_WC_RDMA_READ;
108 wc->opcode = IB_WC_SEND;
111 wc->opcode = IB_WC_BIND_MW;
120 printk(KERN_ERR MOD "Unexpected opcode %d "
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/atm/
H A Dfore200e.h249 typedef enum opcode { enum
278 /* activate VC command opcode */
282 enum opcode opcode : 8, /* cp opcode */
293 struct activate_opcode opcode; /* activate VC command opcode */ member in struct:activate_block
300 /* deactivate VC command opcode */
304 enum opcode opcode
313 struct deactivate_opcode opcode; /* deactivate VC command opcode */ member in struct:deactivate_block
344 struct oc3_opcode opcode; /* set/get OC-3 regs command opcode */ member in struct:oc3_block
465 struct stats_opcode opcode; /* get statistics command opcode */ member in struct:stats_block
492 struct prom_opcode opcode; /* get PROM data command opcode */ member in struct:prom_block
500 enum opcode opcode; /* operation code */ member in union:cmd
669 enum opcode opcode; /* initialize command */ member in struct:init_block
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/dispatcher/
H A Ddsobject.c215 "Expecting bytelist, got AML opcode %X in op %p",
284 * than the Package list length (for the fixed length package opcode), some
446 * Opcode - AML opcode associated with the object
460 u16 opcode,
470 op_info = acpi_ps_get_opcode_info(opcode);
473 /* Unknown opcode */
519 switch (opcode) {
549 "Unknown constant opcode %X",
550 opcode));
593 /* Split the opcode int
458 acpi_ds_init_object_from_op(struct acpi_walk_state *walk_state, union acpi_parse_object *op, u16 opcode, union acpi_operand_object **ret_obj_desc) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/executer/
H A Dexmisc.c89 switch (obj_desc->reference.opcode) {
101 ACPI_ERROR((AE_INFO, "Unknown Reference opcode %X",
102 obj_desc->reference.opcode));
130 reference_obj->reference.opcode = AML_REF_OF_OP;
399 * PARAMETERS: Opcode - AML opcode
405 * DESCRIPTION: Execute a math AML opcode. The purpose of having all of the
412 acpi_ex_do_math_op(u16 opcode, acpi_integer integer0, acpi_integer integer1) argument
417 switch (opcode) {
482 * PARAMETERS: Opcode - AML opcode
489 * DESCRIPTION: Execute a logical "Numeric" AML opcode
499 acpi_ex_do_logical_numeric_op(u16 opcode, acpi_integer integer0, acpi_integer integer1, u8 * logical_result) argument
561 acpi_ex_do_logical_op(u16 opcode, union acpi_operand_object *operand0, union acpi_operand_object *operand1, u8 * logical_result) argument
[all...]
H A Dexoparg6.c65 * required for this opcode type (1 through 6 args).
67 * for this opcode type (0, 1, or 2 targets).
68 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
211 * DESCRIPTION: Execute opcode with 6 arguments, no target, and a return value
224 acpi_ps_get_opcode_name(walk_state->opcode));
226 switch (walk_state->opcode) {
319 ACPI_ERROR((AE_INFO, "Unknown AML opcode %X",
320 walk_state->opcode));
H A Dexresnte.c240 switch (source_desc->reference.opcode) {
256 "Unsupported Reference opcode %X (%s)",
257 source_desc->reference.opcode,
259 reference.opcode)));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dbreg/
H A Ddbreg_rec.c77 switch (argp->opcode) {
90 else if (argp->opcode != DBREG_REOPEN)
128 if (op == DB_TXN_OPENFILES && argp->opcode != DBREG_CHKPNT)
206 argp->opcode != DBREG_RCLOSE) ||
207 argp->opcode == DBREG_CHKPNT) {
339 if (argp->opcode == DBREG_REOPEN ||
401 argp->fileid, argp->meta_pgno, info, argp->id, argp->opcode));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dtraps.c423 static inline void simulate_ll(struct pt_regs *regs, unsigned int opcode) argument
435 offset = opcode & OFFSET;
440 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
464 regs->regs[(opcode & RT) >> 16] = value;
472 static inline void simulate_sc(struct pt_regs *regs, unsigned int opcode) argument
485 offset = opcode & OFFSET;
490 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
491 reg = (opcode & RT) >> 16;
524 * ll uses the opcode of lwc0 and sc uses the opcode o
532 unsigned int opcode; local
561 unsigned int opcode; local
646 unsigned int opcode, bcode; local
696 unsigned int opcode, tcode = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mm/
H A Dabort-macro.S16 and r3, r3, # 0xfe00 @ Mask opcode field

Completed in 310 milliseconds

1234567891011>>