Lines Matching refs:indirect
3770 Bucket*** indirect; in PHP_FUNCTION() local
3883 indirect = (Bucket ***)safe_emalloc(array_size, sizeof(Bucket **), 0); in PHP_FUNCTION()
3885 indirect[i] = (Bucket **)safe_emalloc((num_arrays + 1), sizeof(Bucket *), 0); in PHP_FUNCTION()
3890 indirect[k][i] = p; in PHP_FUNCTION()
3894 indirect[k][num_arrays] = NULL; in PHP_FUNCTION()
3898 zend_qsort(indirect, array_size, sizeof(Bucket **), php_multisort_compare TSRMLS_CC); in PHP_FUNCTION()
3904 hash->pListHead = indirect[0][i];; in PHP_FUNCTION()
3910 hash->pListTail->pListNext = indirect[k][i]; in PHP_FUNCTION()
3912 indirect[k][i]->pListLast = hash->pListTail; in PHP_FUNCTION()
3913 indirect[k][i]->pListNext = NULL; in PHP_FUNCTION()
3914 hash->pListTail = indirect[k][i]; in PHP_FUNCTION()
3931 efree(indirect[i]); in PHP_FUNCTION()
3933 efree(indirect); in PHP_FUNCTION()