From ea6cfa421b7cef91eba85c5144eec14288c41c4c Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Sat, 20 Mar 2010 13:39:50 +0100 Subject: Matcher: support up to 32 fingers Make the matcher support up to 32 fingers instead of the current 16. Signed-off-by: Henrik Rydberg --- match/match.c | 4 ++-- match/match.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/match/match.c b/match/match.c index dbb14ba..a3f4deb 100644 --- a/match/match.c +++ b/match/match.c @@ -35,8 +35,8 @@ * */ -typedef unsigned short col_t[1]; -typedef unsigned short mat_t[DIM_FINGER]; +typedef unsigned col_t[1]; +typedef unsigned mat_t[DIM_FINGER]; #define GET1(m, x) ((m[0] >> (x)) & 1U) #define SET1(m, x) (m[0] |= (1U << (x))) diff --git a/match/match.h b/match/match.h index 620d046..0c4274e 100644 --- a/match/match.h +++ b/match/match.h @@ -28,7 +28,7 @@ * Bitmasks are used extensively. */ -#define DIM_FINGER 16 +#define DIM_FINGER 32 #define DIM2_FINGER (DIM_FINGER * DIM_FINGER) #define MIN(a, b) ((a) < (b) ? (a) : (b)) -- cgit v1.2.3