Searched refs:subcode (Results 1 - 18 of 18) sorted by relevance

/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_common.h92 /* This subcode is sent by core PCI driver to indicate cores are ready. */
447 uint64_t subcode:7; member in struct:octeon_instr_irh
451 uint64_t ossp:32; /* opcode/subcode specific parameters */
455 uint64_t ossp:32; /* opcode/subcode specific parameters */
459 uint64_t subcode:7;
486 uint64_t subcode:8; member in struct:octeon_rh::__anon6677
489 uint64_t ossp:32; /* opcode/subcode specific parameters */
493 uint64_t subcode:8; member in struct:octeon_rh::__anon6678
505 uint64_t subcode:8; member in struct:octeon_rh::__anon6679
516 uint64_t subcode member in struct:octeon_rh::__anon6680
[all...]
H A Dlio_droq.h391 * Register a dispatch function for a opcode/subcode. The driver will call
393 * opcode/subcode in its output queues along with the user specified
397 * @param subcode - the subcode for which the dispatch will be registered
404 uint16_t subcode, lio_dispatch_fn_t fn,
408 * Remove registration for an opcode/subcode. This will delete the mapping for
409 * an opcode/subcode. The dispatch function will be unregistered and will no
410 * longer be called if a packet with the opcode/subcode arrives in the driver
414 * @param subcode - the subcode t
[all...]
H A Dlio_device.c570 uint16_t subcode)
575 uint16_t combined_opcode = LIO_OPCODE_SUBCODE(opcode, subcode);
614 * subcode - subcode for which driver should call the registered function
629 uint16_t subcode, lio_dispatch_fn_t fn, void *fn_arg)
633 uint16_t combined_opcode = LIO_OPCODE_SUBCODE(opcode, subcode);
652 * opcode/subcode.
654 pfn = lio_get_dispatch(oct, opcode, subcode);
684 lio_dev_err(oct, "Found previously registered dispatch fn for opcode/subcode: %x/%x\n",
685 opcode, subcode);
569 lio_get_dispatch(struct octeon_device *octeon_dev, uint16_t opcode, uint16_t subcode) argument
628 lio_register_dispatch_fn(struct octeon_device *oct, uint16_t opcode, uint16_t subcode, lio_dispatch_fn_t fn, void *fn_arg) argument
707 lio_unregister_dispatch_fn(struct octeon_device *oct, uint16_t opcode, uint16_t subcode) argument
[all...]
H A Dlio_ctrl.h192 irh->subcode = LIO_OPCODE_NIC_NW_DATA;
H A Dlio_iq.h210 /* opcode/subcode specific parameters */
330 uint8_t opcode, uint8_t subcode,
H A Dlio_droq.c52 uint16_t opcode, uint16_t subcode);
56 * function for a given opcode/subcode.
60 * @param subcode - the subcode for which the dispatch argument
68 uint16_t opcode, uint16_t subcode)
75 combined_opcode = LIO_OPCODE_SUBCODE(opcode, subcode);
535 (uint16_t)rh->r.subcode);
552 (unsigned int)rh->r.subcode);
758 (uint16_t)rdisp->rinfo->recv_pkt->rh.r.subcode));
67 lio_get_dispatch_arg(struct octeon_device *octeon_dev, uint16_t opcode, uint16_t subcode) argument
H A Dlio_request_manager.c632 uint8_t opcode, uint8_t subcode, uint32_t irh_ossp,
642 KASSERT(subcode <= 127, ("%s, %d, opcode > 127", __func__, __LINE__));
669 irh->subcode = subcode;
671 /* opcode/subcode specific parameters (ossp) */
631 lio_prepare_soft_command(struct octeon_device *oct, struct lio_soft_command *sc, uint8_t opcode, uint8_t subcode, uint32_t irh_ossp, uint64_t ossp0, uint64_t ossp1) argument
H A Dlio_device.h606 * given opcode/subcode.
610 * @param subcode - the subcode for which the dispatch function
620 uint16_t opcode, uint16_t subcode);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgnu-nat.c154 int code, subcode;
1338 ", code = %d, subcode = %d",
1340 e->exception, e->code, e->subcode);
1345 e->exception, e->code, e->subcode);
1643 int exception, int code, int subcode)
1649 "thread = %d, task = %d, exc = %d, code = %d, subcode = %d",
1650 thread_port, task_port, exception, code, subcode);
1704 inf->wait.exc.subcode = subcode;
153 int code, subcode; member in struct:exc_state
1618 S_exception_raise_request(mach_port_t port, mach_port_t reply_port, thread_t thread_port, task_t task_port, int exception, int code, int subcode) argument
/freebsd-11-stable/contrib/gcc/config/arm/
H A Darm.c4416 enum rtx_code subcode;
4480 || (((subcode = GET_CODE (XEXP (x, 1))) == ASHIFT
4481 || subcode == ASHIFTRT || subcode == LSHIFTRT
4482 || subcode == ROTATE || subcode == ROTATERT
4483 || (subcode == MULT
4542 + ((((subcode = GET_CODE (XEXP (x, 0))) == ASHIFT
4543 || subcode == LSHIFTRT || subcode
4406 enum rtx_code subcode; local
4746 enum rtx_code subcode = GET_CODE (XEXP (x, 0)); local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree.h1662 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_REDUCTION)->omp_clause.subcode.reduction_code)
1679 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_SCHEDULE)->omp_clause.subcode.schedule_kind)
1690 (OMP_CLAUSE_SUBCODE_CHECK (NODE, OMP_CLAUSE_DEFAULT)->omp_clause.subcode.default_kind)
1850 } GTY ((skip)) subcode;
H A Dc-common.c2508 enum tree_code subcode = resultcode;
2511 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
2515 ptrop = build_binary_op (subcode, ptrop,
2498 enum tree_code subcode = resultcode; local
H A Dc-typeck.c5929 enum tree_code subcode;
5968 subcode = TREE_CODE (subtype);
5969 if (array && subcode != ARRAY_TYPE)
5974 else if (!array && subcode != RECORD_TYPE && subcode != UNION_TYPE)
5899 enum tree_code subcode; local
/freebsd-11-stable/sys/dev/mpr/
H A Dmpr.c1920 u32 subcode:16; member in struct:loginfo_type::__anon7138
1956 sas_loginfo.dw.code, sas_loginfo.dw.subcode);
/freebsd-11-stable/sys/dev/mps/
H A Dmps.c1771 u32 subcode:16; member in struct:loginfo_type::__anon7144
1808 sas_loginfo.dw.subcode);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_ripencc.c398 void cmd_0xBBq (TSIPPKT *cmd, unsigned char subcode) ;
1160 unsigned char subcode
1165 cmd->buf[0] = subcode;
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dhttp.c2852 int subcode = code % 100; local
2859 if (subcode >= (int) response_classes[klass].num_responses)
2862 return response_classes[klass].responses[subcode];
/freebsd-11-stable/sys/cddl/dev/dtrace/x86/
H A Ddis_tables.c3270 uint_t subcode; local
3275 subcode = ((opcode6 & 0x3) << 1) |
3277 dp = (instable_t *)&dis_op0F7123[opcode5][subcode];

Completed in 472 milliseconds