Lines Matching refs:other
41 vers::vers(vers* other) in vers() argument
44 assign(other); in vers()
48 vers::assign(vers* other) in assign() argument
51 if (other == NULL) { in assign()
55 time_sec = other->time_sec; in assign()
56 time_usec = other->time_usec; in assign()
57 vers_low = other->vers_low; in assign()
58 vers_high = other->vers_high; in assign()
132 vers::earlier_than(vers *other) in earlier_than() argument
136 if (other == NULL) { in earlier_than()
143 READLOCKNR(other, lret, "r other vers::earlier_than"); in earlier_than()
149 if (other->vers_high > vers_high) ret = TRUE; in earlier_than()
150 else if (other->vers_high < vers_high) ret = FALSE; in earlier_than()
151 else if (other->vers_low > vers_low) ret = TRUE; in earlier_than()
154 READUNLOCKNR(other, lret, "ru other vers::earlier_than"); in earlier_than()
187 vers::equal( vers *other) { in equal() argument
189 bool_t ret = other != NULL && in equal()
190 vers_high == other->vers_high && in equal()
191 vers_low == other->vers_low && in equal()
192 time_sec == other->time_sec && in equal()
193 time_usec == other->time_usec; in equal()