Home
last modified time | relevance | path

Searched refs:bound (Results 1 - 15 of 15) sorted by relevance

/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
H A Dbcmutils.h684 /* modulo inc/dec - assumes x E [0, bound - 1] */
685 #define MODDEC(x, bound) MUX((x) == 0, (bound) - 1, (x) - 1)
686 #define MODINC(x, bound) MUX((x) == (bound) - 1, 0, (x) + 1)
688 /* modulo inc/dec, bound = 2^k */
689 #define MODDEC_POW2(x, bound) (((x) - 1) & ((bound) - 1))
690 #define MODINC_POW2(x, bound) (((x) + 1) & ((bound)
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Ddhd_proto.h132 extern bool dhd_prot_process_msgbuf_txcpl(dhd_pub_t *dhd, uint bound, int ringtype);
133 extern bool dhd_prot_process_msgbuf_rxcpl(dhd_pub_t *dhd, uint bound, int ringtype);
134 extern bool dhd_prot_process_msgbuf_infocpl(dhd_pub_t *dhd, uint bound);
H A Ddhd_msgbuf.c170 * callback (see dhd_prot_d2h_sync_none) may be bound.
837 * bound that simply returns the msg_type.
1075 * need to try to sync. This noop sync handler will be bound when the dongle
1241 * need to try to sync. This noop sync handler will be bound when the dongle
5187 dhd_prot_process_msgbuf_infocpl(dhd_pub_t *dhd, uint bound) in dhd_prot_process_msgbuf_infocpl() argument
5240 /* After batch processing, check RX bound */ in dhd_prot_process_msgbuf_infocpl()
5242 if (n >= bound) { in dhd_prot_process_msgbuf_infocpl()
5459 /* if num_items > bound, then anyway we will reschedule and in dhd_prot_process_edl_complete()
5462 * num_items <= bound, and if DPC executes and updates the wr index in dhd_prot_process_edl_complete()
5485 DHD_INFO(("%s: EDL bound hi in dhd_prot_process_edl_complete()
5520 dhd_prot_process_msgbuf_rxcpl(dhd_pub_t *dhd, uint bound, int ringtype) dhd_prot_process_msgbuf_rxcpl() argument
5796 dhd_prot_process_msgbuf_txcpl(dhd_pub_t *dhd, uint bound, int ringtype) dhd_prot_process_msgbuf_txcpl() argument
[all...]
/device/soc/rockchip/common/sdk_linux/include/media/
H A Dv4l2-async.h101 * @bound: a subdevice driver has successfully probed one of the subdevices
107 int (*bound)(struct v4l2_async_notifier *notifier, struct v4l2_subdev *subdev, struct v4l2_async_subdev *asd); member
/device/soc/rockchip/common/sdk_linux/drivers/media/v4l2-core/
H A Dv4l2-async.c28 if (!n->ops || !n->ops->bound) { in v4l2_async_notifier_call_bound()
32 return n->ops->bound(n, subdev, asd); in v4l2_async_notifier_call_bound()
256 * sub-devices have been bound; v4l2_device is also available then.
858 * Complete failed. Unbind the sub-devices bound through registering in v4l2_async_register_subdev()
/device/soc/rockchip/common/vendor/drivers/phy/
H A Dphy-rockchip-csi2-dphy.c322 /* The .bound() notifier callback when a match is found */
375 .bound = rockchip_csi2_dphy_notifier_bound,
H A Dphy-rockchip-mipi-rx.c1502 /* The .bound() notifier callback when a match is found */
1554 .bound = rockchip_mipidphy_notifier_bound,
/device/soc/rockchip/rk3588/kernel/drivers/phy/rockchip/
H A Dphy-rockchip-csi2-dphy.c314 /* The .bound() notifier callback when a match is found */
381 .bound = rockchip_csi2_dphy_notifier_bound,
H A Dphy-rockchip-mipi-rx.c1534 /* The .bound() notifier callback when a match is found */
1599 .bound = rockchip_mipidphy_notifier_bound,
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/cif/
H A Dmipi-csi2.c547 /* The .bound() notifier callback when a match is found */
603 .bound = csi2_notifier_bound,
H A Ddev.c1240 .bound = subdev_notifier_bound,
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/
H A Ddev.c579 .bound = subdev_notifier_bound,
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/cif/
H A Dmipi-csi2.c550 /* The .bound() notifier callback when a match is found */
623 .bound = csi2_notifier_bound,
H A Ddev.c1341 .bound = subdev_notifier_bound,
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/
H A Ddev.c555 .bound = subdev_notifier_bound,

Completed in 34 milliseconds