24
24
*******************************************************************/
26
26
/*******************************************************//**
27
Creates a 64-bit integer out of two 32-bit integers.
27
Creates a 64-bit dulint out of two ulints.
28
28
@return created dulint */
33
33
ulint high, /*!< in: high-order 32 bits */
34
34
ulint low) /*!< in: low-order 32 bits */
36
ut_ad(high <= ULINT32_MASK);
37
ut_ad(low <= ULINT32_MASK);
38
return(((ib_uint64_t) high) << 32 | low);
41
/********************************************************//**
42
Rounds a 64-bit integer downward to a multiple of a power of 2.
38
ut_ad(high <= 0xFFFFFFFF);
39
ut_ad(low <= 0xFFFFFFFF);
47
/*******************************************************//**
48
Gets the high-order 32 bits of a dulint.
49
@return 32 bits in ulint */
54
dulint d) /*!< in: dulint */
59
/*******************************************************//**
60
Gets the low-order 32 bits of a dulint.
61
@return 32 bits in ulint */
66
dulint d) /*!< in: dulint */
71
/*******************************************************//**
72
Converts a dulint (a struct of 2 ulints) to ib_int64_t, which is a 64-bit
74
@return value in ib_int64_t type */
77
ut_conv_dulint_to_longlong(
78
/*=======================*/
79
dulint d) /*!< in: dulint */
81
return((ib_int64_t)d.low
82
+ (((ib_int64_t)d.high) << 32));
85
/*******************************************************//**
86
Tests if a dulint is zero.
87
@return TRUE if zero */
92
dulint a) /*!< in: dulint */
94
if ((a.low == 0) && (a.high == 0)) {
102
/*******************************************************//**
103
Compares two dulints.
104
@return -1 if a < b, 0 if a == b, 1 if a > b */
109
dulint a, /*!< in: dulint */
110
dulint b) /*!< in: dulint */
112
if (a.high > b.high) {
114
} else if (a.high < b.high) {
116
} else if (a.low > b.low) {
118
} else if (a.low < b.low) {
125
/*******************************************************//**
126
Calculates the max of two dulints.
132
dulint a, /*!< in: dulint */
133
dulint b) /*!< in: dulint */
135
if (ut_dulint_cmp(a, b) > 0) {
143
/*******************************************************//**
144
Calculates the min of two dulints.
150
dulint a, /*!< in: dulint */
151
dulint b) /*!< in: dulint */
153
if (ut_dulint_cmp(a, b) > 0) {
161
/*******************************************************//**
162
Adds a ulint to a dulint.
168
dulint a, /*!< in: dulint */
169
ulint b) /*!< in: ulint */
171
if (0xFFFFFFFFUL - b >= a.low) {
177
a.low = a.low - (0xFFFFFFFFUL - b) - 1;
184
/*******************************************************//**
185
Subtracts a ulint from a dulint.
191
dulint a, /*!< in: dulint */
192
ulint b) /*!< in: ulint, b <= a */
202
a.low = 0xFFFFFFFFUL - b;
211
/*******************************************************//**
212
Subtracts a dulint from another. NOTE that the difference must be positive
219
dulint a, /*!< in: dulint; NOTE a must be >= b and at most
220
2 to power 32 - 1 greater */
221
dulint b) /*!< in: dulint */
225
if (a.high == b.high) {
226
ut_ad(a.low >= b.low);
228
return(a.low - b.low);
231
ut_ad(a.high == b.high + 1);
233
diff = (ulint)(0xFFFFFFFFUL - b.low);
241
/********************************************************//**
242
Rounds a dulint downward to a multiple of a power of 2.
243
@return rounded value */
246
ut_dulint_align_down(
247
/*=================*/
248
dulint n, /*!< in: number to be rounded */
249
ulint align_no) /*!< in: align by this number which must be a
255
ut_ad(((align_no - 1) & align_no) == 0);
257
low = ut_dulint_get_low(n);
258
high = ut_dulint_get_high(n);
260
low = low & ~(align_no - 1);
262
return(ut_dulint_create(high, low));
265
/********************************************************//**
266
Rounds a dulint upward to a multiple of a power of 2.
267
@return rounded value */
272
dulint n, /*!< in: number to be rounded */
273
ulint align_no) /*!< in: align by this number which must be a
276
return(ut_dulint_align_down(ut_dulint_add(n, align_no - 1), align_no));
279
/********************************************************//**
280
Rounds ib_uint64_t downward to a multiple of a power of 2.
43
281
@return rounded value */