summaryrefslogtreecommitdiff
path: root/dix
diff options
context:
space:
mode:
authorDaniel Martin <consume.noise@gmail.com>2017-10-27 16:11:56 +0200
committerAdam Jackson <ajax@redhat.com>2017-10-30 13:45:20 -0400
commitd5379b350fb63e42e604361c21ad9832b4c791b9 (patch)
tree9ff0602258e2d4afb74561614810fb8a8e0e1860 /dix
parent15a32ee5d1fffa171bb05af9a0e5b472e4af1488 (diff)
Use ARRAY_SIZE all over the tree
Roundhouse kick replacing the various (sizeof(foo)/sizeof(foo[0])) with the ARRAY_SIZE macro from dix.h when possible. A semantic patch for coccinelle has been used first. Additionally, a few macros have been inlined as they had only one or two users. Signed-off-by: Daniel Martin <consume.noise@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'dix')
-rw-r--r--dix/eventconvert.c4
-rw-r--r--dix/gc.c2
-rw-r--r--dix/privates.c4
3 files changed, 3 insertions, 7 deletions
diff --git a/dix/eventconvert.c b/dix/eventconvert.c
index f7ecdba77..4a07b6b6f 100644
--- a/dix/eventconvert.c
+++ b/dix/eventconvert.c
@@ -655,9 +655,7 @@ eventToDeviceEvent(DeviceEvent *ev, xEvent **xi)
btlen = bytes_to_int32(bits_to_bytes(MAX_BUTTONS));
len += btlen * 4; /* buttonmask len */
- vallen =
- count_bits(ev->valuators.mask,
- sizeof(ev->valuators.mask) / sizeof(ev->valuators.mask[0]));
+ vallen = count_bits(ev->valuators.mask, ARRAY_SIZE(ev->valuators.mask));
len += vallen * 2 * sizeof(uint32_t); /* axisvalues */
vallen = bytes_to_int32(bits_to_bytes(MAX_VALUATORS));
len += vallen * 4; /* valuators mask */
diff --git a/dix/gc.c b/dix/gc.c
index cb8db8535..4ccbd3b54 100644
--- a/dix/gc.c
+++ b/dix/gc.c
@@ -439,7 +439,7 @@ ChangeGCXIDs(ClientPtr client, GC * pGC, BITS32 mask, CARD32 *pC32)
}
for (i = Ones(mask); i--;)
vals[i].val = pC32[i];
- for (i = 0; i < sizeof(xidfields) / sizeof(*xidfields); ++i) {
+ for (i = 0; i < ARRAY_SIZE(xidfields); ++i) {
int offset, rc;
if (!(mask & xidfields[i].mask))
diff --git a/dix/privates.c b/dix/privates.c
index 9a4e61138..9ca80f0b6 100644
--- a/dix/privates.c
+++ b/dix/privates.c
@@ -571,8 +571,6 @@ static const int offsets[] = {
offsetof(ColormapRec, devPrivates), /* RT_COLORMAP */
};
-#define NUM_OFFSETS (sizeof (offsets) / sizeof (offsets[0]))
-
int
dixLookupPrivateOffset(RESTYPE type)
{
@@ -587,7 +585,7 @@ dixLookupPrivateOffset(RESTYPE type)
return offsets[RT_PIXMAP & TypeMask];
}
type = type & TypeMask;
- if (type < NUM_OFFSETS)
+ if (type < ARRAY_SIZE(offsets))
return offsets[type];
return -1;
}