Home
last modified time | relevance | path

Searched refs:bitw (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/hwtracing/coresight/mali/
H A Dcoresight_mali_common.h62 .type = KBASE_DEBUG_CORESIGHT_CSF_OP_TYPE_BIT_OR, .op.bitw.ptr = _ptr, \
63 .op.bitw.val = _val \
68 .type = KBASE_DEBUG_CORESIGHT_CSF_OP_TYPE_BIT_XOR, .op.bitw.ptr = _ptr, \
69 .op.bitw.val = _val \
74 .type = KBASE_DEBUG_CORESIGHT_CSF_OP_TYPE_BIT_AND, .op.bitw.ptr = _ptr, \
75 .op.bitw.val = _val \
80 .type = KBASE_DEBUG_CORESIGHT_CSF_OP_TYPE_BIT_NOT, .op.bitw.ptr = _ptr, \
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/debug/backend/
H A Dmali_kbase_debug_coresight_csf.c130 if (op->op.bitw.ptr != NULL) in validate_op()
196 *op->op.bitw.ptr &= op->op.bitw.val; in execute_op()
200 *op->op.bitw.ptr |= op->op.bitw.val; in execute_op()
204 *op->op.bitw.ptr ^= op->op.bitw.val; in execute_op()
208 *op->op.bitw.ptr = ~(*op->op.bitw.ptr); in execute_op()
/OK3568_Linux_fs/kernel/include/linux/
H A Dmali_kbase_debug_coresight_csf.h135 struct kbase_debug_coresight_csf_bitw_op bitw; member