Home
last modified time | relevance | path

Searched hist:"32 f0d3c6c3fb1fb9353ec0b82ddb099281b9328c" (Results 1 – 14 of 14) sorted by relevance

/rk3399_ARM-atf/services/spd/opteed/
H A Dopteed_common.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/drivers/partition/
H A Dgpt.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/drivers/io/
H A Dio_block.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
H A Dio_memmap.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
H A Dio_fip.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/plat/rockchip/rk3399/drivers/dram/
H A Ddram_spec_timing.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/services/spd/tspd/
H A Dtspd_common.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/bl32/sp_min/
H A Dsp_min_main.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/drivers/auth/mbedtls/
H A Dmbedtls_x509_parser.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/lib/el3_runtime/aarch32/
H A Dcontext_mgmt.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/plat/xilinx/zynqmp/pm_service/
H A Dpm_client.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/lib/psci/
H A Dpsci_common.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/plat/arm/common/
H A Darm_bl2_setup.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
/rk3399_ARM-atf/lib/el3_runtime/aarch64/
H A Dcontext_mgmt.c32f0d3c6c3fb1fb9353ec0b82ddb099281b9328c Thu Jan 26 15:54:44 UTC 2017 Douglas Raillard <douglas.raillard@arm.com> Replace some memset call by zeromem

Replace all use of memset by zeromem when zeroing moderately-sized
structure by applying the following transformation:
memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))

As the Trusted Firmware is compiled with -ffreestanding, it forbids the
compiler from using __builtin_memset and forces it to generate calls to
the slow memset implementation. Zeromem is a near drop in replacement
for this use case, with a more efficient implementation on both AArch32
and AArch64.

Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>