mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
parent
b188579bb6
commit
a8b1099a1e
228 changed files with 10990 additions and 5670 deletions
|
|
@ -48,9 +48,9 @@ void silk_insertion_sort_increasing(
|
|||
opus_int i, j;
|
||||
|
||||
/* Safety checks */
|
||||
silk_assert( K > 0 );
|
||||
silk_assert( L > 0 );
|
||||
silk_assert( L >= K );
|
||||
celt_assert( K > 0 );
|
||||
celt_assert( L > 0 );
|
||||
celt_assert( L >= K );
|
||||
|
||||
/* Write start indices in index vector */
|
||||
for( i = 0; i < K; i++ ) {
|
||||
|
|
@ -96,9 +96,9 @@ void silk_insertion_sort_decreasing_int16(
|
|||
opus_int value;
|
||||
|
||||
/* Safety checks */
|
||||
silk_assert( K > 0 );
|
||||
silk_assert( L > 0 );
|
||||
silk_assert( L >= K );
|
||||
celt_assert( K > 0 );
|
||||
celt_assert( L > 0 );
|
||||
celt_assert( L >= K );
|
||||
|
||||
/* Write start indices in index vector */
|
||||
for( i = 0; i < K; i++ ) {
|
||||
|
|
@ -141,7 +141,7 @@ void silk_insertion_sort_increasing_all_values_int16(
|
|||
opus_int i, j;
|
||||
|
||||
/* Safety checks */
|
||||
silk_assert( L > 0 );
|
||||
celt_assert( L > 0 );
|
||||
|
||||
/* Sort vector elements by value, increasing order */
|
||||
for( i = 1; i < L; i++ ) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue