/systemd/src/journal/ |
H A D | journald.c | 96 t = MIN(t, u - n);
|
H A D | test-compress-benchmark.c | 111 memzero(buf, MIN(size + 1000, MAX_SIZE));
|
H A D | compress.c | 147 space = MIN(src_size * 2, dst_max ?: (size_t) -1); 173 space = MIN(2 * space, dst_max ?: (size_t) -1); 488 k = MIN(LZ4_BUFSIZE, st.st_size - total_in);
|
/systemd/src/basic/ |
H A D | io-util.h | 70 sub = MIN(i[j].iov_len, k);
|
H A D | rlimit-util.c | 47 fixed.rlim_cur = MIN(rlim->rlim_cur, highest.rlim_max); 48 fixed.rlim_max = MIN(rlim->rlim_max, highest.rlim_max);
|
H A D | bitmap.c | 210 common_n_bitmaps = MIN(a->n_bitmaps, b->n_bitmaps);
|
H A D | macro.h | 168 #undef MIN macro 169 #define MIN(a, b) __MIN(UNIQ, (a), UNIQ, (b)) macro 179 const typeof(x) _c = MIN(x,y); \ 180 MIN(_c, z); \
|
H A D | in-addr-util.c | 104 m = MIN(aprefixlen, bprefixlen);
|
H A D | path-util.c | 418 d = memcmp(a, b, MIN(j, k));
|
H A D | process-util.c | 167 size_t n = MIN(left-1, 3U);
|
H A D | string-util.c | 367 r = ascii_strcasecmp_n(a, b, MIN(n, m));
|
H A D | hexdecoct.c | 578 int act = MIN(width, avail);
|
H A D | time-util.c | 397 n = MIN((size_t) k, l);
|
/systemd/src/test/ |
H A D | test-rlimit-util.c | 64 new.rlim_cur = MIN(5U, old.rlim_max);
|
H A D | test-util.c | 122 assert_se(MAX(MIN(1, MIN(2, MIN(3, 4))), 5) == 5); 123 assert_se(MAX(MAX(1, MIN(2, MIN(3, 2))), 1) == 2);
|
/systemd/src/shared/ |
H A D | uid-range.c | 48 begin = MIN(x->start, y->start); 103 begin = MIN(x->start, start);
|
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-dump.c | 581 hdr.incl_len = MIN(hdr.orig_len, snaplen); 587 w = MIN(BUS_MESSAGE_BODY_BEGIN(m), snaplen); 596 w = MIN(part->size, snaplen);
|
/systemd/src/libsystemd-network/ |
H A D | sd-ndisc.c | 288 len = MIN(prefixlen, addr_prefixlen); 382 prefixlen = MIN(prefix->len, prefix_opt->nd_opt_pi_prefix_len);
|
/systemd/src/resolve/ |
H A D | resolved-dns-server.c | 301 s->resend_timeout = MIN(s->resend_timeout * 2, DNS_TIMEOUT_MAX_USEC); 366 s->features_grace_period_usec = MIN(s->features_grace_period_usec * 2, DNS_SERVER_FEATURE_GRACE_PERIOD_MAX_USEC);
|
H A D | resolved-dns-scope.c | 167 s->resend_timeout = MIN(MAX(MULTICAST_RESEND_TIMEOUT_MIN_USEC, s->max_rtt * 2), MULTICAST_RESEND_TIMEOUT_MAX_USEC); 174 s->resend_timeout = MIN(s->resend_timeout * 2, MULTICAST_RESEND_TIMEOUT_MAX_USEC);
|
H A D | resolved-dns-dnssec.c | 156 m = MIN(DNS_RESOURCE_RECORD_RDATA_SIZE(*x), DNS_RESOURCE_RECORD_RDATA_SIZE(*y)); 1873 *ttl = MIN(covering_rr->ttl, wildcard_rr->ttl);
|
/systemd/src/bootchart/ |
H A D | svg.c | 563 stop = MIN(i + (range / 2), n_samples - 1); 601 stop = MIN(i + (range / 2), n_samples); 676 stop = MIN(i + (range / 2), n_samples - 1); 712 stop = MIN(i + (range / 2), n_samples);
|
/systemd/src/journal-remote/ |
H A D | journal-remote-parse.c | 123 !realloc_buffer(source, MIN(source->filled + LINE_CHUNK, ENTRY_SIZE_MAX)))
|
/systemd/src/core/ |
H A D | timer.c | 401 t->next_elapse_realtime = MIN(t->next_elapse_realtime, v->next_elapse); 470 t->next_elapse_monotonic_or_boottime = MIN(t->next_elapse_monotonic_or_boottime, v->next_elapse);
|
H A D | job.c | 1188 *timeout = MIN(x, y);
|