/linux-6.3-rc2/crypto/ |
A D | aria_generic.c | 33 const u32 *ck; in aria_set_encrypt_key() local 43 reg0 = w0[0] ^ ck[0]; in aria_set_encrypt_key() 44 reg1 = w0[1] ^ ck[1]; in aria_set_encrypt_key() 77 reg0 ^= ck[4]; in aria_set_encrypt_key() 78 reg1 ^= ck[5]; in aria_set_encrypt_key() 79 reg2 ^= ck[6]; in aria_set_encrypt_key() 80 reg3 ^= ck[7]; in aria_set_encrypt_key() 94 reg0 ^= ck[8]; in aria_set_encrypt_key() 95 reg1 ^= ck[9]; in aria_set_encrypt_key() 96 reg2 ^= ck[10]; in aria_set_encrypt_key() [all …]
|
A D | sm4.c | 18 static const u32 ____cacheline_aligned ck[32] = { variable 65 extern const u32 crypto_sm4_ck[32] __alias(ck); 135 rk[0] ^= sm4_key_sub(rk[1] ^ rk[2] ^ rk[3] ^ ck[i + 0]); in sm4_expandkey() 136 rk[1] ^= sm4_key_sub(rk[2] ^ rk[3] ^ rk[0] ^ ck[i + 1]); in sm4_expandkey() 137 rk[2] ^= sm4_key_sub(rk[3] ^ rk[0] ^ rk[1] ^ ck[i + 2]); in sm4_expandkey() 138 rk[3] ^= sm4_key_sub(rk[0] ^ rk[1] ^ rk[2] ^ ck[i + 3]); in sm4_expandkey()
|
/linux-6.3-rc2/drivers/spi/ |
A D | spi-omap-uwire.c | 90 struct clk *ck; member 342 rate = clk_get_rate(uwire->ck); in uwire_setup_transfer() 414 clk_get_rate(uwire->ck) / 1000, in uwire_setup_transfer() 450 clk_disable_unprepare(uwire->ck); in uwire_off() 475 uwire->ck = devm_clk_get(&pdev->dev, "fck"); in uwire_probe() 476 if (IS_ERR(uwire->ck)) { in uwire_probe() 477 status = PTR_ERR(uwire->ck); in uwire_probe() 482 clk_prepare_enable(uwire->ck); in uwire_probe()
|
/linux-6.3-rc2/net/wireless/ |
A D | wext-sme.c | 21 struct cfg80211_cached_keys *ck = NULL; in cfg80211_mgd_wext_connect() local 47 ck = kmemdup(wdev->wext.keys, sizeof(*ck), GFP_KERNEL); in cfg80211_mgd_wext_connect() 48 if (!ck) in cfg80211_mgd_wext_connect() 51 ck->params[i].key = ck->data[i]; in cfg80211_mgd_wext_connect() 58 &wdev->wext.connect, ck, prev_bssid); in cfg80211_mgd_wext_connect() 60 kfree_sensitive(ck); in cfg80211_mgd_wext_connect()
|
A D | ibss.c | 238 struct cfg80211_cached_keys *ck = NULL; in cfg80211_ibss_wext_join() local 293 ck = kmemdup(wdev->wext.keys, sizeof(*ck), GFP_KERNEL); in cfg80211_ibss_wext_join() 294 if (!ck) in cfg80211_ibss_wext_join() 297 ck->params[i].key = ck->data[i]; in cfg80211_ibss_wext_join() 300 &wdev->wext.ibss, ck); in cfg80211_ibss_wext_join() 302 kfree(ck); in cfg80211_ibss_wext_join()
|
/linux-6.3-rc2/kernel/sched/ |
A D | core_sched.c | 13 struct sched_core_cookie *ck = kmalloc(sizeof(*ck), GFP_KERNEL); in sched_core_alloc_cookie() local 14 if (!ck) in sched_core_alloc_cookie() 17 refcount_set(&ck->refcnt, 1); in sched_core_alloc_cookie() 20 return (unsigned long)ck; in sched_core_alloc_cookie()
|
/linux-6.3-rc2/net/rds/ |
A D | message.c | 60 struct rds_zcopy_cookies *ck = &info->zcookies; in rds_zcookie_add() local 61 int ncookies = ck->num; in rds_zcookie_add() 65 ck->cookies[ncookies] = cookie; in rds_zcookie_add() 66 ck->num = ++ncookies; in rds_zcookie_add() 98 struct rds_zcopy_cookies *ck; in rds_rm_zerocopy_callback() local 118 ck = &info->zcookies; in rds_rm_zerocopy_callback() 119 memset(ck, 0, sizeof(*ck)); in rds_rm_zerocopy_callback()
|
/linux-6.3-rc2/drivers/video/fbdev/omap2/omapfb/ |
A D | omapfb-ioctl.c | 367 struct omapfb_color_key *ck) in _omapfb_set_color_key() argument 375 if (ck->key_type == OMAPFB_COLOR_KEY_DISABLED) { in _omapfb_set_color_key() 377 omapfb_color_keys[mgr->id] = *ck; in _omapfb_set_color_key() 388 switch (ck->key_type) { in _omapfb_set_color_key() 399 info.default_color = ck->background; in _omapfb_set_color_key() 400 info.trans_key = ck->trans_key; in _omapfb_set_color_key() 404 omapfb_color_keys[mgr->id] = *ck; in _omapfb_set_color_key() 416 struct omapfb_color_key *ck) in omapfb_set_color_key() argument 438 r = _omapfb_set_color_key(mgr, ck); in omapfb_set_color_key() 446 struct omapfb_color_key *ck) in omapfb_get_color_key() argument [all …]
|
/linux-6.3-rc2/tools/testing/selftests/net/ |
A D | msg_zerocopy.c | 346 static uint32_t do_process_zerocopy_cookies(struct rds_zcopy_cookies *ck) in do_process_zerocopy_cookies() argument 350 if (ck->num > RDS_MAX_ZCOOKIES) in do_process_zerocopy_cookies() 352 ck->num, RDS_MAX_ZCOOKIES); in do_process_zerocopy_cookies() 353 for (i = 0; i < ck->num; i++) in do_process_zerocopy_cookies() 355 fprintf(stderr, "%d\n", ck->cookies[i]); in do_process_zerocopy_cookies() 356 return ck->num; in do_process_zerocopy_cookies() 362 struct rds_zcopy_cookies *ck; in do_recvmsg_completion() local 381 ck = (struct rds_zcopy_cookies *)CMSG_DATA(cmsg); in do_recvmsg_completion() 382 completions += do_process_zerocopy_cookies(ck); in do_recvmsg_completion()
|
/linux-6.3-rc2/drivers/video/fbdev/ |
A D | fsl-diu-fb.c | 1271 struct mfb_chroma_key ck; in fsl_diu_ioctl() local 1335 if (copy_from_user(&ck, buf, sizeof(ck))) in fsl_diu_ioctl() 1338 if (ck.enable && in fsl_diu_ioctl() 1339 (ck.red_max < ck.red_min || in fsl_diu_ioctl() 1340 ck.green_max < ck.green_min || in fsl_diu_ioctl() 1341 ck.blue_max < ck.blue_min)) in fsl_diu_ioctl() 1344 if (!ck.enable) { in fsl_diu_ioctl() 1352 ad->ckmax_r = ck.red_max; in fsl_diu_ioctl() 1354 ad->ckmax_b = ck.blue_max; in fsl_diu_ioctl() 1355 ad->ckmin_r = ck.red_min; in fsl_diu_ioctl() [all …]
|
/linux-6.3-rc2/arch/arm64/boot/dts/qcom/ |
A D | qcs404-evb-4000.dts | 83 tx-ck-pins { 89 rx-ck-pins {
|
/linux-6.3-rc2/arch/arm/mach-omap1/ |
A D | clock.h | 25 #define CLK(dev, con, ck, cp) \ argument 31 .clk_hw = ck, \
|
/linux-6.3-rc2/drivers/video/fbdev/omap/ |
A D | omapfb.h | 178 int (*set_color_key) (struct omapfb_color_key *ck); 179 int (*get_color_key) (struct omapfb_color_key *ck);
|
/linux-6.3-rc2/arch/arm64/crypto/ |
A D | sm4-ce.h | 8 const u32 *fk, const u32 *ck);
|
/linux-6.3-rc2/drivers/clk/ti/ |
A D | clock.h | 87 #define CLK(dev, con, ck) \ argument 93 .clk = ck, \
|
/linux-6.3-rc2/Documentation/devicetree/bindings/display/mediatek/ |
A D | mediatek,cec.yaml | 10 - CK Hu <ck.hu@mediatek.com>
|
A D | mediatek,hdmi-ddc.yaml | 10 - CK Hu <ck.hu@mediatek.com>
|
A D | mediatek,dpi.yaml | 10 - CK Hu <ck.hu@mediatek.com>
|
A D | mediatek,hdmi.yaml | 10 - CK Hu <ck.hu@mediatek.com>
|
/linux-6.3-rc2/Documentation/devicetree/bindings/net/ |
A D | stm32-dwmac.yaml | 72 - eth-ck 121 "eth-ck";
|
/linux-6.3-rc2/arch/s390/include/asm/ |
A D | nmi.h | 52 u64 ck : 1; /* 11 channel-subsystem damage */ member
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | am43xx-clocks.dtsi | 804 clkout1_osc_div_ck: clock-clkout1-osc-div-ck { 814 clkout1_src2_mux_ck: clock-clkout1-src2-mux-ck { 824 clkout1_src2_pre_div_ck: clock-clkout1-src2-pre-div-ck { 834 clkout1_src2_post_div_ck: clock-clkout1-src2-post-div-ck { 845 clkout1_mux_ck: clock-clkout1-mux-ck { 855 clkout1_ck: clock-clkout1-ck {
|
/linux-6.3-rc2/Documentation/devicetree/bindings/spi/ |
A D | mediatek,spi-mt65xx.yaml | 80 specify which pins group(ck/mi/mo/cs) spi controller used.
|
/linux-6.3-rc2/Documentation/devicetree/bindings/mmc/ |
A D | arm,pl18x.yaml | 155 st,ck-gpios: 167 st,ck-gpios: [ "st,use-ckin" ]
|
A D | mtk-sd.yaml | 147 mediatek,latch-ck: 150 Some SoCs do not support enhance_rx, need set correct latch-ck to avoid
|