Home
last modified time | relevance | path

Searched refs:ch (Results 1 – 10 of 10) sorted by relevance

/dpdk/lib/net/
H A Drte_ether.c29 static int8_t get_xdigit(char ch) in get_xdigit() argument
31 if (ch >= '0' && ch <= '9') in get_xdigit()
32 return ch - '0'; in get_xdigit()
33 if (ch >= 'a' && ch <= 'f') in get_xdigit()
34 return ch - 'a' + 10; in get_xdigit()
35 if (ch >= 'A' && ch <= 'F') in get_xdigit()
36 return ch - 'A' + 10; in get_xdigit()
/dpdk/drivers/baseband/la12xx/
H A Dbbdev_la12xx.c134 ipc_ch_t *ch; in ipc_queue_configure() local
150 ch->md.pi = 0; in ipc_queue_configure()
151 ch->md.ci = 0; in ipc_queue_configure()
152 ch->md.msg_size = msg_size; in ipc_queue_configure()
158 ch->bd_h[i].modem_ptr = in ipc_queue_configure()
164 ch->bd_h[i].len = 0; in ipc_queue_configure()
166 ch->host_ipc_params = in ipc_queue_configure()
181 ipc_ch_t *ch; in la12xx_e200_queue_setup() local
206 ipc_br_md_t *md = &(ch->md); in la12xx_e200_queue_setup()
248 ch->la12xx_core_id = in la12xx_e200_queue_setup()
[all …]
/dpdk/drivers/net/ipn3ke/
H A Dipn3ke_representor.c2051 char *ch; in ipn3ke_rpst_stats_reset() local
2075 if (!ch) { in ipn3ke_rpst_stats_reset()
2082 ch++; in ipn3ke_rpst_stats_reset()
2086 if (!ch) { in ipn3ke_rpst_stats_reset()
2113 char *ch; in ipn3ke_rpst_stats_get() local
2143 if (!ch) { in ipn3ke_rpst_stats_get()
2150 ch++; in ipn3ke_rpst_stats_get()
2154 if (!ch) { in ipn3ke_rpst_stats_get()
2243 if (!ch) { in ipn3ke_rpst_xstats_get()
2250 ch++; in ipn3ke_rpst_xstats_get()
[all …]
/dpdk/examples/vdpa/
H A Dmain.c525 char ch; in main() local
567 while (scanf("%c", &ch)) { in main()
568 if (ch == 'q') in main()
570 while (ch != '\n') { in main()
571 if (scanf("%c", &ch)) in main()
572 printf("%c", ch); in main()
/dpdk/lib/cmdline/
H A Dcmdline_vt100.c73 vt100_parser(struct cmdline_vt100 *vt, char ch) in vt100_parser() argument
76 uint8_t c = (uint8_t) ch; in vt100_parser()
/dpdk/examples/ipsec-secgw/
H A Dparser.c110 char ch; in parse_range() local
122 while ((ch = *token++) != '\0') { in parse_range()
123 if (isdigit(ch)) { in parse_range()
126 num_str[pos++] = ch; in parse_range()
127 } else if (ch == ':') { in parse_range()
/dpdk/drivers/net/bnxt/hcapi/cfa/
H A Dhcapi_cfa_defs.h61 #define ucrc32(ch, crc) (crc32tbl[((crc) ^ (ch)) & 0xff] ^ ((crc) >> 8)) argument
/dpdk/drivers/bus/fslmc/qbman/
H A Dqbman_portal.c2813 uint16_t ch; member
2825 uint16_t ch; member
2848 p->ch = channelid; in qbman_swp_CDAN_set()
/dpdk/drivers/net/ice/base/
H A Dice_flex_pipe.c2636 struct ice_ptg_ptype **ch; in ice_ptg_remove_ptype() local
2651 ch = &hw->blk[blk].xlt1.ptg_tbl[ptg].first_ptype; in ice_ptg_remove_ptype()
2654 *ch = p->next_ptype; in ice_ptg_remove_ptype()
2658 ch = &p->next_ptype; in ice_ptg_remove_ptype()
/dpdk/doc/guides/contributing/
H A Dcoding_style.rst653 int ch;
784 switch (ch) { /* Indent the switch. */