X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Fbase%2Fdigitseq%2Fcl_DS_mul_fftm.h;h=212b58d248615fb1987231e8a1de602541866169;hb=3af2cde18b3aabed4c808b0113daa81c2263b0bd;hp=a984802ce039e8179a26fda2681a2e133dba6fbd;hpb=bd2f4302b76ff0dd4cf382c65381fff651e2487d;p=cln.git diff --git a/src/base/digitseq/cl_DS_mul_fftm.h b/src/base/digitseq/cl_DS_mul_fftm.h index a984802..212b58d 100644 --- a/src/base/digitseq/cl_DS_mul_fftm.h +++ b/src/base/digitseq/cl_DS_mul_fftm.h @@ -60,7 +60,7 @@ static inline void assign (const uintC R, const uintC chlen, const uintD* a, uintD* r) { - unused R; + cl_unused R; copy_loop_lsp(a,r,chlen); } @@ -68,7 +68,7 @@ static inline void assign (const uintC R, const uintC chlen, static void addm (const uintC R, const uintC chlen, const uintD* a, const uintD* b, uintD* r) { - unused R; + cl_unused R; // r := a+b. add_loop_lsp(a,b, r, chlen); #if 0 @@ -96,7 +96,7 @@ static void addm (const uintC R, const uintC chlen, static void subm (const uintC R, const uintC chlen, const uintD* a, const uintD* b, uintD* r) { - unused R; + cl_unused R; // r := a-b. sub_loop_lsp(a,b, r, chlen); #if 0 @@ -178,7 +178,7 @@ static void shiftleftm (const uintC R, const uintC chlen, static void mulm (const uintC R, const uintC chlen, const uintD* a, const uintD* b, uintD* r) { - unused R; + cl_unused R; // The leading digits are very likely to be 0. var uintP a_len = chlen; if (lspref(a,a_len-1) == 0) @@ -233,7 +233,7 @@ static void mulm (const uintC R, const uintC chlen, static void shiftm (const uintC R, const uintC chlen, const uintD* a, uintD* b) { - unused R; + cl_unused R; shiftrightcopy_loop_msp(a lspop chlen,b lspop chlen,chlen,1,0); if (lspref(a,0) & 1) { // ((a + p) >> 1) = (a >> 1) + (p>>1) + 1.