Lines Matching refs:cs

327 #define DEL_SOURCE(cs) { \  argument
328 zend_block_source *__ns = (*cs)->next; \
329 efree(*cs); \
330 *cs = __ns; \
337 zend_block_source **cs; in replace_source() local
340 for (cs = &list; *cs; cs = &((*cs)->next)) { in replace_source()
341 if ((*cs)->from == new) { in replace_source()
343 DEL_SOURCE(cs); in replace_source()
349 if ((*cs)->from == old) { in replace_source()
351 DEL_SOURCE(cs); in replace_source()
353 (*cs)->from = new; in replace_source()
363 zend_block_source **cs = &to->sources; in del_source() local
374 while (*cs) { in del_source()
375 if ((*cs)->from == from) { in del_source()
376 DEL_SOURCE(cs); in del_source()
379 cs = &((*cs)->next); in del_source()
497 zend_block_source *cs; in zend_rebuild_access_path() local
502 cs = b->sources; in zend_rebuild_access_path()
503 while (cs) { in zend_rebuild_access_path()
504 zend_block_source *n = cs->next; in zend_rebuild_access_path()
505 efree(cs); in zend_rebuild_access_path()
506 cs = n; in zend_rebuild_access_path()
1426 zend_block_source *cs = block->op1_to->sources; in zend_jmp_optimization()
1429 while(cs) { in zend_jmp_optimization()
1430 if (cs->from->follow_to == block->op1_to) { in zend_jmp_optimization()
1434 cs = cs->next; in zend_jmp_optimization()
2098 zend_block_source *cs = cur_block->sources; in zend_block_optimization() local
2099 while (cs) { in zend_block_optimization()
2100 zend_block_source *n = cs->next; in zend_block_optimization()
2101 efree(cs); in zend_block_optimization()
2102 cs = n; in zend_block_optimization()