Lines Matching defs:utmp
52 uint64_t utmp;
58 memcpy(&utmp, cp, sizeof(utmp));
61 && utmp == 0)
64 && (int64_t)utmp < 0) {
66 utmp = 0 - utmp;
70 return ossl_i2c_uint64_int(cont, utmp, neg);
76 uint64_t utmp = 0;
94 if (!ossl_c2i_uint64_int(&utmp, &neg, &cont, len))
101 && !neg && utmp > INT64_MAX) {
107 utmp = 0 - utmp;
110 memcpy(cp, &utmp, sizeof(utmp));
147 uint32_t utmp;
153 memcpy(&utmp, cp, sizeof(utmp));
156 && utmp == 0)
159 && (int32_t)utmp < 0) {
161 utmp = 0 - utmp;
165 return ossl_i2c_uint64_int(cont, (uint64_t)utmp, neg);
178 uint64_t utmp = 0;
197 if (!ossl_c2i_uint64_int(&utmp, &neg, &cont, len))
204 if (utmp > ABS_INT32_MIN) {
208 utmp = 0 - utmp;
210 if (((it->size & INTxx_FLAG_SIGNED) != 0 && utmp > INT32_MAX)
211 || ((it->size & INTxx_FLAG_SIGNED) == 0 && utmp > UINT32_MAX)) {
218 utmp2 = (uint32_t)utmp;