Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Darray.c3217 int64_t idx, j, n_elems, rnd_idx, n_left; local
3228 n_left = n_elems;
3256 while (--n_left) {
3257 rnd_idx = algo->range(state, 0, n_left);
3261 if (rnd_idx != n_left) {
3262 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]);
3284 while (--n_left) {
3285 rnd_idx = algo->range(state, 0, n_left);
3289 if (rnd_idx != n_left) {
3290 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]);
[all …]
H A Dstring.c5946 int64_t n_elems, rnd_idx, n_left; local
5957 n_left = n_elems;
5959 while (--n_left) {
5960 rnd_idx = algo->range(state, 0, n_left);
5964 if (rnd_idx != n_left) {
5965 temp = str[n_left];
5966 str[n_left] = str[rnd_idx];

Completed in 32 milliseconds