Lines Matching refs:flags

87 	int                    flags;  member
102 int flags; member
373 intern->flags = 0; in spl_dllist_object_new_ex()
391 intern->flags = other->flags; in spl_dllist_object_new_ex()
400 intern->flags |= (SPL_DLLIST_IT_FIX | SPL_DLLIST_IT_LIFO); in spl_dllist_object_new_ex()
403 intern->flags |= SPL_DLLIST_IT_FIX; in spl_dllist_object_new_ex()
499 ZVAL_LONG(&tmp, intern->flags); in spl_dllist_object_get_debug_info()
694 if ((intern->flags & SPL_DLLIST_IT_FIX) in PHP_METHOD()
695 && (intern->flags & SPL_DLLIST_IT_LIFO) != (value & SPL_DLLIST_IT_LIFO)) { in PHP_METHOD()
700 intern->flags = (value & SPL_DLLIST_IT_MASK) | (intern->flags & SPL_DLLIST_IT_FIX); in PHP_METHOD()
702 RETURN_LONG(intern->flags); in PHP_METHOD()
717 RETURN_LONG(intern->flags); in PHP_METHOD()
754 element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO); in PHP_METHOD()
789 element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO); in PHP_METHOD()
834 element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO); in PHP_METHOD()
887 …ment **traverse_pointer_ptr, int *traverse_position_ptr, spl_ptr_llist *llist, int flags) /* {{{ */ in spl_dllist_it_helper_rewind() argument
891 if (flags & SPL_DLLIST_IT_LIFO) { in spl_dllist_it_helper_rewind()
903 …ment **traverse_pointer_ptr, int *traverse_position_ptr, spl_ptr_llist *llist, int flags) /* {{{ */ in spl_dllist_it_helper_move_forward() argument
908 if (flags & SPL_DLLIST_IT_LIFO) { in spl_dllist_it_helper_move_forward()
912 if (flags & SPL_DLLIST_IT_DELETE) { in spl_dllist_it_helper_move_forward()
921 if (flags & SPL_DLLIST_IT_DELETE) { in spl_dllist_it_helper_move_forward()
943 …t_helper_rewind(&iterator->traverse_pointer, &iterator->traverse_position, llist, iterator->flags); in spl_dllist_it_rewind()
984 …forward(&iterator->traverse_pointer, &iterator->traverse_position, object->llist, iterator->flags); in spl_dllist_it_move_forward()
1010 …ern->traverse_pointer, &intern->traverse_position, intern->llist, intern->flags ^ SPL_DLLIST_IT_LI… in PHP_METHOD()
1023 …_move_forward(&intern->traverse_pointer, &intern->traverse_position, intern->llist, intern->flags); in PHP_METHOD()
1049 …helper_rewind(&intern->traverse_pointer, &intern->traverse_position, intern->llist, intern->flags); in PHP_METHOD()
1077 zval flags; in PHP_METHOD() local
1087 ZVAL_LONG(&flags, intern->flags); in PHP_METHOD()
1088 php_var_serialize(&buf, &flags, &var_hash); in PHP_METHOD()
1112 zval *flags, *elem; in PHP_METHOD() local
1136 flags = var_tmp_var(&var_hash); in PHP_METHOD()
1137 if (!php_var_unserialize(flags, &p, s + buf_len, &var_hash) || Z_TYPE_P(flags) != IS_LONG) { in PHP_METHOD()
1141 intern->flags = (int)Z_LVAL_P(flags); in PHP_METHOD()
1183 ZVAL_LONG(&tmp, intern->flags); in PHP_METHOD()
1222 intern->flags = (int) Z_LVAL_P(flags_zv); in PHP_METHOD()
1259 element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO); in PHP_METHOD()
1324 iterator->flags = dllist_object->flags & SPL_DLLIST_IT_MASK; in spl_dllist_get_iterator()