Symbol: COUNT
arch/arm/mach-spear/time.c
89
clocksource_mmio_init(gpt_base + COUNT(CLKSRC), "tmr1", tick_rate,
arch/x86/include/asm/pgtable_64.h
283
#define PMDS(START, PERM, COUNT) \
arch/x86/include/asm/pgtable_64.h
285
.rept (COUNT) ; \
drivers/clocksource/timer-digicolor.c
146
return ~readl(dc_timer_dev.base + COUNT(TIMER_B));
drivers/clocksource/timer-digicolor.c
181
writel(UINT_MAX, dc_timer_dev.base + COUNT(TIMER_B));
drivers/clocksource/timer-digicolor.c
185
clocksource_mmio_init(dc_timer_dev.base + COUNT(TIMER_B), node->name,
drivers/clocksource/timer-digicolor.c
85
writel(count, dt->base + COUNT(dt->timer_id));
drivers/gpu/drm/amd/amdgpu/lsdma_v7_1.c
56
tmp = REG_SET_FIELD(tmp, LSDMA_PIO_COMMAND, COUNT, size);
drivers/gpu/drm/amd/amdgpu/lsdma_v7_1.c
84
tmp = REG_SET_FIELD(tmp, LSDMA_PIO_COMMAND, COUNT, size);
drivers/gpu/drm/i915/gt/selftest_engine_cs.c
124
sort(a, COUNT, sizeof(*a), cmp_u32, NULL);
drivers/gpu/drm/i915/gt/selftest_engine_cs.c
148
u32 cycles[COUNT];
drivers/gpu/drm/i915/gt/selftest_engine_cs.c
276
u32 cycles[COUNT];
drivers/gpu/drm/i915/gt/selftest_engine_pm.c
141
u64 s_ring[COUNT], s_ctx[COUNT], st[COUNT], d_ring, d_ctx, dt;
drivers/gpu/drm/i915/gt/selftest_engine_pm.c
149
for (i = 0; i < COUNT; i++) {
drivers/gpu/drm/i915/gt/selftest_engine_pm.c
30
sort(a, COUNT, sizeof(*a), cmp_u64, NULL);
drivers/gpu/drm/i915/gt/selftest_rps.c
118
*cs++ = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(COUNT));
drivers/gpu/drm/i915/gt/selftest_rps.c
121
*cs++ = MI_MATH_STORE(MI_MATH_REG(COUNT), MI_MATH_REG_ACCU);
drivers/gpu/drm/i915/gt/selftest_rps.c
125
*cs++ = i915_mmio_reg_offset(CS_GPR(COUNT));
drivers/gpu/drm/nouveau/dispnv50/curs507a.c
38
if (NVIF_TV32(&wndw->wimm.base.user, NV507A, FREE, COUNT, >=, 4))
drivers/md/dm-vdo/memory-alloc.h
29
#define vdo_allocate(COUNT, WHAT, PTR) \
drivers/md/dm-vdo/memory-alloc.h
30
vdo_allocate_memory(size_mul((COUNT), sizeof(typeof(**(PTR)))), \
drivers/md/dm-vdo/memory-alloc.h
44
#define vdo_allocate_extended(COUNT, FIELD, WHAT, PTR) \
drivers/md/dm-vdo/memory-alloc.h
45
vdo_allocate_memory(struct_size(*(PTR), FIELD, (COUNT)), \
drivers/net/ethernet/sfc/tc_counters.c
463
n_counters = le16_to_cpu(TCV2_HDR_WORD(data, COUNT));
drivers/ras/cec.c
360
count = COUNT(ca->array[to]);
drivers/ras/cec.c
459
i, this, bins[DECAY(ca->array[i])], COUNT(ca->array[i]));
drivers/scsi/isci/phy.c
246
writel(SCU_ENSPINUP_GEN_VAL(COUNT,
include/linux/overflow.h
535
#define DEFINE_FLEX(TYPE, NAME, MEMBER, COUNTER, COUNT) \
include/linux/overflow.h
536
_DEFINE_FLEX(TYPE, NAME, MEMBER, COUNT, = { .COUNTER = COUNT, })
include/linux/overflow.h
572
#define overflows_flex_counter_type(TYPE, FAM, COUNT) \
include/linux/overflow.h
573
(overflows_type(COUNT, typeof_flex_counter(((TYPE *)NULL)->FAM)))
include/linux/overflow.h
584
#define __set_flex_counter(FAM, COUNT) \
include/linux/overflow.h
588
default: __flex_counter(FAM)) = (COUNT); \
include/linux/slab.h
1084
#define __alloc_objs(KMALLOC, GFP, TYPE, COUNT) \
include/linux/slab.h
1086
const size_t __obj_size = size_mul(sizeof(TYPE), COUNT); \
include/linux/slab.h
1103
#define __alloc_flex(KMALLOC, GFP, TYPE, FAM, COUNT) \
include/linux/slab.h
1105
const size_t __count = (COUNT); \
include/linux/slab.h
1133
#define kmalloc_objs(VAR_OR_TYPE, COUNT, ...) \
include/linux/slab.h
1134
__alloc_objs(kmalloc, default_gfp(__VA_ARGS__), typeof(VAR_OR_TYPE), COUNT)
include/linux/slab.h
1148
#define kmalloc_flex(VAR_OR_TYPE, FAM, COUNT, ...) \
include/linux/slab.h
1149
__alloc_flex(kmalloc, default_gfp(__VA_ARGS__), typeof(VAR_OR_TYPE), FAM, COUNT)
include/linux/slab.h
1154
#define kzalloc_objs(P, COUNT, ...) \
include/linux/slab.h
1155
__alloc_objs(kzalloc, default_gfp(__VA_ARGS__), typeof(P), COUNT)
include/linux/slab.h
1156
#define kzalloc_flex(P, FAM, COUNT, ...) \
include/linux/slab.h
1157
__alloc_flex(kzalloc, default_gfp(__VA_ARGS__), typeof(P), FAM, COUNT)
include/linux/slab.h
1162
#define kvmalloc_objs(P, COUNT, ...) \
include/linux/slab.h
1163
__alloc_objs(kvmalloc, default_gfp(__VA_ARGS__), typeof(P), COUNT)
include/linux/slab.h
1164
#define kvmalloc_flex(P, FAM, COUNT, ...) \
include/linux/slab.h
1165
__alloc_flex(kvmalloc, default_gfp(__VA_ARGS__), typeof(P), FAM, COUNT)
include/linux/slab.h
1170
#define kvzalloc_objs(P, COUNT, ...) \
include/linux/slab.h
1171
__alloc_objs(kvzalloc, default_gfp(__VA_ARGS__), typeof(P), COUNT)
include/linux/slab.h
1172
#define kvzalloc_flex(P, FAM, COUNT, ...) \
include/linux/slab.h
1173
__alloc_flex(kvzalloc, default_gfp(__VA_ARGS__), typeof(P), FAM, COUNT)
tools/include/linux/slab.h
205
#define __alloc_objs(KMALLOC, GFP, TYPE, COUNT) \
tools/include/linux/slab.h
207
const size_t __obj_size = size_mul(sizeof(TYPE), COUNT); \
tools/testing/selftests/powerpc/dscr/dscr_default_test.c
27
for (int i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_default_test.c
54
for (int i = 0; i < COUNT ; i++) {
tools/testing/selftests/powerpc/dscr/dscr_default_test.c
91
for (int i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_explicit_test.c
106
for (int i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_explicit_test.c
37
for (int i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_explicit_test.c
70
for (int i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_inherit_exec_test.c
49
for (i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_inherit_test.c
30
for (i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_sysfs_thread_test.c
62
for (i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_user_test.c
43
for (i = 0; i < COUNT; i++) {
tools/testing/selftests/powerpc/dscr/dscr_user_test.c
49
for (i = 0; i < COUNT; i++) {
tools/virtio/linux/kernel.h
71
#define kmalloc_objs(VAR_OR_TYPE, COUNT, ...) \
tools/virtio/linux/kernel.h
72
((typeof(VAR_OR_TYPE) *)kmalloc(sizeof(typeof(VAR_OR_TYPE)) * (COUNT), 0))