99a2dd955f
There is no reason for the DPDK libraries to all have 'librte_' prefix on the directory names. This prefix makes the directory names longer and also makes it awkward to add features referring to individual libraries in the build - should the lib names be specified with or without the prefix. Therefore, we can just remove the library prefix and use the library's unique name as the directory name, i.e. 'eal' rather than 'librte_eal' Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
19 lines
496 B
C
19 lines
496 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2015 Cavium, Inc
|
|
*/
|
|
|
|
#include "acl_run_neon.h"
|
|
|
|
int
|
|
rte_acl_classify_neon(const struct rte_acl_ctx *ctx, const uint8_t **data,
|
|
uint32_t *results, uint32_t num, uint32_t categories)
|
|
{
|
|
if (likely(num >= 8))
|
|
return search_neon_8(ctx, data, results, num, categories);
|
|
else if (num >= 4)
|
|
return search_neon_4(ctx, data, results, num, categories);
|
|
else
|
|
return rte_acl_classify_scalar(ctx, data, results, num,
|
|
categories);
|
|
}
|