Home
last modified time | relevance | path

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

/linux/include/trace/events/
H A Dmaple_tree.h82 TP_PROTO(const char *fn, struct ma_state *mas, unsigned long piv,
85 TP_ARGS(fn, mas, piv, val),
93 __field(unsigned long, piv)
104 __entry->piv = piv;
116 (unsigned long) __entry->piv,
/linux/kernel/bpf/
H A Dcrypto.c272 u8 *pdst, *piv; in bpf_crypto_crypt() local
294 piv = siv_len ? __bpf_dynptr_data_rw(siv, siv_len) : NULL; in bpf_crypto_crypt()
295 if (siv_len && !piv) in bpf_crypto_crypt()
298 err = decrypt ? ctx->type->decrypt(ctx->tfm, psrc, pdst, src_len, piv) in bpf_crypto_crypt()
299 : ctx->type->encrypt(ctx->tfm, psrc, pdst, src_len, piv); in bpf_crypto_crypt()
/linux/lib/
H A Dmaple_tree.c714 unsigned char piv, enum maple_type type) in mas_safe_pivot() argument
716 if (piv >= mt_pivots[type]) in mas_safe_pivot()
719 return pivots[piv]; in mas_safe_pivot()
745 static inline void mte_set_pivot(struct maple_enode *mn, unsigned char piv, in mte_set_pivot() argument
751 BUG_ON(piv >= mt_pivots[type]); in mte_set_pivot()
755 node->mr64.pivot[piv] = val; in mte_set_pivot()
758 node->ma64.pivot[piv] = val; in mte_set_pivot()
2085 unsigned long piv; in mas_store_b_node() local
2095 piv = b_node->pivot[b_end - 1]; in mas_store_b_node()
2097 piv = mas->min - 1; in mas_store_b_node()
[all …]
/linux/sound/usb/line6/
H A Dplayback.c123 short piv = le16_to_cpu(*pi); in add_monitor_signal() local
124 int val = pov + ((piv * volume) >> 8); in add_monitor_signal()