Lines Matching refs:p1
1419 Bucket *p1, *p2 = NULL; in zend_hash_compare() local
1436 p1 = ht1->pListHead; in zend_hash_compare()
1441 while (p1) { in zend_hash_compare()
1448 if (p1->nKeyLength==0 && p2->nKeyLength==0) { /* numeric indices */ in zend_hash_compare()
1449 if (p1->h != p2->h) { in zend_hash_compare()
1452 return p1->h > p2->h ? 1 : -1; in zend_hash_compare()
1455 result = p1->nKeyLength - p2->nKeyLength; in zend_hash_compare()
1461 result = memcmp(p1->arKey, p2->arKey, p1->nKeyLength); in zend_hash_compare()
1470 if (p1->nKeyLength==0) { /* numeric index */ in zend_hash_compare()
1471 if (zend_hash_index_find(ht2, p1->h, &pData2)==FAILURE) { in zend_hash_compare()
1477 if (zend_hash_quick_find(ht2, p1->arKey, p1->nKeyLength, p1->h, &pData2)==FAILURE) { in zend_hash_compare()
1484 result = compar(p1->pData, pData2 TSRMLS_CC); in zend_hash_compare()
1490 p1 = p1->pListNext; in zend_hash_compare()