Lines Matching +defs:value +defs:max
105 dns_time64_from32(uint32_t value) {
118 if (isc_serial_gt(value, now)) {
119 t = start + (value - now);
121 t = start - (now - value);
128 dns_time32_totext(uint32_t value, isc_buffer_t *target) {
129 return dns_time64_totext(dns_time64_from32(value), target);
135 int64_t value;
139 #define RANGE(min, max, value) \
141 if (value < (min) || value > (max)) \
183 value = second + (60 * minute) + (3600 * hour) + ((day - 1) * 86400);
185 value += days[i] * 86400;
188 value += 86400;
193 value -= secs;
198 value += secs;
202 *target = value;