Home
last modified time | relevance | path

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

/PHP-5.3/Zend/
H A Dzend_hash.c1363 Bucket **arTmp; in zend_hash_sort() local
1373 if (!arTmp) { in zend_hash_sort()
1379 arTmp[i] = p; in zend_hash_sort()
1387 ht->pListHead = arTmp[0]; in zend_hash_sort()
1391 arTmp[0]->pListLast = NULL; in zend_hash_sort()
1393 arTmp[0]->pListNext = arTmp[1]; in zend_hash_sort()
1395 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1396 arTmp[j]->pListNext = arTmp[j+1]; in zend_hash_sort()
1398 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1399 arTmp[j]->pListNext = NULL; in zend_hash_sort()
[all …]
/PHP-5.3/ext/standard/
H A Darray.c2775 struct bucketindex *arTmp, *cmpdata, *lastkept; in PHP_FUNCTION() local
2793arTmp = (struct bucketindex *) pemalloc((Z_ARRVAL_P(array)->nNumOfElements + 1) * sizeof(struct bu… in PHP_FUNCTION()
2794 if (!arTmp) { in PHP_FUNCTION()
2799 arTmp[i].b = p; in PHP_FUNCTION()
2800 arTmp[i].i = i; in PHP_FUNCTION()
2802 arTmp[i].b = NULL; in PHP_FUNCTION()
2803 zend_qsort((void *) arTmp, i, sizeof(struct bucketindex), php_array_data_compare TSRMLS_CC); in PHP_FUNCTION()
2806 lastkept = arTmp; in PHP_FUNCTION()
2807 for (cmpdata = arTmp + 1; cmpdata->b; cmpdata++) { in PHP_FUNCTION()
2828 pefree(arTmp, Z_ARRVAL_P(array)->persistent); in PHP_FUNCTION()

Completed in 32 milliseconds