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/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
70
#define vdo_allocate(COUNT, TYPE, WHAT, PTR) \
drivers/md/dm-vdo/memory-alloc.h
71
__vdo_do_allocation(COUNT, sizeof(TYPE), 0, __alignof__(TYPE), WHAT, PTR)
drivers/md/dm-vdo/memory-alloc.h
86
#define vdo_allocate_extended(TYPE1, COUNT, TYPE2, WHAT, PTR) \
drivers/md/dm-vdo/memory-alloc.h
91
_result = __vdo_do_allocation(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
1020
#define kmalloc_objs(VAR_OR_TYPE, COUNT, ...) \
include/linux/slab.h
1021
__alloc_objs(kmalloc, default_gfp(__VA_ARGS__), typeof(VAR_OR_TYPE), COUNT)
include/linux/slab.h
1035
#define kmalloc_flex(VAR_OR_TYPE, FAM, COUNT, ...) \
include/linux/slab.h
1036
__alloc_flex(kmalloc, default_gfp(__VA_ARGS__), typeof(VAR_OR_TYPE), FAM, COUNT)
include/linux/slab.h
1041
#define kzalloc_objs(P, COUNT, ...) \
include/linux/slab.h
1042
__alloc_objs(kzalloc, default_gfp(__VA_ARGS__), typeof(P), COUNT)
include/linux/slab.h
1043
#define kzalloc_flex(P, FAM, COUNT, ...) \
include/linux/slab.h
1044
__alloc_flex(kzalloc, default_gfp(__VA_ARGS__), typeof(P), FAM, COUNT)
include/linux/slab.h
1049
#define kvmalloc_objs(P, COUNT, ...) \
include/linux/slab.h
1050
__alloc_objs(kvmalloc, default_gfp(__VA_ARGS__), typeof(P), COUNT)
include/linux/slab.h
1051
#define kvmalloc_flex(P, FAM, COUNT, ...) \
include/linux/slab.h
1052
__alloc_flex(kvmalloc, default_gfp(__VA_ARGS__), typeof(P), FAM, COUNT)
include/linux/slab.h
1057
#define kvzalloc_objs(P, COUNT, ...) \
include/linux/slab.h
1058
__alloc_objs(kvzalloc, default_gfp(__VA_ARGS__), typeof(P), COUNT)
include/linux/slab.h
1059
#define kvzalloc_flex(P, FAM, COUNT, ...) \
include/linux/slab.h
1060
__alloc_flex(kvzalloc, default_gfp(__VA_ARGS__), typeof(P), FAM, COUNT)
include/linux/slab.h
971
#define __alloc_objs(KMALLOC, GFP, TYPE, COUNT) \
include/linux/slab.h
973
const size_t __obj_size = size_mul(sizeof(TYPE), COUNT); \
include/linux/slab.h
990
#define __alloc_flex(KMALLOC, GFP, TYPE, FAM, COUNT) \
include/linux/slab.h
992
const size_t __count = (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++) {