Searched refs:op_mode (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/usr.sbin/mfiutil/
H A Dmfi_patrol.c107 switch (prop.op_mode) {
118 printf("??? (%02x)\n", prop.op_mode);
121 if (prop.op_mode == MFI_PR_OPMODE_AUTO) {
258 uint8_t op_mode; local
267 op_mode = MFI_PR_OPMODE_AUTO;
290 op_mode = MFI_PR_OPMODE_MANUAL;
292 op_mode = MFI_PR_OPMODE_DISABLED;
310 prop.op_mode = op_mode;
311 if (op_mode
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dsimplify-rtx.c220 enum machine_mode op_mode)
225 if ((tem = simplify_unary_operation (code, mode, op, op_mode)) != 0)
272 enum machine_mode op_mode;
286 op_mode = GET_MODE (op0);
290 return simplify_gen_unary (code, mode, op0, op_mode);
304 op_mode = GET_MODE (op0) != VOIDmode ? GET_MODE (op0) : GET_MODE (op1);
309 return simplify_gen_relational (code, mode, op_mode, op0, op1);
314 op_mode = GET_MODE (op0);
320 if (op_mode == VOIDmode)
321 op_mode
215 simplify_gen_unary(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
267 enum machine_mode op_mode; local
371 simplify_unary_operation(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
485 enum machine_mode op_mode; local
871 simplify_const_unary_operation(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
[all...]
H A Dcombine.c6866 enum machine_mode op_mode;
6882 op_mode = ((GET_MODE_CLASS (mode) == GET_MODE_CLASS (GET_MODE (x))
6890 op_mode = GET_MODE (x);
6893 if (op_mode)
6894 mask &= GET_MODE_MASK (op_mode);
6967 x = simplify_and_const_int (x, op_mode, XEXP (x, 0),
7103 op0 = gen_lowpart_or_truncate (op_mode,
7106 op1 = gen_lowpart_or_truncate (op_mode,
7110 if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
7111 x = simplify_gen_binary (code, op_mode, op
6839 enum machine_mode op_mode; local
[all...]
H A Dexpr.c9315 enum machine_mode op_mode;
9349 op_mode = insn_data[(int) CODE_FOR_casesi].operand[0].mode;
9351 (index, op_mode))
9352 index = copy_to_mode_reg (op_mode, index);
9356 op_mode = insn_data[(int) CODE_FOR_casesi].operand[1].mode;
9357 op1 = convert_modes (op_mode, TYPE_MODE (TREE_TYPE (minval)),
9360 (op1, op_mode))
9361 op1 = copy_to_mode_reg (op_mode, op1);
9365 op_mode = insn_data[(int) CODE_FOR_casesi].operand[2].mode;
9366 op2 = convert_modes (op_mode, TYPE_MOD
9290 enum machine_mode op_mode; local
[all...]
H A Dcse.c4607 enum machine_mode op_mode = GET_MODE (op);
4608 if (op_mode == mode || op_mode == VOIDmode)
4610 return lowpart_subreg (mode, op, op_mode);
4586 enum machine_mode op_mode = GET_MODE (op); local
H A Dexpmed.c358 enum machine_mode op_mode = mode_for_extraction (EP_insv, 3);
638 && GET_MODE_BITSIZE (op_mode) >= bitsize
640 && (bitsize + bitpos > GET_MODE_BITSIZE (op_mode)))
357 enum machine_mode op_mode = mode_for_extraction (EP_insv, 3); local
/freebsd-11-stable/sys/contrib/alpine-hal/
H A Dal_hal_pcie.c318 enum al_pcie_operating_mode op_mode = al_pcie_operating_mode_get(pcie_port); local
324 al_bool tx_relaxed_ordering = (op_mode == AL_PCIE_OPERATING_MODE_RC ? AL_FALSE : AL_TRUE);
325 al_bool rx_relaxed_ordering = (op_mode == AL_PCIE_OPERATING_MODE_RC ? AL_TRUE : AL_FALSE);
1279 enum al_pcie_operating_mode op_mode = al_pcie_operating_mode_get(pcie_port); local
1282 if (op_mode != AL_PCIE_OPERATING_MODE_EP) {
1284 pcie_port->port_id, op_mode);
1612 enum al_pcie_operating_mode op_mode; local
1633 op_mode = al_pcie_operating_mode_get(pcie_port);
1694 if ((op_mode == AL_PCIE_OPERATING_MODE_EP) && (pcie_port->max_num_of_pfs > 1)) {
1778 if (op_mode
2008 enum al_pcie_operating_mode op_mode = al_pcie_operating_mode_get(pcie_port); local
2048 enum al_pcie_operating_mode op_mode = al_pcie_operating_mode_get(pcie_port); local
2083 enum al_pcie_operating_mode op_mode = al_pcie_operating_mode_get(pcie_port); local
2323 enum al_pcie_operating_mode op_mode = al_pcie_operating_mode_get(pcie_port); local
[all...]
/freebsd-11-stable/sys/dev/lmc/
H A Dif_lmc.c2952 u_int32_t status, cfcs, op_mode; local
2985 op_mode = READ_CSR(TLP_OP_MODE);
2987 if ((op_mode & TLP_OP_TX_THRESH) < TLP_OP_TX_THRESH)
2989 op_mode += 0x4000; /* increment TX_THRESH field; can't overflow */
2990 WRITE_CSR(TLP_OP_MODE, op_mode & ~TLP_OP_TX_RUN);
2993 WRITE_CSR(TLP_OP_MODE, op_mode); /* restart tx */
2996 NAME_UNIT, 128<<((op_mode>>TLP_OP_TR_SHIFT)&3));
3011 op_mode = READ_CSR(TLP_OP_MODE);
3012 WRITE_CSR(TLP_OP_MODE, op_mode & ~TLP_OP_RX_RUN);
3015 WRITE_CSR(TLP_OP_MODE, op_mode); /* restar
3352 u_int32_t op_mode = READ_CSR(TLP_OP_MODE); local
3362 u_int32_t op_mode = READ_CSR(TLP_OP_MODE); local
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_mx4200.c953 char time_mark_valid, time_sync, op_mode; local
966 &hour, &minute, &second, &time_sync, &op_mode,
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Drs6000.c11217 enum machine_mode op_mode = GET_MODE (rs6000_compare_op0);
11219 if (op_mode == VOIDmode)
11220 op_mode = GET_MODE (rs6000_compare_op1);
11228 switch (op_mode)
11252 switch (op_mode)
11276 switch (op_mode)
11319 switch (op_mode)
11450 enum machine_mode op_mode;
11491 op_mode = GET_MODE (rs6000_compare_op0);
11492 if (op_mode
11188 enum machine_mode op_mode = GET_MODE (rs6000_compare_op0); local
11421 enum machine_mode op_mode; local
11652 get_vec_cmp_insn(enum rtx_code code, enum machine_mode dest_mode, enum machine_mode op_mode) argument
11709 enum machine_mode op_mode = GET_MODE (op1); local
[all...]
/freebsd-11-stable/sys/dev/mfi/
H A Dmfireg.h1438 uint8_t op_mode; member in struct:mfi_pr_properties
/freebsd-11-stable/contrib/gcc/config/i386/
H A Di386.c10272 enum machine_mode op_mode = GET_MODE (op0);
10273 int is_sse = TARGET_SSE_MATH && SSE_FLOAT_MODE_P (op_mode);
10283 || (op_mode == XFmode
10289 op0 = force_reg (op_mode, op0);
10290 op1 = force_reg (op_mode, op1);
10309 op0 = force_reg (op_mode, op0);
10315 op1 = validize_mem (force_const_mem (op_mode, op1));
10319 op1 = force_reg (op_mode, op1);
10322 op1 = force_reg (op_mode, op1);
10335 op0 = force_reg (op_mode, op
10247 enum machine_mode op_mode = GET_MODE (op0); local
[all...]

Completed in 291 milliseconds