Symbol: BIT_U64
drivers/accel/amdxdna/npu1_regs.c
70
{ .features = BIT_U64(AIE2_NPU_COMMAND), .major = 5, .min_minor = 8 },
drivers/accel/amdxdna/npu4_regs.c
100
{ .features = BIT_U64(AIE2_APP_HEALTH), .major = 6, .min_minor = 18 },
drivers/accel/amdxdna/npu4_regs.c
101
{ .features = BIT_U64(AIE2_ADD_HOST_BUFFER), .major = 6, .min_minor = 18 },
drivers/accel/amdxdna/npu4_regs.c
102
{ .features = BIT_U64(AIE2_GET_DEV_REVISION), .major = 6, .min_minor = 24 },
drivers/accel/amdxdna/npu4_regs.c
72
{ 14, 0, AIE2_RT_CFG_INIT, BIT_U64(AIE2_PREEMPT) }, /* Frame boundary preemption */
drivers/accel/amdxdna/npu4_regs.c
96
{ .features = BIT_U64(AIE2_PREEMPT), .major = 6, .min_minor = 12 },
drivers/accel/amdxdna/npu4_regs.c
97
{ .features = BIT_U64(AIE2_TEMPORAL_ONLY), .major = 6, .min_minor = 12 },
drivers/accel/amdxdna/npu4_regs.c
98
{ .features = BIT_U64(AIE2_NPU_COMMAND), .major = 6, .min_minor = 15 },
drivers/accel/amdxdna/npu4_regs.c
99
{ .features = BIT_U64(AIE2_UPDATE_PROPERTY), .major = 6, .min_minor = 15 },
drivers/gpu/drm/panthor/panthor_pwr_regs.h
20
#define PWR_STATUS_ALLOW_L2 BIT_U64(0)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
21
#define PWR_STATUS_ALLOW_TILER BIT_U64(1)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
22
#define PWR_STATUS_ALLOW_SHADER BIT_U64(8)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
23
#define PWR_STATUS_ALLOW_BASE BIT_U64(14)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
24
#define PWR_STATUS_ALLOW_STACK BIT_U64(15)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
25
#define PWR_STATUS_DOMAIN_ALLOWED(x) BIT_U64(x)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
26
#define PWR_STATUS_DELEGATED_L2 BIT_U64(16)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
27
#define PWR_STATUS_DELEGATED_TILER BIT_U64(17)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
28
#define PWR_STATUS_DELEGATED_SHADER BIT_U64(24)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
29
#define PWR_STATUS_DELEGATED_BASE BIT_U64(30)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
30
#define PWR_STATUS_DELEGATED_STACK BIT_U64(31)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
32
#define PWR_STATUS_DOMAIN_DELEGATED(x) BIT_U64((x) + PWR_STATUS_DELEGATED_SHIFT)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
33
#define PWR_STATUS_ALLOW_SOFT_RESET BIT_U64(33)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
34
#define PWR_STATUS_ALLOW_FAST_RESET BIT_U64(34)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
35
#define PWR_STATUS_POWER_PENDING BIT_U64(41)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
36
#define PWR_STATUS_RESET_PENDING BIT_U64(42)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
37
#define PWR_STATUS_RETRACT_PENDING BIT_U64(43)
drivers/gpu/drm/panthor/panthor_pwr_regs.h
38
#define PWR_STATUS_INSPECT_PENDING BIT_U64(44)
drivers/iommu/riscv/iommu-bits.h
746
pfn |= BIT_U64(sz_lg2 - 13) - 1;
drivers/iommu/riscv/iommu.c
967
tlbi->range.addr = tlbi->start & ~(BIT_U64(tlbi->range.sz_lg2) - 1);
drivers/media/i2c/ccs/ccs-core.c
1213
sensor->default_mbus_frame_fmts |= BIT_U64(j);
drivers/media/i2c/ccs/ccs-core.c
1246
if (!(sensor->default_mbus_frame_fmts & BIT_U64(i)))
drivers/media/i2c/ccs/ccs-core.c
2096
if (sensor->mbus_frame_fmts & BIT_U64(i) &&
drivers/media/i2c/ccs/ccs-core.c
2126
if (sensor->mbus_frame_fmts & BIT_U64(i))
drivers/media/platform/ti/j721e-csi2rx/j721e-csi2rx.c
1016
BIT_U64(0));
drivers/media/platform/ti/j721e-csi2rx/j721e-csi2rx.c
988
BIT_U64(0));
include/drm/intel/reg_bits.h
20
#define REG_BIT64(n) BIT_U64(n)
kernel/sched/ext/cid.h
227
*__scx_cmask_word(cid, m) |= BIT_U64(cid & 63);
kernel/sched/ext/cid.h
242
return READ_ONCE(*__scx_cmask_word(cid, m)) & BIT_U64(cid & 63);
lib/tests/test_bits.c
15
static_assert(assert_type(u64, BIT_U64(0)) == 1ull);
lib/tests/test_bits.c
20
static_assert(assert_type(u64, BIT_U64(63)) == 0x8000000000000000ull);
tools/sched_ext/include/scx/cid.bpf.h
129
return *__cmask_word(cid, m) & BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
152
bit = BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
173
bit = BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
19
#ifndef BIT_U64
tools/sched_ext/include/scx/cid.bpf.h
194
bit = BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
216
bit = BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
233
*__cmask_word(cid, m) |= BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
240
*__cmask_word(cid, m) &= ~BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
245
u64 bit = BIT_U64(cid & 63);
tools/sched_ext/include/scx/cid.bpf.h
259
u64 bit = BIT_U64(cid & 63);