KleidiCV Coverage Report


Directory: ./
File: kleidicv/src/resize/resize_sme.cpp
Date: 2025-09-25 14:13:34
Exec Total Coverage
Lines: 3 3 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // SPDX-FileCopyrightText: 2023 - 2025 Arm Limited and/or its affiliates <open-source-office@arm.com>
2 //
3 // SPDX-License-Identifier: Apache-2.0
4
5 #include "kleidicv/resize/resize.h"
6 #include "resize_sc.h"
7
8 namespace kleidicv::sme {
9
10 KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t
11 65 resize_to_quarter_u8(const uint8_t *src, size_t src_stride, size_t src_width,
12 size_t src_height, uint8_t *dst, size_t dst_stride,
13 size_t dst_width, size_t dst_height) {
14 130 return resize_to_quarter_u8_sc(src, src_stride, src_width, src_height, dst,
15 65 dst_stride, dst_width, dst_height);
16 }
17
18 } // namespace kleidicv::sme
19