Home
last modified time | relevance | path

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

/PHP-5.4/Zend/
H A Dzend_hash.c1424 Bucket **arTmp; in zend_hash_sort() local
1434 if (!arTmp) { in zend_hash_sort()
1440 arTmp[i] = p; in zend_hash_sort()
1448 ht->pListHead = arTmp[0]; in zend_hash_sort()
1452 arTmp[0]->pListLast = NULL; in zend_hash_sort()
1454 arTmp[0]->pListNext = arTmp[1]; in zend_hash_sort()
1456 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1457 arTmp[j]->pListNext = arTmp[j+1]; in zend_hash_sort()
1459 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1460 arTmp[j]->pListNext = NULL; in zend_hash_sort()
[all …]
/PHP-5.4/ext/standard/
H A Darray.c2785 struct bucketindex *arTmp, *cmpdata, *lastkept; in PHP_FUNCTION() local
2803arTmp = (struct bucketindex *) pemalloc((Z_ARRVAL_P(array)->nNumOfElements + 1) * sizeof(struct bu… in PHP_FUNCTION()
2804 if (!arTmp) { in PHP_FUNCTION()
2809 arTmp[i].b = p; in PHP_FUNCTION()
2810 arTmp[i].i = i; in PHP_FUNCTION()
2812 arTmp[i].b = NULL; in PHP_FUNCTION()
2813 zend_qsort((void *) arTmp, i, sizeof(struct bucketindex), php_array_data_compare TSRMLS_CC); in PHP_FUNCTION()
2816 lastkept = arTmp; in PHP_FUNCTION()
2817 for (cmpdata = arTmp + 1; cmpdata->b; cmpdata++) { in PHP_FUNCTION()
2838 pefree(arTmp, Z_ARRVAL_P(array)->persistent); in PHP_FUNCTION()

Completed in 28 milliseconds