Lines Matching defs:conflict_flags
960 uint32_t combined_add, combined_remove, conflict_flags;
964 conflict_flags = local_add & remote_remove;
965 if (conflict_flags != 0) {
966 conflict_pvt_flags = conflict_flags & pvt_mask;
967 conflict_flags &= ~pvt_mask;
969 local_add &= ~conflict_flags;
971 remote_remove &= ~conflict_flags;
977 conflict_flags = local_remove & remote_add;
978 if (conflict_flags != 0) {
979 conflict_pvt_flags = conflict_flags & pvt_mask;
980 conflict_flags &= ~pvt_mask;
982 local_remove &= ~conflict_flags;
984 remote_add &= ~conflict_flags;
996 conflict_flags = local_final ^ remote_final;
997 combined_add &= conflict_flags;
998 combined_remove &= conflict_flags;
1004 conflict_flags = local_wanted ^ remote_wanted;
1005 if (conflict_flags != 0) {