Home
last modified time | relevance | path

Searched refs:_ch (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/dev/mgb/
H A Dif_mgb.h101 #define MGB_DMAC_CMD_RESET(_s, _ch) MGB_DMAC_CMD_VAL(_s, 8, _ch) argument
102 #define MGB_DMAC_CMD_START(_s, _ch) MGB_DMAC_CMD_VAL(_s, 4, _ch) argument
103 #define MGB_DMAC_CMD_STOP( _s, _ch) MGB_DMAC_CMD_VAL(_s, 0, _ch) argument
110 #define MGB_DMAC_CMD_STATE(sc, _s, _ch) \ argument
112 CSR_READ_REG(sc, MGB_DMAC_CMD) & MGB_DMAC_CMD_START(_s, _ch), \
113 CSR_READ_REG(sc, MGB_DMAC_CMD) & MGB_DMAC_CMD_STOP(_s, _ch)))
114 #define MGB_DMAC_STATE_IS_INITIAL(sc, _s, _ch) \ argument
115 (MGB_DMAC_CMD_STATE(sc, _s, _ch) == MGB_DMAC_STATE_INITIAL)
120 #define MGB_DMAC_TX_INTR_ENBL(_ch) (1 << (_ch)) argument
121 #define MGB_DMAC_RX_INTR_ENBL(_ch) (1 << (16 + (_ch))) argument
[all …]
/freebsd/lib/libc/stdlib/
H A Dset_constraint_handler_s.c41 static constraint_handler_t *_ch = NULL; variable
55 old = _ch; in set_constraint_handler_s()
56 _ch = new; in set_constraint_handler_s()
75 ch = _ch != NULL ? *_ch : NULL; in __throw_constraint_handler_s()
/freebsd/sys/arm/ti/cpsw/
H A Dif_cpswreg.h67 #define CPSW_CPDMA_RX_INT_THRESH(_ch) (1 << (8 + ((_ch) & 7))) argument
68 #define CPSW_CPDMA_RX_INT(_ch) (1 << (0 + ((_ch) & 7))) argument
/freebsd/sys/dev/ice/
H A Dice_defs.h56 #define IS_ASCII(_ch) ((_ch) < 0x80) argument
/freebsd/contrib/ntp/sntp/libopts/
H A Dputshell.c126 # define add_esc_ch(_ch) { *(out++) = '\\'; *(out++) = (_ch); } in optionQuoteString() argument
H A Dusage.c40 #define GRAPH_CH(_ch) \ argument
41 ((((unsigned)_ch) <= 0x7E) && (((unsigned)_ch) > ' '))
/freebsd/usr.sbin/lpr/pac/
H A Dpac.c85 static int any(int _ch, const char _str[]);
/freebsd/contrib/mandoc/
H A Dmandocdb.c350 #define CHECKOP(_op, _ch) do \ in mandocdb() argument
352 warnx("-%c: Conflicting option", (_ch)); \ in mandocdb()