xserver/hw/xfree86/modes
Enrico Weigelt, metux IT consult ea618f9bff xfree86: replace xallocarray() by calloc()
Only key difference that calloc(), in contrast to rellocarray(),
is zero-initializing. The overhead is hard to measure on today's
machines, and it's safer programming practise to always allocate
zero-initialized, so one can't forget to do it explicitly.

Cocci rule:

    @@
    expression COUNT;
    expression LEN;
    @@
    - xallocarray(COUNT,LEN)
    + calloc(COUNT,LEN)

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2025-04-02 17:37:14 +00:00
..
meson.build xfree86: Move xf86CVTMode() function 2021-08-06 11:29:29 +00:00
xf86Crtc.c xfree86: replace xallocarray() by calloc() 2025-04-02 17:37:14 +00:00
xf86Crtc.h render: drop obsolete macros pict_f_transform and pict_f_vector 2024-03-03 22:54:16 +00:00
xf86Cursors.c xfree86: modes: drop unused xf86_driver_has_show_cursor() 2024-04-18 01:03:11 +00:00
xf86DiDGA.c xfree86: replace xallocarray() by calloc() 2025-04-02 17:37:14 +00:00
xf86EdidModes.c xfree86: ddc: move private definitions from xf86DDC.h to xf86DDC_priv.h 2025-02-06 23:51:34 +00:00
xf86Modes.c treewide: replace xnfstrdup() calls by XNFstrdup() 2024-07-26 23:41:34 +00:00
xf86Modes.h Eliminate the use of xf86Rename.h 2013-04-24 10:22:20 -07:00
xf86RandR12.c xfree86: replace xallocarray() by calloc() 2025-04-02 17:37:14 +00:00
xf86RandR12.h xfree86: modes: move private definitions out of from xf86RandR12.h 2025-02-06 23:51:33 +00:00
xf86RandR12_priv.h xfree86: modes: move private definitions out of from xf86RandR12.h 2025-02-06 23:51:33 +00:00
xf86Rotate.c mi: unexport miSourceValidate() 2025-02-06 16:45:20 +02:00
xf86gtf.c treewide: replace xnfcalloc() calls by XNFcallocarray() 2024-07-26 23:41:33 +00:00