Home
last modified time | relevance | path

Searched refs:n_left (Results 1 – 2 of 2) sorted by relevance

/PHP-5.5/ext/standard/
H A Darray.c1742 int j, n_elems, rnd_idx, n_left; in php_array_data_shuffle() local
1752 n_left = n_elems; in php_array_data_shuffle()
1756 while (--n_left) { in php_array_data_shuffle()
1758 RAND_RANGE(rnd_idx, 0, n_left, PHP_RAND_MAX); in php_array_data_shuffle()
1759 if (rnd_idx != n_left) { in php_array_data_shuffle()
1760 temp = elems[n_left]; in php_array_data_shuffle()
1761 elems[n_left] = elems[rnd_idx]; in php_array_data_shuffle()
H A Dstring.c5386 long n_elems, rnd_idx, n_left; local
5396 n_left = n_elems;
5398 while (--n_left) {
5400 RAND_RANGE(rnd_idx, 0, n_left, PHP_RAND_MAX);
5401 if (rnd_idx != n_left) {
5402 temp = str[n_left];
5403 str[n_left] = str[rnd_idx];

Completed in 40 milliseconds