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.c3219 int64_t idx, j, n_elems, rnd_idx, n_left; local
3230 n_left = n_elems;
3258 while (--n_left) {
3259 rnd_idx = algo->range(state, 0, n_left);
3263 if (rnd_idx != n_left) {
3264 ZVAL_COPY_VALUE(&temp, &hash->arPacked[n_left]);
3286 while (--n_left) {
3287 rnd_idx = algo->range(state, 0, n_left);
3291 if (rnd_idx != n_left) {
3292 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 49 milliseconds