238 lines
6.4 KiB
Diff
238 lines
6.4 KiB
Diff
From 9c3af4498e7e5898744c4598fe89a5b34e639b92 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= <mail@3v1n0.net>
|
|
Date: Wed, 4 Dec 2019 14:22:07 +0100
|
|
Subject: [PATCH 076/181] nbis: Make the extern global bozworth 'y' variable as
|
|
bz_y
|
|
|
|
Othewise this could create issues with other 'y' variable definitions
|
|
shadowing it.
|
|
|
|
Add a cocci file that performs the change automatically
|
|
---
|
|
libfprint/nbis/bozorth3/bozorth3.c | 34 ++++++++++++++--------------
|
|
libfprint/nbis/bozorth3/bz_gbls.c | 4 ++--
|
|
libfprint/nbis/include/bozorth.h | 2 +-
|
|
libfprint/nbis/remove-global-y.cocci | 21 +++++++++++++++++
|
|
libfprint/nbis/update-from-nbis.sh | 3 +++
|
|
5 files changed, 44 insertions(+), 20 deletions(-)
|
|
create mode 100644 libfprint/nbis/remove-global-y.cocci
|
|
|
|
diff --git a/libfprint/nbis/bozorth3/bozorth3.c b/libfprint/nbis/bozorth3/bozorth3.c
|
|
index 0a8b0ff..e2e668f 100644
|
|
--- a/libfprint/nbis/bozorth3/bozorth3.c
|
|
+++ b/libfprint/nbis/bozorth3/bozorth3.c
|
|
@@ -896,7 +896,7 @@ for ( k = 0; k < np - 1; k++ ) {
|
|
for ( i = 0; i < tot; i++ ) {
|
|
|
|
|
|
- int colp_value = colp[ y[i]-1 ][0];
|
|
+ int colp_value = colp[ bz_y[i]-1 ][0];
|
|
if ( colp_value < 0 ) {
|
|
kk += colp_value;
|
|
n++;
|
|
@@ -933,7 +933,7 @@ for ( k = 0; k < np - 1; k++ ) {
|
|
|
|
kk = 0;
|
|
for ( i = 0; i < tot; i++ ) {
|
|
- int diff = colp[ y[i]-1 ][0] - jj;
|
|
+ int diff = colp[ bz_y[i]-1 ][0] - jj;
|
|
j = SQUARED( diff );
|
|
|
|
|
|
@@ -942,7 +942,7 @@ for ( k = 0; k < np - 1; k++ ) {
|
|
if ( j > TXS && j < CTXS )
|
|
kk++;
|
|
else
|
|
- y[i-kk] = y[i];
|
|
+ bz_y[i-kk] = bz_y[i];
|
|
} /* END FOR i */
|
|
|
|
tot -= kk; /* Adjust the total edge pairs TOT based on # of edge pairs skipped */
|
|
@@ -958,7 +958,7 @@ for ( k = 0; k < np - 1; k++ ) {
|
|
|
|
|
|
for ( i = tot-1 ; i >= 0; i-- ) {
|
|
- int idx = y[i] - 1;
|
|
+ int idx = bz_y[i] - 1;
|
|
if ( rk[idx] == 0 ) {
|
|
sc[idx] = -1;
|
|
} else {
|
|
@@ -976,7 +976,7 @@ for ( k = 0; k < np - 1; k++ ) {
|
|
int pd = 0;
|
|
|
|
for ( i = 0; i < tot; i++ ) {
|
|
- int idx = y[i] - 1;
|
|
+ int idx = bz_y[i] - 1;
|
|
for ( ii = 1; ii < 4; ii++ ) {
|
|
|
|
|
|
@@ -1476,7 +1476,7 @@ return match_score;
|
|
/* extern int rk[ RK_SIZE ]; */
|
|
/* extern int cp[ CP_SIZE ]; */
|
|
/* extern int rp[ RP_SIZE ]; */
|
|
-/* extern int y[ Y_SIZE ]; */
|
|
+/* extern int bz_y[ Y_SIZE ]; */
|
|
|
|
void bz_sift(
|
|
int * ww, /* INPUT and OUTPUT; endpoint groups index; *ww may be bumped by one or by two */
|
|
@@ -1507,7 +1507,7 @@ if ( n == 0 && t == 0 ) {
|
|
|
|
|
|
if ( sc[kx-1] != ftt ) {
|
|
- y[ (*tot)++ ] = kx;
|
|
+ bz_y[ (*tot)++ ] = kx;
|
|
rk[kx-1] = sc[kx-1];
|
|
sc[kx-1] = ftt;
|
|
}
|
|
@@ -1553,7 +1553,7 @@ if ( n == l ) {
|
|
qq[*qh] = kz;
|
|
zz[kz-1] = (*qh)++;
|
|
}
|
|
- y[(*tot)++] = kx;
|
|
+ bz_y[(*tot)++] = kx;
|
|
rk[kx-1] = sc[kx-1];
|
|
sc[kx-1] = ftt;
|
|
}
|
|
@@ -1697,12 +1697,12 @@ for ( ii = 0; ii < tp; ii++ ) { /* For each index up to the current value of
|
|
}
|
|
|
|
t = 0;
|
|
- y[0] = lim;
|
|
+ bz_y[0] = lim;
|
|
cp[0] = 1;
|
|
b = 0;
|
|
n = 1;
|
|
do { /* looping until T < 0 ... */
|
|
- if ( y[t] - cp[t] > 1 ) {
|
|
+ if (bz_y[t] - cp[t] > 1 ) {
|
|
k = sct[cp[t]][t];
|
|
j = ctt[k] + 1;
|
|
for ( i = 0; i < j; i++ ) {
|
|
@@ -1715,25 +1715,25 @@ for ( ii = 0; ii < tp; ii++ ) { /* For each index up to the current value of
|
|
do {
|
|
while ( rp[jj] < sct[kk][t] && jj < j )
|
|
jj++;
|
|
- while ( rp[jj] > sct[kk][t] && kk < y[t] )
|
|
+ while ( rp[jj] > sct[kk][t] && kk < bz_y[t] )
|
|
kk++;
|
|
- while ( rp[jj] == sct[kk][t] && kk < y[t] && jj < j ) {
|
|
+ while ( rp[jj] == sct[kk][t] && kk < bz_y[t] && jj < j ) {
|
|
sct[k][t+1] = sct[kk][t];
|
|
k++;
|
|
kk++;
|
|
jj++;
|
|
}
|
|
- } while ( kk < y[t] && jj < j );
|
|
+ } while ( kk < bz_y[t] && jj < j );
|
|
|
|
t++;
|
|
cp[t] = 1;
|
|
- y[t] = k;
|
|
+ bz_y[t] = k;
|
|
b = t;
|
|
n = 1;
|
|
} else {
|
|
int tot = 0;
|
|
|
|
- lim = y[t];
|
|
+ lim = bz_y[t];
|
|
for ( i = n-1; i < lim; i++ ) {
|
|
tot += ct[ sct[i][t] ];
|
|
}
|
|
@@ -1750,7 +1750,7 @@ for ( ii = 0; ii < tp; ii++ ) { /* For each index up to the current value of
|
|
|
|
{
|
|
int rk_index = b;
|
|
- lim = y[t];
|
|
+ lim = bz_y[t];
|
|
for ( i = n-1; i < lim; ) {
|
|
rk[ rk_index++ ] = sct[ i++ ][ t ];
|
|
}
|
|
@@ -1760,7 +1760,7 @@ for ( ii = 0; ii < tp; ii++ ) { /* For each index up to the current value of
|
|
t--;
|
|
if ( t >= 0 ) {
|
|
++cp[t];
|
|
- n = y[t];
|
|
+ n = bz_y[t];
|
|
}
|
|
} /* END IF */
|
|
|
|
diff --git a/libfprint/nbis/bozorth3/bz_gbls.c b/libfprint/nbis/bozorth3/bz_gbls.c
|
|
index dd828dc..ea283d8 100644
|
|
--- a/libfprint/nbis/bozorth3/bz_gbls.c
|
|
+++ b/libfprint/nbis/bozorth3/bz_gbls.c
|
|
@@ -102,7 +102,7 @@ int yl[ YL_SIZE_1 ][ YL_SIZE_2 ];
|
|
int rf[RF_SIZE_1][RF_SIZE_2];
|
|
int cf[CF_SIZE_1][CF_SIZE_2];
|
|
|
|
- int y[20000];
|
|
+ int bz_y[20000];
|
|
#else
|
|
int rq[ RQ_SIZE ] = {};
|
|
int tq[ TQ_SIZE ] = {};
|
|
@@ -122,6 +122,6 @@ int yl[ YL_SIZE_1 ][ YL_SIZE_2 ];
|
|
int rf[RF_SIZE_1][RF_SIZE_2] = {};
|
|
int cf[CF_SIZE_1][CF_SIZE_2] = {};
|
|
|
|
- int y[20000] = {};
|
|
+ int bz_y[20000] = {};
|
|
#endif
|
|
|
|
diff --git a/libfprint/nbis/include/bozorth.h b/libfprint/nbis/include/bozorth.h
|
|
index 08ec4b1..a705da9 100644
|
|
--- a/libfprint/nbis/include/bozorth.h
|
|
+++ b/libfprint/nbis/include/bozorth.h
|
|
@@ -245,7 +245,7 @@ extern int cp[ CP_SIZE ];
|
|
extern int rp[ RP_SIZE ];
|
|
extern int rf[RF_SIZE_1][RF_SIZE_2];
|
|
extern int cf[CF_SIZE_1][CF_SIZE_2];
|
|
-extern int y[20000];
|
|
+extern int bz_y[20000];
|
|
|
|
/**************************************************************************/
|
|
/**************************************************************************/
|
|
diff --git a/libfprint/nbis/remove-global-y.cocci b/libfprint/nbis/remove-global-y.cocci
|
|
new file mode 100644
|
|
index 0000000..3b740af
|
|
--- /dev/null
|
|
+++ b/libfprint/nbis/remove-global-y.cocci
|
|
@@ -0,0 +1,21 @@
|
|
+@ global_y @
|
|
+identifier y;
|
|
+@@
|
|
+int
|
|
+- y
|
|
++ bz_y
|
|
+[20000];
|
|
+
|
|
+@@
|
|
+identifier global_y.y;
|
|
+@@
|
|
+- y
|
|
++ bz_y
|
|
+[...]
|
|
+
|
|
+@@
|
|
+@@
|
|
+int
|
|
+- y
|
|
++ bz_y
|
|
+[20000] = {};
|
|
diff --git a/libfprint/nbis/update-from-nbis.sh b/libfprint/nbis/update-from-nbis.sh
|
|
index 742c8cb..75e82ba 100755
|
|
--- a/libfprint/nbis/update-from-nbis.sh
|
|
+++ b/libfprint/nbis/update-from-nbis.sh
|
|
@@ -186,6 +186,9 @@ sed -i 's/^\([[:space:]]*[[:alnum:]_]\+[\*[:space:]]\+'\
|
|
# Use GLib memory management
|
|
spatch --sp-file glib-memory.cocci --dir . --in-place
|
|
|
|
+# Rename global "y" variable in "bz_y"
|
|
+spatch --sp-file remove-global-y.cocci bozorth3/* include/bozorth.h --in-place
|
|
+
|
|
# The above leaves an unused variable around, triggering a warning
|
|
# remove it.
|
|
patch -p0 < glib-mem-warning.patch
|
|
--
|
|
2.24.1
|
|
|