Lines Matching refs:update
194 STATIC mp_obj_t set_diff_int(size_t n_args, const mp_obj_t *args, bool update) { in set_diff_int() argument
196 if (update) { in set_diff_int()
231 STATIC mp_obj_t set_intersect_int(mp_obj_t self_in, mp_obj_t other, bool update) { in set_intersect_int() argument
232 if (update) { in set_intersect_int()
239 return update ? mp_const_none : set_copy(self_in); in set_intersect_int()
253 if (update) { in set_intersect_int()
260 return update ? mp_const_none : MP_OBJ_FROM_PTR(out); in set_intersect_int()
458 bool update = mp_obj_is_type(lhs, &mp_type_set); in set_binary_op() local
460 bool update = true; in set_binary_op() local
476 if (update) { in set_binary_op()
483 if (update) { in set_binary_op()
490 rhs = set_intersect_int(lhs, rhs, update); in set_binary_op()
491 if (update) { in set_binary_op()
497 return set_diff_int(2, args, update); in set_binary_op()