Home
last modified time | relevance | path

Searched refs:cindex (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/drivers/hwmon/pmbus/
Dadm1275.c374 int vindex = -1, voindex = -1, cindex = -1, pindex = -1; in adm1275_probe() local
453 cindex = 1; in adm1275_probe()
457 cindex = 2; in adm1275_probe()
478 cindex = (config & ADM1272_IRANGE) ? 3 : 2; in adm1275_probe()
528 cindex = 2; in adm1275_probe()
547 cindex = 2; in adm1275_probe()
563 cindex = 1; in adm1275_probe()
615 cindex = 3; in adm1275_probe()
618 cindex = 4; in adm1275_probe()
621 cindex = 5; in adm1275_probe()
[all …]
/Linux-v4.19/net/ipv4/
Dfib_trie.c859 unsigned long cindex = get_index(tn->key, tp); in resize() local
869 BUG_ON(tn != get_child(tp, cindex)); in resize()
884 tn = get_child(tp, cindex); in resize()
907 tn = get_child(tp, cindex); in resize()
1327 t_key cindex; in fib_table_lookup() local
1330 cindex = 0; in fib_table_lookup()
1332 n = get_child_rcu(pn, cindex); in fib_table_lookup()
1372 cindex = index; in fib_table_lookup()
1412 while (!cindex) { in fib_table_lookup()
1429 cindex = get_index(pkey, pn); in fib_table_lookup()
[all …]
/Linux-v4.19/tools/perf/util/
Dvalues.c187 int tindex, cindex; in perf_read_values_add_value() local
192 cindex = perf_read_values__findnew_counter(values, rawid, name); in perf_read_values_add_value()
193 if (cindex < 0) in perf_read_values_add_value()
194 return cindex; in perf_read_values_add_value()
196 values->value[tindex][cindex] += value; in perf_read_values_add_value()
/Linux-v4.19/drivers/net/wireless/ath/ath9k/
Dxmit.c319 int index, cindex; in ath_tx_update_baw() local
325 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1); in ath_tx_update_baw()
327 __clear_bit(cindex, tid->tx_buf); in ath_tx_update_baw()
342 int index, cindex; in ath_tx_addto_baw() local
348 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1); in ath_tx_addto_baw()
349 __set_bit(cindex, tid->tx_buf); in ath_tx_addto_baw()
354 tid->baw_tail = cindex; in ath_tx_addto_baw()