d                  85 include/crm/common/iso8601.h int crm_time_get_gregorian(crm_time_t * dt, uint32_t * y, uint32_t * m, uint32_t * d);
d                  86 include/crm/common/iso8601.h int crm_time_get_ordinal(crm_time_t * dt, uint32_t * y, uint32_t * d);
d                  87 include/crm/common/iso8601.h int crm_time_get_isoweek(crm_time_t * dt, uint32_t * y, uint32_t * w, uint32_t * d);
d                 152 lib/common/iso8601.c     int d = 365;
d                 155 lib/common/iso8601.c         d++;
d                 157 lib/common/iso8601.c     return d;
d                 241 lib/common/iso8601.c get_ordinal_days(uint32_t y, uint32_t m, uint32_t d)
d                 246 lib/common/iso8601.c         d += crm_time_days_in_month(lpc, y);
d                 248 lib/common/iso8601.c     return d;
d                 357 lib/common/iso8601.c crm_time_get_gregorian(crm_time_t * dt, uint * y, uint * m, uint * d)
d                 383 lib/common/iso8601.c     *d = days;
d                 389 lib/common/iso8601.c crm_time_get_ordinal(crm_time_t * dt, uint * y, uint * d)
d                 392 lib/common/iso8601.c     *d = dt->days;
d                 397 lib/common/iso8601.c crm_time_get_isoweek(crm_time_t * dt, uint * y, uint * w, uint * d)
d                 411 lib/common/iso8601.c     *d = 1 + ((h - 1) % 7);
d                 426 lib/common/iso8601.c         int correction = 4 - *d;
d                 437 lib/common/iso8601.c         int j = dt->days + (7 - *d) + (jan1 - 1);
d                 446 lib/common/iso8601.c     crm_trace("Converted %.4d-%.3d to %.4d-W%.2d-%d", dt->years, dt->days, *y, *w, *d);
d                 542 lib/common/iso8601.c             uint y, w, d;
d                 544 lib/common/iso8601.c             if (crm_time_get_isoweek(dt, &y, &w, &d)) {
d                 546 lib/common/iso8601.c                                    "%u-W%.2u-%u", y, w, d);
d                 550 lib/common/iso8601.c             uint y, d;
d                 552 lib/common/iso8601.c             if (crm_time_get_ordinal(dt, &y, &d)) {
d                 554 lib/common/iso8601.c                                    "%u-%.3u", y, d);
d                 558 lib/common/iso8601.c             uint y, m, d;
d                 560 lib/common/iso8601.c             if (crm_time_get_gregorian(dt, &y, &m, &d)) {
d                 562 lib/common/iso8601.c                                    "%.4u-%.2u-%.2u", y, m, d);
d                1465 lib/common/iso8601.c     uint32_t y, m, d, dmax;
d                1467 lib/common/iso8601.c     crm_time_get_gregorian(a_time, &y, &m, &d);
d                1468 lib/common/iso8601.c     crm_trace("Adding %d months to %.4d-%.2d-%.2d", extra, y, m, d);
d                1489 lib/common/iso8601.c     if (dmax < d) {
d                1491 lib/common/iso8601.c         d = dmax;
d                1494 lib/common/iso8601.c     crm_trace("Calculated %.4d-%.2d-%.2d", y, m, d);
d                1497 lib/common/iso8601.c     a_time->days = get_ordinal_days(y, m, d);
d                1499 lib/common/iso8601.c     crm_time_get_gregorian(a_time, &y, &m, &d);
d                1500 lib/common/iso8601.c     crm_trace("Got %.4d-%.2d-%.2d", y, m, d);
d                 319 lib/common/md5.c #define FF(b, c, d) (d ^ (b & (c ^ d)))
d                 320 lib/common/md5.c #define FG(b, c, d) FF (d, b, c)
d                 321 lib/common/md5.c #define FH(b, c, d) (b ^ c ^ d)
d                 322 lib/common/md5.c #define FI(b, c, d) (c ^ (b | ~d))
d                 363 lib/common/md5.c #define OP(a, b, c, d, s, T)                                            \
d                 366 lib/common/md5.c           a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T;             \
d                 409 lib/common/md5.c #define OP(f, a, b, c, d, k, s, T)                                      \
d                 412 lib/common/md5.c           a += f (b, c, d) + correct_words[k] + T;                      \
d                 319 lib/gnu/md5.c  #define FF(b, c, d) (d ^ (b & (c ^ d)))
d                 320 lib/gnu/md5.c  #define FG(b, c, d) FF (d, b, c)
d                 321 lib/gnu/md5.c  #define FH(b, c, d) (b ^ c ^ d)
d                 322 lib/gnu/md5.c  #define FI(b, c, d) (c ^ (b | ~d))
d                 363 lib/gnu/md5.c  #define OP(a, b, c, d, s, T)                                            \
d                 366 lib/gnu/md5.c            a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T;             \
d                 409 lib/gnu/md5.c  #define OP(f, a, b, c, d, k, s, T)                                      \
d                 412 lib/gnu/md5.c            a += f (b, c, d) + correct_words[k] + T;                      \
d                 276 lib/pengine/rules.c     uint32_t h, m, s, y, d, w;
d                 280 lib/pengine/rules.c     crm_time_get_gregorian(now, &y, &m, &d);
d                 283 lib/pengine/rules.c     CHECK_ONE(cron_spec, "monthdays", d);
d                 290 lib/pengine/rules.c     crm_time_get_ordinal(now, &y, &d);
d                 291 lib/pengine/rules.c     CHECK_ONE(cron_spec, "yeardays", d);
d                 293 lib/pengine/rules.c     crm_time_get_isoweek(now, &y, &w, &d);
d                 296 lib/pengine/rules.c     CHECK_ONE(cron_spec, "weekdays", d);
d                 467 tools/crm_node.c     int d = 0;
d                 493 tools/crm_node.c     for (d = 0; d < DIMOF(daemons); d++) {
d                 494 tools/crm_node.c         if (tools_remove_node_cache(node_name, nodeid, daemons[d])) {
d                 496 tools/crm_node.c                     daemons[d], target_uname);
d                1245 tools/crm_resource_runtime.c #define waiting_for_starts(d, r, h) ((d != NULL) || \