comparison libgsmefr/lsp_lsf.c @ 197:bcd337afa0f1

libgsmefr/lsp_lsf.c: perf opt
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 04 Jan 2023 04:02:19 +0000
parents 8d3412b7ec4e
children
comparison
equal deleted inserted replaced
196:1cdbaeec7bcc 197:bcd337afa0f1
59 59
60 for (i = m - 1; i >= 0; i--) 60 for (i = m - 1; i >= 0; i--)
61 { 61 {
62 /* find value in table that is just greater than lsp[i] */ 62 /* find value in table that is just greater than lsp[i] */
63 test (); 63 test ();
64 while (sub (table[ind], lsp[i]) < 0) 64 while (table[ind] < lsp[i])
65 { 65 {
66 ind--; 66 ind--;
67 test (); 67 test ();
68 } 68 }
69 69