Home
last modified time | relevance | path

Searched defs:K (Results 1 – 25 of 31) sorted by relevance

12

/linux/rust/kernel/
H A Drbtree.rs201 iter(&self) -> Iter<'_, K, V> iter() argument
216 iter_mut(&mut self) -> IterMut<'_, K, V> iter_mut() argument
246 cursor_front_mut(&mut self) -> Option<CursorMut<'_, K, V>> cursor_front_mut() argument
261 cursor_front(&self) -> Option<Cursor<'_, K, V>> cursor_front() argument
276 cursor_back_mut(&mut self) -> Option<CursorMut<'_, K, V>> cursor_back_mut() argument
291 cursor_back(&self) -> Option<Cursor<'_, K, V>> cursor_back() argument
318 try_create_and_insert( &mut self, key: K, value: V, flags: Flags, ) -> Result<Option<RBTreeNode<K, V>>> try_create_and_insert() argument
321 try_create_and_insert( &mut self, key: K, value: V, flags: Flags, ) -> Result<Option<RBTreeNode<K, V>>> try_create_and_insert() argument
331 insert(&mut self, node: RBTreeNode<K, V>) -> Option<RBTreeNode<K, V>> insert() argument
341 raw_entry(&mut self, key: &K) -> RawEntry<'_, K, V> raw_entry() argument
395 entry(&mut self, key: K) -> Entry<'_, K, V> entry() argument
403 find_mut(&mut self, key: &K) -> Option<OccupiedEntry<'_, K, V>> find_mut() argument
438 remove_node(&mut self, key: &K) -> Option<RBTreeNode<K, V>> remove_node() argument
454 cursor_lower_bound_mut(&mut self, key: &K) -> Option<CursorMut<'_, K, V>> where K: Ord, cursor_lower_bound_mut() argument
475 cursor_lower_bound(&self, key: &K) -> Option<Cursor<'_, K, V>> where K: Ord, cursor_lower_bound() argument
826 current(&self) -> (&K, &V) current() argument
837 to_key_value<'b>(node: NonNull<bindings::rb_node>) -> (&'b K, &'b V) to_key_value() argument
851 peek_prev(&self) -> Option<(&K, &V)> peek_prev() argument
856 peek_next(&self) -> Option<(&K, &V)> peek_next() argument
860 peek(&self, direction: Direction) -> Option<(&K, &V)> peek() argument
895 current(&self) -> (&K, &V) current() argument
903 current_mut(&mut self) -> (&K, &mut V) current_mut() argument
915 remove_current(self) -> (Option<Self>, RBTreeNode<K, V>) remove_current() argument
939 remove_prev(&mut self) -> Option<RBTreeNode<K, V>> remove_prev() argument
944 remove_next(&mut self) -> Option<RBTreeNode<K, V>> remove_next() argument
948 remove_neighbor(&mut self, direction: Direction) -> Option<RBTreeNode<K, V>> remove_neighbor() argument
984 peek_prev(&self) -> Option<(&K, &V)> peek_prev() argument
989 peek_next(&self) -> Option<(&K, &V)> peek_next() argument
993 peek(&self, direction: Direction) -> Option<(&K, &V)> peek() argument
1003 peek_prev_mut(&mut self) -> Option<(&K, &mut V)> peek_prev_mut() argument
1008 peek_next_mut(&mut self) -> Option<(&K, &mut V)> peek_next_mut() argument
1012 peek_mut(&mut self, direction: Direction) -> Option<(&K, &mut V)> peek_mut() argument
1037 to_key_value<'b>(node: NonNull<bindings::rb_node>) -> (&'b K, &'b V) to_key_value() argument
1048 to_key_value_mut<'b>(node: NonNull<bindings::rb_node>) -> (&'b K, &'b mut V) to_key_value_mut() argument
1059 to_key_value_raw<'b>(node: NonNull<bindings::rb_node>) -> (&'b K, *mut V) to_key_value_raw() argument
1193 new(flags: Flags) -> Result<RBTreeNodeReservation<K, V>> new() argument
1211 into_node(self, key: K, value: V) -> RBTreeNode<K, V> into_node() argument
1235 new(key: K, value: V, flags: Flags) -> Result<RBTreeNode<K, V>> new() argument
1240 to_key_value(self) -> (K, V) to_key_value() argument
1263 into_reservation(self) -> RBTreeNodeReservation<K, V> into_reservation() argument
1315 insert(self, node: RBTreeNode<K, V>) -> &'a mut V insert() argument
1337 insert(self, value: V, reservation: RBTreeNodeReservation<K, V>) -> &'a mut V insert() argument
1380 remove_node(self) -> RBTreeNode<K, V> remove_node() argument
1404 replace(self, node: RBTreeNode<K, V>) -> RBTreeNode<K, V> replace() argument
[all...]
/linux/lib/crypto/
H A Ddes.c581 #define ROUND(L, R, A, B, K, d) \ argument
782 const u32 *K = ctx->expkey; in des_encrypt() local
803 const u32 *K = ctx->expkey + DES_EXPKEY_WORDS - 2; in des_decrypt() local
845 const u32 *K = dctx->expkey; in des3_ede_encrypt() local
874 const u32 *K = dctx->expkey + DES3_EDE_EXPKEY_WORDS - 2; in des3_ede_decrypt() local
H A Dsm3.c18 static const u32 ____cacheline_aligned K[64] = { variable
/linux/arch/sparc/net/
H A Dbpf_jit_comp_32.c68 #define SETHI(K, REG) \ argument
70 #define OR_LO(K, REG) \ argument
126 #define emit_set_const(K, REG) \ argument
157 #define emit_alu_K(OPCODE, K) \ argument
171 #define emit_loadimm(K, DEST) \ argument
391 unsigned int K = filter[i].k; in bpf_jit_compile() local
593 #define CHOOSE_LOAD_FUNC(K, func) \ in bpf_jit_compile() argument
H A Dbpf_jit_comp_64.c136 #define SETHI(K, REG) \ argument
138 #define OR_LO(K, REG) \ argument
267 static void emit_set_const(s32 K, u32 reg, struct jit_ctx *ctx) in emit_set_const()
274 static void emit_set_const_sext(s32 K, u32 reg, struct jit_ctx *ctx) in emit_set_const_sext()
336 static void emit_loadimm32(s32 K, unsigned int dest, struct jit_ctx *ctx) in emit_loadimm32()
346 static void emit_loadimm(s32 K, unsigned int dest, struct jit_ctx *ctx) in emit_loadimm()
356 static void emit_loadimm_sext(s32 K, unsigned int dest, struct jit_ctx *ctx) in emit_loadimm_sext()
465 static void emit_loadimm64(u64 K, unsigned int dest, struct jit_ctx *ctx) in emit_loadimm64()
/linux/lib/crypto/riscv/
H A Dsha512-riscv64-zvknhb-zvkb.S56 #define K a4 macro
/linux/include/crypto/internal/
H A Ddes.h59 u32 K[6]; in des3_ede_verify_key() local
/linux/crypto/
H A Dwp512.c782 u64 K[8]; /* the round key */ in wp512_process_buffer() local
/linux/arch/arm64/include/asm/
H A Datomic_ll_sc.h16 #define K macro
/linux/drivers/net/ethernet/chelsio/cxgb3/
H A Dmc5.c403 #define K * 1024 in t3_mc5_prep() macro
/linux/net/mac80211/
H A Dparse.c285 int K = u8_get_bits(env->variable[N], in ieee80211_parse_tpe() local
/linux/net/netfilter/
H A Dx_tables.c307 #define XT_OBJ_TO_USER(U, K, TYPE, C_SIZE) \ argument
326 #define XT_DATA_TO_USER(U, K, TYPE) \ argument
778 #define COMPAT_XT_DATA_TO_USER(U, K, TYPE, C_SIZE) \ argument
/linux/lib/crypto/mips/
H A Dchacha-core.S182 #define AXR(A, B, C, D, K, L, M, N, V, W, Y, Z, S) \ argument
/linux/sound/soc/codecs/
H A Dwm8940.c536 unsigned int K, Ndiv, Nmod; pll_factors() local
H A Dwm8974.c276 unsigned int K, Ndiv, Nmod; in pll_factors() local
/linux/tools/testing/selftests/drivers/net/hw/
H A Dtoeplitz.c64 #define TOEPLITZ_STR_LEN(K) (((K) * 3) - 1) /* hex encoded: AA:BB:CC:...:ZZ */ argument
/linux/arch/x86/crypto/
H A Dserpent-sse2-i586-asm_32.S42 #define K(x0, x1, x2, x3, x4, i) \ macro
/linux/tools/perf/bench/
H A Dmem-functions.c30 #define K 1024 macro
/linux/tools/testing/selftests/bpf/progs/
H A Dbtf_dump_test_case_syntax.c234 K = 100, enumerator
/linux/drivers/base/
H A Dnode.c440 #define K(x) ((x) << (PAGE_SHIFT - 10)) macro
/linux/scripts/
H A Dsorttable.c285 static int cmp_func_addr(const void *K, const void *A) in cmp_func_addr()
/linux/drivers/media/dvb-frontends/
H A Dstb0899_algo.c899 u32 decim, K, wn, k_direct, k_indirect; in stb0899_dvbs2_set_btr_loopbw() local
/linux/drivers/net/hamradio/
H A Dscc.c2055 #define K(x) kiss->x in scc_net_seq_show() macro
/linux/tools/bpf/
H A Dbpf_dbg.c636 uint32_t K = f->k; in bpf_single_step() local
/linux/drivers/gpu/drm/rockchip/
H A Drockchip_vop2_reg.c1581 int K = 1; in rk3588_calc_cru_cfg() local

12