xserver/hw/xfree86/int10
Enrico Weigelt, metux IT consult faa216e8bb (1823) 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-05-22 17:35:00 +02:00
..
INT10.HOWTO Fix spelling/wording issues 2020-07-05 13:07:33 -07:00
generic.c xfree86: int10: move private defs out of xf86int10.h 2025-02-06 23:51:33 +00:00
helper_exec.c xfree86: use LogMessageVerb() instead of xf86MsgVerb() 2025-02-07 22:40:06 +00:00
helper_mem.c (!1909) xfree86: use calloc() instead of malloc() 2025-05-22 17:34:50 +02:00
meson.build xfree86: Merge vbe into int10 2019-10-02 10:03:26 -04:00
stub.c int10: fix build error 2014-04-27 12:02:16 -04:00
vbe.c (1823) xfree86: replace xallocarray() by calloc() 2025-05-22 17:35:00 +02:00
vbe.h (!1993) xfree86: vbe: drop unused VBEGetVBEpmi() 2025-05-22 17:34:34 +02:00
vbeModes.c (!1969) xfree86: int10: extra NULL protection 2025-05-22 17:34:40 +02:00
vbeModes.h xfree86: Merge vbe into int10 2019-10-02 10:03:26 -04:00
x86emu.c
xf86int10.c xfree86: int10: move private defs out of xf86int10.h 2025-02-06 23:51:33 +00:00
xf86int10.h xfree86: int10: move private defs out of xf86int10.h 2025-02-06 23:51:33 +00:00
xf86int10_priv.h xfree86: int10: move private defs out of xf86int10.h 2025-02-06 23:51:33 +00:00
xf86int10module.c xfree86: xf86int10module: use explicit field initializers for XF86ModuleData 2025-02-17 19:41:30 +00:00
xf86x86emu.c xfree86: int10: move private defs out of xf86int10.h 2025-02-06 23:51:33 +00:00
xf86x86emu.h