Lines Matching refs:UINT64_MAX
113 … spwd && spwd->sp_expire > 1 && (uint64_t) spwd->sp_expire < (UINT64_MAX-1)/USEC_PER_DAY, in nss_passwd_to_user_record()
114 spwd->sp_expire * USEC_PER_DAY, UINT64_MAX); in nss_passwd_to_user_record()
121 … spwd && spwd->sp_lstchg > 0 && (uint64_t) spwd->sp_lstchg <= (UINT64_MAX-1)/USEC_PER_DAY, in nss_passwd_to_user_record()
122 spwd->sp_lstchg * USEC_PER_DAY, UINT64_MAX); in nss_passwd_to_user_record()
125 spwd && spwd->sp_min > 0 && (uint64_t) spwd->sp_min <= (UINT64_MAX-1)/USEC_PER_DAY, in nss_passwd_to_user_record()
126 spwd->sp_min * USEC_PER_DAY, UINT64_MAX); in nss_passwd_to_user_record()
129 spwd && spwd->sp_max > 0 && (uint64_t) spwd->sp_max <= (UINT64_MAX-1)/USEC_PER_DAY, in nss_passwd_to_user_record()
130 spwd->sp_max * USEC_PER_DAY, UINT64_MAX); in nss_passwd_to_user_record()
133 … spwd && spwd->sp_warn > 0 && (uint64_t) spwd->sp_warn <= (UINT64_MAX-1)/USEC_PER_DAY, in nss_passwd_to_user_record()
134 spwd->sp_warn * USEC_PER_DAY, UINT64_MAX); in nss_passwd_to_user_record()
137 … spwd && spwd->sp_inact > 0 && (uint64_t) spwd->sp_inact <= (UINT64_MAX-1)/USEC_PER_DAY, in nss_passwd_to_user_record()
138 spwd->sp_inact * USEC_PER_DAY, UINT64_MAX); in nss_passwd_to_user_record()
150 …JSON_BUILD_PAIR_CONDITION(hr->not_after_usec != UINT64_MAX, "notAfterUSec", JSON_BUILD_UNSIGNED(hr… in nss_passwd_to_user_record()
152 …JSON_BUILD_PAIR_CONDITION(hr->last_password_change_usec != UINT64_MAX, "lastPasswordChangeUSec", J… in nss_passwd_to_user_record()
153 …JSON_BUILD_PAIR_CONDITION(hr->password_change_min_usec != UINT64_MAX, "passwordChangeMinUSec", JSO… in nss_passwd_to_user_record()
154 …JSON_BUILD_PAIR_CONDITION(hr->password_change_max_usec != UINT64_MAX, "passwordChangeMaxUSec", JSO… in nss_passwd_to_user_record()
155 …JSON_BUILD_PAIR_CONDITION(hr->password_change_warn_usec != UINT64_MAX, "passwordChangeWarnUSec", J… in nss_passwd_to_user_record()
156 …JSON_BUILD_PAIR_CONDITION(hr->password_change_inactive_usec != UINT64_MAX, "passwordChangeInactive… in nss_passwd_to_user_record()