Searched refs:pListTail (Results 1 - 11 of 11) sorted by relevance

/PHP_TRUNK/Zend/
H A Dzend_string.c139 p->pListLast = CG(interned_strings).pListTail;
140 CG(interned_strings).pListTail = p;
211 CG(interned_strings).pListTail = p->pListLast;
H A Dzend_hash.h73 Bucket *pListTail; member in struct:_hashtable
H A Dzend_hash.c33 (element)->pListLast = (ht)->pListTail; \
34 (ht)->pListTail = (element); \
168 ht->pListTail = NULL;
525 ht->pListTail = p->pListLast;
587 ht->pListTail = NULL;
641 ht->pListTail = p->pListLast;
685 p = ht->pListTail;
688 p = ht->pListTail;
797 p = ht->pListTail;
1113 *pos = ht->pListTail;
[all...]
/PHP_TRUNK/ext/spl/
H A Dphp_spl.c457 (ht)->pListTail->pListNext = (ht)->pListHead; \
458 (ht)->pListHead = (ht)->pListTail; \
459 (ht)->pListTail = (ht)->pListHead->pListLast; \
461 (ht)->pListTail->pListNext = NULL; \
H A Dspl_array.c738 spl_array_set_pos(intern, aht->pListTail);
/PHP_TRUNK/ext/soap/
H A Dphp_encoding.c2276 if (ht->pListTail && ht->pListTail->nKeyLength == 0) {
2277 return ht->pListTail->h-1;
/PHP_TRUNK/ext/opcache/
H A Dzend_persist.c110 if (ht->pListTail) {
111 ht->pListTail = zend_shared_alloc_get_xlat_entry(ht->pListTail);
H A DZendAccelerator.c285 ZCSG(interned_strings).pListTail = ZCSG(interned_strings_saved_state).pListTail;
289 if (ZCSG(interned_strings).pListTail) {
290 ZCSG(interned_strings).pListTail->pListNext = NULL;
303 ZCSG(interned_strings_saved_state).pListTail = ZCSG(interned_strings).pListTail;
362 p->pListLast = ZCSG(interned_strings).pListTail;
363 ZCSG(interned_strings).pListTail = p;
H A DZendAccelerator.h298 Bucket *pListTail; member in struct:_zend_accel_shared_globals::__anon1
H A Dzend_accelerator_util_funcs.c238 ht->pListTail = NULL;
288 q->pListLast = ht->pListTail;
289 ht->pListTail = q;
358 ht->pListTail = NULL;
408 q->pListLast = ht->pListTail;
409 ht->pListTail = q;
469 ht->pListTail = NULL;
519 q->pListLast = ht->pListTail;
520 ht->pListTail = q;
/PHP_TRUNK/ext/standard/
H A Darray.c1768 hash->pListTail = NULL;
1772 if (hash->pListTail) {
1773 hash->pListTail->pListNext = elems[j];
1775 elems[j]->pListLast = hash->pListTail;
1777 hash->pListTail = elems[j];
3950 hash->pListTail = NULL;
3954 if (hash->pListTail) {
3955 hash->pListTail->pListNext = indirect[k][i];
3957 indirect[k][i]->pListLast = hash->pListTail;
3959 hash->pListTail
[all...]

Completed in 32 milliseconds