Searched refs:n_left (Results 1 – 2 of 2) sorted by relevance
/PHP-8.3/ext/standard/ |
H A D | array.c | 3105 int64_t idx, j, n_elems, rnd_idx, n_left; local 3116 n_left = n_elems; 3144 while (--n_left) { 3145 rnd_idx = algo->range(status, 0, n_left); 3149 if (rnd_idx != n_left) { 3150 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]); 3172 while (--n_left) { 3173 rnd_idx = algo->range(status, 0, n_left); 3177 if (rnd_idx != n_left) { 3178 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]); [all …]
|
H A D | string.c | 5634 int64_t n_elems, rnd_idx, n_left; local 5645 n_left = n_elems; 5647 while (--n_left) { 5648 rnd_idx = algo->range(status, 0, n_left); 5652 if (rnd_idx != n_left) { 5653 temp = str[n_left]; 5654 str[n_left] = str[rnd_idx];
|
Completed in 34 milliseconds