Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Darray.c3218 int64_t idx, j, n_elems, rnd_idx, n_left; local
3229 n_left = n_elems;
3257 while (--n_left) {
3258 rnd_idx = algo->range(state, 0, n_left);
3262 if (rnd_idx != n_left) {
3263 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]);
3285 while (--n_left) {
3286 rnd_idx = algo->range(state, 0, n_left);
3290 if (rnd_idx != n_left) {
3291 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]);
[all …]
H A Dstring.c5961 int64_t n_elems, rnd_idx, n_left; local
5972 n_left = n_elems;
5974 while (--n_left) {
5975 rnd_idx = algo->range(state, 0, n_left);
5979 if (rnd_idx != n_left) {
5980 temp = str[n_left];
5981 str[n_left] = str[rnd_idx];

Completed in 32 milliseconds