Lines Matching refs:u1
662 const CUpdateItem &u1 = updateItems[*p1];
665 if (u1.IsAnti != u2.IsAnti)
666 return (u1.IsAnti ? 1 : -1);
667 if (u1.IsDir != u2.IsDir)
670 if (u1.IsDir)
671 return (u1.IsAnti ? 1 : -1);
674 int n = CompareFileNames(u1.Name, u2.Name);
675 return (u1.IsDir && u1.IsAnti) ? -n : n;
810 const CUpdateItem &u1 = *a1.UpdateItem;
814 if (u1.IsAltStream != u2.IsAltStream)
815 return u1.IsAltStream ? 1 : -1;
820 if (u1.IsDir != u2.IsDir)
821 return u1.IsDir ? 1 : -1;
822 if (u1.IsDir)
824 if (u1.IsAnti != u2.IsAnti)
825 return (u1.IsAnti ? 1 : -1);
826 int n = CompareFileNames(u1.Name, u2.Name);
836 RINOZ(CompareFileNames(u1.Name.Ptr(a1.ExtensionPos), u2.Name.Ptr(a2.ExtensionPos)))
837 RINOZ(CompareFileNames(u1.Name.Ptr(a1.NamePos), u2.Name.Ptr(a2.NamePos)))
838 if (!u1.MTimeDefined && u2.MTimeDefined) return 1;
839 if (u1.MTimeDefined && !u2.MTimeDefined) return -1;
840 if (u1.MTimeDefined && u2.MTimeDefined) RINOZ_COMP(u1.MTime, u2.MTime)
841 RINOZ_COMP(u1.Size, u2.Size)
863 RINOZ(CompareFileNames(u1.Name, tf.Name));
887 RINOK(CompareFileNames(u1.Name, u2.Name))