e 52 daemons/controld/controld_alerts.c crmd_alert_fencing_op(stonith_event_t * e) e 66 daemons/controld/controld_alerts.c desc = stonith__event_description(e); e 68 daemons/controld/controld_alerts.c e->target, e->operation, desc, e->result); e 19 daemons/controld/controld_alerts.h void crmd_alert_fencing_op(stonith_event_t *e); e 411 daemons/controld/controld_fencing.c tengine_stonith_connection_destroy(stonith_t *st, stonith_event_t *e) e 43 daemons/execd/pacemaker-execd.c stonith_connection_destroy_cb(stonith_t * st, stonith_event_t * e) e 131 daemons/fenced/cts-fence-helper.c st_callback(stonith_t * st, stonith_event_t * e) e 139 daemons/fenced/cts-fence-helper.c desc = stonith__event_description(e); e 67 include/crm/cluster/election_internal.h void election_fini(election_t *e); e 68 include/crm/cluster/election_internal.h void election_reset(election_t *e); e 71 include/crm/cluster/election_internal.h void election_timeout_set_period(election_t *e, guint period_ms); e 72 include/crm/cluster/election_internal.h void election_timeout_stop(election_t *e); e 74 include/crm/cluster/election_internal.h void election_vote(election_t *e); e 75 include/crm/cluster/election_internal.h bool election_check(election_t *e); e 76 include/crm/cluster/election_internal.h void election_remove(election_t *e, const char *uname); e 77 include/crm/cluster/election_internal.h enum election_result election_state(election_t *e); e 78 include/crm/cluster/election_internal.h enum election_result election_count_vote(election_t *e, xmlNode *vote, bool can_win); e 79 include/crm/cluster/election_internal.h void election_clear_dampening(election_t *e); e 53 include/crm/common/logging.h # define crm_extended_logging(t, e) qb_log_ctl((t), QB_LOG_CONF_EXTENDED, (e)) e 62 include/crm/common/logging.h crm_extended_logging(int t, int e) e 399 include/crm/stonith-ng.h stonith_event_t *e)); e 40 lib/cluster/election.c election_complete(election_t *e) e 42 lib/cluster/election.c e->state = election_won; e 43 lib/cluster/election.c if (e->cb != NULL) { e 44 lib/cluster/election.c e->cb(e); e 46 lib/cluster/election.c election_reset(e); e 52 lib/cluster/election.c election_t *e = user_data; e 54 lib/cluster/election.c crm_info("%s timed out, declaring local node as winner", e->name); e 55 lib/cluster/election.c election_complete(e); e 67 lib/cluster/election.c election_state(election_t *e) e 69 lib/cluster/election.c return (e == NULL)? election_error : e->state; e 91 lib/cluster/election.c election_t *e = NULL; e 97 lib/cluster/election.c e = calloc(1, sizeof(election_t)); e 98 lib/cluster/election.c if (e == NULL) { e 103 lib/cluster/election.c e->uname = strdup(uname); e 104 lib/cluster/election.c if (e->uname == NULL) { e 106 lib/cluster/election.c free(e); e 110 lib/cluster/election.c e->name = name? crm_strdup_printf("election-%s", name) e 112 lib/cluster/election.c e->cb = cb; e 113 lib/cluster/election.c e->timeout = mainloop_timer_add(e->name, period_ms, FALSE, e 114 lib/cluster/election.c election_timer_cb, e); e 115 lib/cluster/election.c crm_trace("Created %s", e->name); e 116 lib/cluster/election.c return e; e 129 lib/cluster/election.c election_remove(election_t *e, const char *uname) e 131 lib/cluster/election.c if ((e != NULL) && (uname != NULL) && (e->voted != NULL)) { e 132 lib/cluster/election.c crm_trace("Discarding %s (no-)vote from lost peer %s", e->name, uname); e 133 lib/cluster/election.c g_hash_table_remove(e->voted, uname); e 143 lib/cluster/election.c election_reset(election_t *e) e 145 lib/cluster/election.c if (e != NULL) { e 146 lib/cluster/election.c crm_trace("Resetting election %s", e->name); e 147 lib/cluster/election.c mainloop_timer_stop(e->timeout); e 148 lib/cluster/election.c if (e->voted) { e 149 lib/cluster/election.c crm_trace("Destroying voted cache with %d members", g_hash_table_size(e->voted)); e 150 lib/cluster/election.c g_hash_table_destroy(e->voted); e 151 lib/cluster/election.c e->voted = NULL; e 165 lib/cluster/election.c election_fini(election_t *e) e 167 lib/cluster/election.c if (e != NULL) { e 168 lib/cluster/election.c election_reset(e); e 169 lib/cluster/election.c crm_trace("Destroying %s", e->name); e 170 lib/cluster/election.c mainloop_timer_del(e->timeout); e 171 lib/cluster/election.c free(e->uname); e 172 lib/cluster/election.c free(e->name); e 173 lib/cluster/election.c free(e); e 178 lib/cluster/election.c election_timeout_start(election_t *e) e 180 lib/cluster/election.c if (e != NULL) { e 181 lib/cluster/election.c mainloop_timer_start(e->timeout); e 191 lib/cluster/election.c election_timeout_stop(election_t *e) e 193 lib/cluster/election.c if (e != NULL) { e 194 lib/cluster/election.c mainloop_timer_stop(e->timeout); e 205 lib/cluster/election.c election_timeout_set_period(election_t *e, guint period) e 207 lib/cluster/election.c if (e != NULL) { e 208 lib/cluster/election.c mainloop_timer_set_period(e->timeout, period); e 289 lib/cluster/election.c election_vote(election_t *e) e 295 lib/cluster/election.c if (e == NULL) { e 300 lib/cluster/election.c our_node = crm_get_peer(0, e->uname); e 303 lib/cluster/election.c e->name); e 307 lib/cluster/election.c election_reset(e); e 308 lib/cluster/election.c e->state = election_in_progress; e 311 lib/cluster/election.c e->count++; e 313 lib/cluster/election.c crm_xml_add_int(vote, F_CRM_ELECTION_ID, e->count); e 321 lib/cluster/election.c crm_debug("Started %s round %d", e->name, e->count); e 322 lib/cluster/election.c election_timeout_start(e); e 342 lib/cluster/election.c election_check(election_t *e) e 347 lib/cluster/election.c if (e == NULL) { e 351 lib/cluster/election.c if (e->voted == NULL) { e 352 lib/cluster/election.c crm_trace("%s check requested, but no votes received yet", e->name); e 356 lib/cluster/election.c voted_size = g_hash_table_size(e->voted); e 365 lib/cluster/election.c election_timeout_stop(e); e 371 lib/cluster/election.c crm_warn("Received too many votes in %s", e->name); e 379 lib/cluster/election.c g_hash_table_iter_init(&gIter, e->voted); e 386 lib/cluster/election.c crm_info("%s won by local node", e->name); e 387 lib/cluster/election.c election_complete(e); e 392 lib/cluster/election.c e->name, num_members - voted_size, num_members); e 421 lib/cluster/election.c parse_election_message(election_t *e, xmlNode *message, struct vote *vote) e 442 lib/cluster/election.c (e? e->name : "election")); e 454 lib/cluster/election.c (e? e->name : "election"), vote->op, vote->from); e 460 lib/cluster/election.c (e? e->name : "election"), vote->from, vote->op); e 466 lib/cluster/election.c if (e == NULL) { e 477 lib/cluster/election.c e->name, vote->op, vote->from); e 484 lib/cluster/election.c record_vote(election_t *e, struct vote *vote) e 489 lib/cluster/election.c CRM_ASSERT(e && vote && vote->from && vote->op); e 490 lib/cluster/election.c if (e->voted == NULL) { e 491 lib/cluster/election.c e->voted = pcmk__strkey_table(free, free); e 498 lib/cluster/election.c g_hash_table_replace(e->voted, voter_copy, vote_copy); e 532 lib/cluster/election.c election_count_vote(election_t *e, xmlNode *message, bool can_win) e 544 lib/cluster/election.c if (parse_election_message(e, message, &vote) == FALSE) { e 549 lib/cluster/election.c our_node = crm_get_peer(0, e->uname); e 563 lib/cluster/election.c } else if (we_are_owner && (vote.election_id != e->count)) { e 575 lib/cluster/election.c || pcmk__str_eq(vote.from, e->uname, pcmk__str_none)) { e 581 lib/cluster/election.c e->name, vote.election_id, vote.op, vote.from, e 585 lib/cluster/election.c if (e->state != election_in_progress) { e 588 lib/cluster/election.c e->name, vote.election_id, vote.op, vote.from); e 589 lib/cluster/election.c return e->state; e 591 lib/cluster/election.c record_vote(e, &vote); e 614 lib/cluster/election.c } else if (strcasecmp(e->uname, vote.from) > 0) { e 623 lib/cluster/election.c if (e->expires < tm_now) { e 624 lib/cluster/election.c e->election_wins = 0; e 625 lib/cluster/election.c e->expires = tm_now + STORM_INTERVAL; e 633 lib/cluster/election.c e->election_wins++; e 634 lib/cluster/election.c if (e->election_wins > (peers * peers)) { e 636 lib/cluster/election.c e->name, e->election_wins, STORM_INTERVAL); e 637 lib/cluster/election.c e->election_wins = 0; e 638 lib/cluster/election.c e->expires = tm_now + STORM_INTERVAL; e 639 lib/cluster/election.c if (e->wrote_blackbox == FALSE) { e 651 lib/cluster/election.c e->wrote_blackbox = TRUE; e 659 lib/cluster/election.c e->name, vote.election_id, vote.op, e->count, vote.from, e 661 lib/cluster/election.c return e->state; e 677 lib/cluster/election.c if ((e->last_election_loss == 0) e 678 lib/cluster/election.c || ((tm_now - e->last_election_loss) > (time_t) LOSS_DAMPEN)) { e 681 lib/cluster/election.c e->name, vote.election_id, vote.election_owner, vote.op, e 684 lib/cluster/election.c e->last_election_loss = 0; e 685 lib/cluster/election.c election_timeout_stop(e); e 688 lib/cluster/election.c e->state = election_start; e 689 lib/cluster/election.c return e->state; e 691 lib/cluster/election.c char *loss_time = ctime(&e->last_election_loss); e 699 lib/cluster/election.c e->name, vote.election_id, vote.election_owner, vote.from, e 704 lib/cluster/election.c e->last_election_loss = tm_now; e 707 lib/cluster/election.c e->name, vote.election_id, vote.election_owner, vote.op, e 710 lib/cluster/election.c election_reset(e); e 712 lib/cluster/election.c e->state = election_lost; e 713 lib/cluster/election.c return e->state; e 722 lib/cluster/election.c election_clear_dampening(election_t *e) e 724 lib/cluster/election.c e->last_election_loss = 0; e 55 lib/fencing/st_client.c void (*notify) (stonith_t * st, stonith_event_t * e); e 1209 lib/fencing/st_client.c void (*callback) (stonith_t * stonith, stonith_event_t * e)) e 120 lib/pacemaker/pcmk_fence.c notify_callback(stonith_t * st, stonith_event_t * e) e 122 lib/pacemaker/pcmk_fence.c if (pcmk__str_eq(async_fence_data.target, e->target, pcmk__str_casei) e 123 lib/pacemaker/pcmk_fence.c && pcmk__str_eq(async_fence_data.action, e->action, pcmk__str_none)) { e 126 lib/pacemaker/pcmk_fence.c stonith__event_exit_status(e), e 127 lib/pacemaker/pcmk_fence.c stonith__event_execution_status(e), e 128 lib/pacemaker/pcmk_fence.c stonith__event_exit_reason(e)); e 921 maint/gnulib/lib/argp-help.c struct hol_entry *e; e 922 maint/gnulib/lib/argp-help.c for (i = 0, e = hol->entries; i < hol->num_entries; i++, e++) e 923 maint/gnulib/lib/argp-help.c e->ord = i; e 962 maint/gnulib/lib/argp-help.c struct hol_entry *e; e 982 maint/gnulib/lib/argp-help.c for (e = entries, left = hol->num_entries; left > 0; e++, left--) e 983 maint/gnulib/lib/argp-help.c e->short_options e 984 maint/gnulib/lib/argp-help.c = short_options + (e->short_options - hol->short_options); e 990 maint/gnulib/lib/argp-help.c for (left = more->num_entries; left > 0; e++, left--) e 995 maint/gnulib/lib/argp-help.c e->short_options = so; e 997 maint/gnulib/lib/argp-help.c for (opts_left = e->num, opt = e->opt; opts_left; opt++, opts_left--) e 154 maint/gnulib/lib/argp-namefrob.h #define __set_errno(e) (errno = (e)) e 102 maint/gnulib/lib/backupfile.c check_extension (char *file, idx_t filelen, char e, e 164 maint/gnulib/lib/backupfile.c base[baselen] = e; e 382 maint/gnulib/lib/backupfile.c int e = errno; e 383 maint/gnulib/lib/backupfile.c if (! (e == EEXIST && extended)) e 388 maint/gnulib/lib/backupfile.c errno = e; e 65 maint/gnulib/lib/bitset.h } e; e 92 maint/gnulib/lib/bitset/table.c #define TBITSET_ELTS(BSET) ((BSET)->e.elts) e 94 maint/gnulib/lib/bitset/table.c #define TBITSET_ASIZE(BSET) ((BSET)->e.size) e 83 maint/gnulib/lib/cbrtl.c int e, rem, sign; e 96 maint/gnulib/lib/cbrtl.c x = frexpl (x, &e); e 107 maint/gnulib/lib/cbrtl.c if (e >= 0) e 109 maint/gnulib/lib/cbrtl.c rem = e; e 110 maint/gnulib/lib/cbrtl.c e /= 3; e 111 maint/gnulib/lib/cbrtl.c rem -= 3 * e; e 119 maint/gnulib/lib/cbrtl.c e = -e; e 120 maint/gnulib/lib/cbrtl.c rem = e; e 121 maint/gnulib/lib/cbrtl.c e /= 3; e 122 maint/gnulib/lib/cbrtl.c rem -= 3 * e; e 127 maint/gnulib/lib/cbrtl.c e = -e; e 131 maint/gnulib/lib/cbrtl.c x = ldexpl (x, e); e 112 maint/gnulib/lib/chdir-long.c int e = chdir (dir); e 113 maint/gnulib/lib/chdir-long.c if (e == 0 || errno != ENAMETOOLONG) e 114 maint/gnulib/lib/chdir-long.c return e; e 123 maint/gnulib/lib/dfa.c #define CHARCLASS_INIT(a, b, c, d, e, f, g, h) \ e 126 maint/gnulib/lib/dfa.c CHARCLASS_PAIR (e, f), CHARCLASS_PAIR (g, h) \ e 134 maint/gnulib/lib/dirchownmod.c int e = errno; e 136 maint/gnulib/lib/dirchownmod.c errno = e; e 620 maint/gnulib/lib/exclude.c int e = 0; e 630 maint/gnulib/lib/exclude.c e = errno; e 661 maint/gnulib/lib/exclude.c errno = e; e 662 maint/gnulib/lib/exclude.c return e ? -1 : 0; e 684 maint/gnulib/lib/exclude.c int e = errno; e 687 maint/gnulib/lib/exclude.c errno = e; e 45 maint/gnulib/lib/fd-safer-flag.c int e = errno; e 47 maint/gnulib/lib/fd-safer-flag.c errno = e; e 42 maint/gnulib/lib/fd-safer.c int e = errno; e 44 maint/gnulib/lib/fd-safer.c errno = e; e 377 maint/gnulib/lib/fma.c int e; /* exponent of x * y + z */ e 473 maint/gnulib/lib/fma.c e = MIN (xye - 2 * MANT_BIT, ze - MANT_BIT); e 474 maint/gnulib/lib/fma.c if (e == xye - 2 * MANT_BIT) e 484 maint/gnulib/lib/fma.c size_t ediff = xye - 2 * MANT_BIT - e; e 519 maint/gnulib/lib/fma.c if (e == ze - MANT_BIT) e 529 maint/gnulib/lib/fma.c size_t ediff = ze - MANT_BIT - e; e 700 maint/gnulib/lib/fma.c if (e + (int) sum_bits >= MIN_EXP) e 704 maint/gnulib/lib/fma.c else if (e + (int) sum_bits >= MIN_EXP - MANT_BIT) e 707 maint/gnulib/lib/fma.c keep_bits = e + (int) sum_bits - (MIN_EXP + MANT_BIT); e 818 maint/gnulib/lib/fma.c e += 1; e 900 maint/gnulib/lib/fma.c fsum = LDEXP (fsum, e + (int) sum_bits - GMP_LIMB_BITS); e 45 maint/gnulib/lib/fopen-safer.c int e = errno; e 47 maint/gnulib/lib/fopen-safer.c errno = e; e 54 maint/gnulib/lib/fopen-safer.c int e = errno; e 56 maint/gnulib/lib/fopen-safer.c errno = e; e 713 maint/gnulib/lib/git-merge-changelog.c struct edit *e; e 715 maint/gnulib/lib/git-merge-changelog.c e = XMALLOC (struct edit); e 716 maint/gnulib/lib/git-merge-changelog.c e->type = ADDITION; e 717 maint/gnulib/lib/git-merge-changelog.c e->j1 = j; e 718 maint/gnulib/lib/git-merge-changelog.c e->j2 = n2 - 1; e 719 maint/gnulib/lib/git-merge-changelog.c gl_list_add_last (edits, e); e 724 maint/gnulib/lib/git-merge-changelog.c struct edit *e; e 726 maint/gnulib/lib/git-merge-changelog.c e = XMALLOC (struct edit); e 727 maint/gnulib/lib/git-merge-changelog.c e->type = REMOVAL; e 728 maint/gnulib/lib/git-merge-changelog.c e->i1 = i; e 729 maint/gnulib/lib/git-merge-changelog.c e->i2 = n1 - 1; e 730 maint/gnulib/lib/git-merge-changelog.c gl_list_add_last (edits, e); e 744 maint/gnulib/lib/git-merge-changelog.c struct edit *e; e 746 maint/gnulib/lib/git-merge-changelog.c e = XMALLOC (struct edit); e 747 maint/gnulib/lib/git-merge-changelog.c e->type = ADDITION; e 748 maint/gnulib/lib/git-merge-changelog.c e->j1 = j; e 752 maint/gnulib/lib/git-merge-changelog.c e->j2 = j - 1; e 753 maint/gnulib/lib/git-merge-changelog.c gl_list_add_last (edits, e); e 760 maint/gnulib/lib/git-merge-changelog.c struct edit *e; e 762 maint/gnulib/lib/git-merge-changelog.c e = XMALLOC (struct edit); e 763 maint/gnulib/lib/git-merge-changelog.c e->type = REMOVAL; e 764 maint/gnulib/lib/git-merge-changelog.c e->i1 = i; e 768 maint/gnulib/lib/git-merge-changelog.c e->i2 = i - 1; e 769 maint/gnulib/lib/git-merge-changelog.c gl_list_add_last (edits, e); e 773 maint/gnulib/lib/git-merge-changelog.c struct edit *e; e 776 maint/gnulib/lib/git-merge-changelog.c e = XMALLOC (struct edit); e 777 maint/gnulib/lib/git-merge-changelog.c e->type = CHANGE; e 778 maint/gnulib/lib/git-merge-changelog.c e->i1 = i; e 782 maint/gnulib/lib/git-merge-changelog.c e->i2 = i - 1; e 783 maint/gnulib/lib/git-merge-changelog.c e->j1 = j; e 787 maint/gnulib/lib/git-merge-changelog.c e->j2 = j - 1; e 788 maint/gnulib/lib/git-merge-changelog.c gl_list_add_last (edits, e); e 1215 maint/gnulib/lib/git-merge-changelog.c size_t e; e 1216 maint/gnulib/lib/git-merge-changelog.c for (e = 0; e < diffs.num_edits; e++) e 1218 maint/gnulib/lib/git-merge-changelog.c struct edit *edit = diffs.edits[e]; e 38 maint/gnulib/lib/grantpt.c # define __set_errno(e) errno = (e) e 238 maint/gnulib/lib/human.c long double e = 1; e 243 maint/gnulib/lib/human.c e *= base; e 246 maint/gnulib/lib/human.c while (e * base <= damt && exponent < exponent_max); e 248 maint/gnulib/lib/human.c damt /= e; e 437 maint/gnulib/lib/human.c strtol_error e = xstrtoumax (spec, &ptr, 0, block_size, e 439 maint/gnulib/lib/human.c if (e != LONGINT_OK) e 442 maint/gnulib/lib/human.c return e; e 464 maint/gnulib/lib/human.c strtol_error e = humblock (spec, block_size, opts); e 468 maint/gnulib/lib/human.c e = LONGINT_INVALID; e 470 maint/gnulib/lib/human.c return e; e 51 maint/gnulib/lib/hypot.c int e; e 56 maint/gnulib/lib/hypot.c an = frexp (a, &e); e 57 maint/gnulib/lib/hypot.c bn = ldexp (b, - e); e 65 maint/gnulib/lib/hypot.c return ldexp (cn, e); e 61 maint/gnulib/lib/hypotl.c int e; e 66 maint/gnulib/lib/hypotl.c an = frexpl (a, &e); e 67 maint/gnulib/lib/hypotl.c bn = ldexpl (b, - e); e 75 maint/gnulib/lib/hypotl.c return ldexpl (cn, e); e 55 maint/gnulib/lib/ilogb.c int e; e 57 maint/gnulib/lib/ilogb.c (void) FREXP (x, &e); e 58 maint/gnulib/lib/ilogb.c return e - 1; e 26 maint/gnulib/lib/intprops.h #define _GL_INT_CONVERT(e, v) ((1 ? 0 : (e)) + (v)) e 30 maint/gnulib/lib/intprops.h #define _GL_INT_NEGATE_CONVERT(e, v) ((1 ? 0 : (e)) - (v)) e 44 maint/gnulib/lib/intprops.h #define EXPR_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0) e 63 maint/gnulib/lib/intprops.h #define _GL_INT_MINIMUM(e) \ e 64 maint/gnulib/lib/intprops.h (EXPR_SIGNED (e) \ e 65 maint/gnulib/lib/intprops.h ? ~ _GL_SIGNED_INT_MAXIMUM (e) \ e 66 maint/gnulib/lib/intprops.h : _GL_INT_CONVERT (e, 0)) e 67 maint/gnulib/lib/intprops.h #define _GL_INT_MAXIMUM(e) \ e 68 maint/gnulib/lib/intprops.h (EXPR_SIGNED (e) \ e 69 maint/gnulib/lib/intprops.h ? _GL_SIGNED_INT_MAXIMUM (e) \ e 70 maint/gnulib/lib/intprops.h : _GL_INT_NEGATE_CONVERT (e, 1)) e 71 maint/gnulib/lib/intprops.h #define _GL_SIGNED_INT_MAXIMUM(e) \ e 72 maint/gnulib/lib/intprops.h (((_GL_INT_CONVERT (e, 1) << (TYPE_WIDTH (+ (e)) - 2)) - 1) * 2 + 1) e 61 maint/gnulib/lib/log2.c int e; e 64 maint/gnulib/lib/log2.c y = frexp (x, &e); e 68 maint/gnulib/lib/log2.c e = e - 1; e 71 maint/gnulib/lib/log2.c return (double) e + log (y) * LOG2_INVERSE; e 71 maint/gnulib/lib/log2f.c int e; e 74 maint/gnulib/lib/log2f.c y = frexpf (x, &e); e 78 maint/gnulib/lib/log2f.c e = e - 1; e 81 maint/gnulib/lib/log2f.c return (float) e + logf (y) * LOG2_INVERSE; e 71 maint/gnulib/lib/log2l.c int e; e 74 maint/gnulib/lib/log2l.c y = frexpl (x, &e); e 78 maint/gnulib/lib/log2l.c e = e - 1; e 81 maint/gnulib/lib/log2l.c return (long double) e + logl (y) * LOG2_INVERSE; e 57 maint/gnulib/lib/logb.c int e; e 59 maint/gnulib/lib/logb.c (void) FREXP (x, &e); e 60 maint/gnulib/lib/logb.c return (DOUBLE) (e - 1); e 217 maint/gnulib/lib/logl.c int k, e; e 243 maint/gnulib/lib/logl.c x = frexpl (x, &e); e 247 maint/gnulib/lib/logl.c e--; e 280 maint/gnulib/lib/logl.c y += e * ln2b; /* Base 2 exponent offset times ln(2). */ e 284 maint/gnulib/lib/logl.c y += e * ln2a; e 3053 maint/gnulib/lib/mini-gmp.c mpz_pow_ui (mpz_t r, const mpz_t b, unsigned long e) e 3063 maint/gnulib/lib/mini-gmp.c if (e & bit) e 3074 maint/gnulib/lib/mini-gmp.c mpz_ui_pow_ui (mpz_t r, unsigned long blimb, unsigned long e) e 3079 maint/gnulib/lib/mini-gmp.c mpz_pow_ui (r, b, e); e 3084 maint/gnulib/lib/mini-gmp.c mpz_powm (mpz_t r, const mpz_t b, const mpz_t e, const mpz_t m) e 3094 maint/gnulib/lib/mini-gmp.c en = GMP_ABS (e->_mp_size); e 3122 maint/gnulib/lib/mini-gmp.c if (e->_mp_size < 0) e 3154 maint/gnulib/lib/mini-gmp.c mp_limb_t w = e->_mp_d[en]; e 3191 maint/gnulib/lib/mini-gmp.c mpz_t e; e 3193 maint/gnulib/lib/mini-gmp.c mpz_init_set_ui (e, elimb); e 3194 maint/gnulib/lib/mini-gmp.c mpz_powm (r, b, e, m); e 3195 maint/gnulib/lib/mini-gmp.c mpz_clear (e); e 363 maint/gnulib/lib/mountlist.c struct vfs_ent *e; e 365 maint/gnulib/lib/mountlist.c e = getvfsbytype (t); e 366 maint/gnulib/lib/mountlist.c if (!e || !e->vfsent_name) e 369 maint/gnulib/lib/mountlist.c return e->vfsent_name; e 50 maint/gnulib/lib/opendir-safer.c int e; e 55 maint/gnulib/lib/opendir-safer.c e = errno; e 61 maint/gnulib/lib/opendir-safer.c e = errno; e 67 maint/gnulib/lib/opendir-safer.c e = errno; e 70 maint/gnulib/lib/opendir-safer.c errno = e; e 99 maint/gnulib/lib/pipe-filter-ii.c # define TerminateThread(h, e) DosKillThread (h->tid) e 42 maint/gnulib/lib/pipe2-safer.c int e = errno; e 44 maint/gnulib/lib/pipe2-safer.c errno = e; e 47 maint/gnulib/lib/posixver.c char *e; e 48 maint/gnulib/lib/posixver.c long int i = strtol (s, &e, 10); e 49 maint/gnulib/lib/posixver.c if (! *e) e 117 maint/gnulib/lib/quotearg.c int e = errno; e 120 maint/gnulib/lib/quotearg.c errno = e; e 782 maint/gnulib/lib/quotearg.c int e = errno; e 786 maint/gnulib/lib/quotearg.c errno = e; e 808 maint/gnulib/lib/quotearg.c int e = errno; e 819 maint/gnulib/lib/quotearg.c errno = e; e 873 maint/gnulib/lib/quotearg.c int e = errno; e 917 maint/gnulib/lib/quotearg.c errno = e; e 33 maint/gnulib/lib/renameatu.c errno_fail (int e) e 35 maint/gnulib/lib/renameatu.c errno = e; e 159 maint/gnulib/lib/savewd.c int e = errno; e 161 maint/gnulib/lib/savewd.c errno = e; e 233 maint/gnulib/lib/sha1.c uint32_t e = ctx->E; e 265 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 0] ); e 266 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 1] ); e 267 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 2] ); e 268 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 3] ); e 269 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 4] ); e 270 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 5] ); e 271 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 6] ); e 272 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 7] ); e 273 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 8] ); e 274 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 9] ); e 275 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[10] ); e 276 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, x[11] ); e 277 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, x[12] ); e 278 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, x[13] ); e 279 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, x[14] ); e 280 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[15] ); e 281 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, M(16) ); e 282 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, M(17) ); e 283 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, M(18) ); e 284 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, M(19) ); e 285 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(20) ); e 286 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(21) ); e 287 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(22) ); e 288 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(23) ); e 289 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(24) ); e 290 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(25) ); e 291 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(26) ); e 292 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(27) ); e 293 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(28) ); e 294 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(29) ); e 295 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(30) ); e 296 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(31) ); e 297 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(32) ); e 298 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(33) ); e 299 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(34) ); e 300 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(35) ); e 301 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(36) ); e 302 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(37) ); e 303 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(38) ); e 304 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(39) ); e 305 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(40) ); e 306 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(41) ); e 307 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(42) ); e 308 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(43) ); e 309 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(44) ); e 310 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(45) ); e 311 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(46) ); e 312 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(47) ); e 313 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(48) ); e 314 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(49) ); e 315 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(50) ); e 316 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(51) ); e 317 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(52) ); e 318 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(53) ); e 319 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(54) ); e 320 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(55) ); e 321 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(56) ); e 322 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(57) ); e 323 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(58) ); e 324 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(59) ); e 325 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(60) ); e 326 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(61) ); e 327 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(62) ); e 328 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(63) ); e 329 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(64) ); e 330 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(65) ); e 331 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(66) ); e 332 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(67) ); e 333 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(68) ); e 334 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(69) ); e 335 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(70) ); e 336 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(71) ); e 337 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(72) ); e 338 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(73) ); e 339 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(74) ); e 340 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(75) ); e 341 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(76) ); e 342 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(77) ); e 343 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(78) ); e 344 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(79) ); e 350 maint/gnulib/lib/sha1.c e = ctx->E += e; e 308 maint/gnulib/lib/sha256.c uint32_t e = ctx->state[4]; e 350 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); e 351 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); e 352 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); e 353 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); e 354 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); e 355 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); e 356 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); e 357 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); e 358 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); e 359 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); e 360 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); e 361 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); e 362 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); e 363 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); e 364 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); e 365 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); e 366 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(16), M(16) ); e 367 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(17), M(17) ); e 368 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(18), M(18) ); e 369 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(19), M(19) ); e 370 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(20), M(20) ); e 371 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(21), M(21) ); e 372 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(22), M(22) ); e 373 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(23), M(23) ); e 374 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(24), M(24) ); e 375 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(25), M(25) ); e 376 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(26), M(26) ); e 377 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(27), M(27) ); e 378 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(28), M(28) ); e 379 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(29), M(29) ); e 380 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(30), M(30) ); e 381 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(31), M(31) ); e 382 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(32), M(32) ); e 383 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(33), M(33) ); e 384 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(34), M(34) ); e 385 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(35), M(35) ); e 386 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(36), M(36) ); e 387 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(37), M(37) ); e 388 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(38), M(38) ); e 389 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(39), M(39) ); e 390 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(40), M(40) ); e 391 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(41), M(41) ); e 392 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(42), M(42) ); e 393 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(43), M(43) ); e 394 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(44), M(44) ); e 395 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(45), M(45) ); e 396 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(46), M(46) ); e 397 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(47), M(47) ); e 398 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(48), M(48) ); e 399 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(49), M(49) ); e 400 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(50), M(50) ); e 401 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(51), M(51) ); e 402 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(52), M(52) ); e 403 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(53), M(53) ); e 404 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(54), M(54) ); e 405 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(55), M(55) ); e 406 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(56), M(56) ); e 407 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(57), M(57) ); e 408 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(58), M(58) ); e 409 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(59), M(59) ); e 410 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(60), M(60) ); e 411 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(61), M(61) ); e 412 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(62), M(62) ); e 413 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(63), M(63) ); e 419 maint/gnulib/lib/sha256.c e = ctx->state[4] += e; e 332 maint/gnulib/lib/sha512.c u64 e = ctx->state[4]; e 379 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); e 380 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); e 381 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); e 382 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); e 383 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); e 384 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); e 385 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); e 386 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); e 387 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); e 388 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); e 389 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); e 390 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); e 391 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); e 392 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); e 393 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); e 394 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); e 395 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(16), M(16) ); e 396 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(17), M(17) ); e 397 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(18), M(18) ); e 398 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(19), M(19) ); e 399 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(20), M(20) ); e 400 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(21), M(21) ); e 401 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(22), M(22) ); e 402 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(23), M(23) ); e 403 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(24), M(24) ); e 404 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(25), M(25) ); e 405 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(26), M(26) ); e 406 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(27), M(27) ); e 407 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(28), M(28) ); e 408 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(29), M(29) ); e 409 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(30), M(30) ); e 410 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(31), M(31) ); e 411 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(32), M(32) ); e 412 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(33), M(33) ); e 413 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(34), M(34) ); e 414 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(35), M(35) ); e 415 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(36), M(36) ); e 416 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(37), M(37) ); e 417 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(38), M(38) ); e 418 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(39), M(39) ); e 419 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(40), M(40) ); e 420 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(41), M(41) ); e 421 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(42), M(42) ); e 422 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(43), M(43) ); e 423 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(44), M(44) ); e 424 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(45), M(45) ); e 425 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(46), M(46) ); e 426 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(47), M(47) ); e 427 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(48), M(48) ); e 428 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(49), M(49) ); e 429 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(50), M(50) ); e 430 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(51), M(51) ); e 431 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(52), M(52) ); e 432 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(53), M(53) ); e 433 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(54), M(54) ); e 434 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(55), M(55) ); e 435 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(56), M(56) ); e 436 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(57), M(57) ); e 437 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(58), M(58) ); e 438 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(59), M(59) ); e 439 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(60), M(60) ); e 440 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(61), M(61) ); e 441 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(62), M(62) ); e 442 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(63), M(63) ); e 443 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(64), M(64) ); e 444 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(65), M(65) ); e 445 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(66), M(66) ); e 446 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(67), M(67) ); e 447 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(68), M(68) ); e 448 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(69), M(69) ); e 449 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(70), M(70) ); e 450 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(71), M(71) ); e 451 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(72), M(72) ); e 452 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(73), M(73) ); e 453 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(74), M(74) ); e 454 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(75), M(75) ); e 455 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(76), M(76) ); e 456 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(77), M(77) ); e 457 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(78), M(78) ); e 458 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(79), M(79) ); e 464 maint/gnulib/lib/sha512.c e = ctx->state[4] = u64plus (ctx->state[4], e); e 273 maint/gnulib/lib/sm3.c uint32_t e = ctx->state[4]; e 328 maint/gnulib/lib/sm3.c a, b, c, d, e, f, g, h); e 330 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T( 0), W1( 0), W1( 4) ); e 331 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T( 1), W1( 1), W1( 5) ); e 332 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T( 2), W1( 2), W1( 6) ); e 333 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T( 3), W1( 3), W1( 7) ); e 334 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T( 4), W1( 4), W1( 8) ); e 335 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T( 5), W1( 5), W1( 9) ); e 336 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T( 6), W1( 6), W1(10) ); e 337 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T( 7), W1( 7), W1(11) ); e 338 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T( 8), W1( 8), W1(12) ); e 339 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T( 9), W1( 9), W1(13) ); e 340 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T(10), W1(10), W1(14) ); e 341 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T(11), W1(11), W1(15) ); e 342 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T(12), W1(12), W2(16) ); e 343 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T(13), W1(13), W2(17) ); e 344 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T(14), W1(14), W2(18) ); e 345 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T(15), W1(15), W2(19) ); e 346 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(16), W1(16), W2(20) ); e 347 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(17), W1(17), W2(21) ); e 348 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(18), W1(18), W2(22) ); e 349 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(19), W1(19), W2(23) ); e 350 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(20), W1(20), W2(24) ); e 351 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(21), W1(21), W2(25) ); e 352 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(22), W1(22), W2(26) ); e 353 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(23), W1(23), W2(27) ); e 354 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(24), W1(24), W2(28) ); e 355 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(25), W1(25), W2(29) ); e 356 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(26), W1(26), W2(30) ); e 357 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(27), W1(27), W2(31) ); e 358 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(28), W1(28), W2(32) ); e 359 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(29), W1(29), W2(33) ); e 360 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(30), W1(30), W2(34) ); e 361 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(31), W1(31), W2(35) ); e 362 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(32), W1(32), W2(36) ); e 363 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(33), W1(33), W2(37) ); e 364 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(34), W1(34), W2(38) ); e 365 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(35), W1(35), W2(39) ); e 366 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(36), W1(36), W2(40) ); e 367 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(37), W1(37), W2(41) ); e 368 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(38), W1(38), W2(42) ); e 369 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(39), W1(39), W2(43) ); e 370 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(40), W1(40), W2(44) ); e 371 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(41), W1(41), W2(45) ); e 372 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(42), W1(42), W2(46) ); e 373 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(43), W1(43), W2(47) ); e 374 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(44), W1(44), W2(48) ); e 375 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(45), W1(45), W2(49) ); e 376 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(46), W1(46), W2(50) ); e 377 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(47), W1(47), W2(51) ); e 378 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(48), W1(48), W2(52) ); e 379 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(49), W1(49), W2(53) ); e 380 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(50), W1(50), W2(54) ); e 381 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(51), W1(51), W2(55) ); e 382 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(52), W1(52), W2(56) ); e 383 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(53), W1(53), W2(57) ); e 384 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(54), W1(54), W2(58) ); e 385 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(55), W1(55), W2(59) ); e 386 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(56), W1(56), W2(60) ); e 387 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(57), W1(57), W2(61) ); e 388 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(58), W1(58), W2(62) ); e 389 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(59), W1(59), W2(63) ); e 390 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(60), W1(60), W2(64) ); e 391 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(61), W1(61), W2(65) ); e 392 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(62), W1(62), W2(66) ); e 393 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(63), W1(63), W2(67) ); e 396 maint/gnulib/lib/sm3.c j, a, b, c, d, e, f, g, h); e 402 maint/gnulib/lib/sm3.c e = ctx->state[4] ^= e; e 126 maint/gnulib/lib/strtod.c long int e = exponent; e 129 maint/gnulib/lib/strtod.c return LDEXP (x, e < INT_MIN ? INT_MIN : INT_MAX < e ? INT_MAX : e); e 136 maint/gnulib/lib/strtod.c if (e < 0) e 138 maint/gnulib/lib/strtod.c while (e++ != 0) e 150 maint/gnulib/lib/strtod.c while (e-- != 0) e 406 maint/gnulib/lib/strtod.c const char *e = s + 1; e 407 maint/gnulib/lib/strtod.c while (e < end && c_tolower (*e) != 'e') e 408 maint/gnulib/lib/strtod.c e++; e 409 maint/gnulib/lib/strtod.c if (e < end && ! c_isdigit (e[1 + (e[1] == '-' || e[1] == '+')])) e 421 maint/gnulib/lib/strtod.c dup[e - s] = '\0'; e 427 maint/gnulib/lib/strtod.c end = e; e 49 maint/gnulib/lib/tmpfile-safer.c int e = errno; e 51 maint/gnulib/lib/tmpfile-safer.c errno = e; e 60 maint/gnulib/lib/tmpfile-safer.c int e = errno; e 62 maint/gnulib/lib/tmpfile-safer.c errno = e; e 294 maint/gnulib/lib/userspec.c const char *e; e 301 maint/gnulib/lib/userspec.c e = parse_user_spec (tmp, &uid, &gid, &username, &groupname); e 309 maint/gnulib/lib/userspec.c NULL_CHECK (e)); e 1160 maint/gnulib/lib/vasnprintf.c scale10_round_decimal_decoded (int e, mpn_t m, void *memory, int n) e 1180 maint/gnulib/lib/vasnprintf.c s = e + n; e 1384 maint/gnulib/lib/vasnprintf.c int e IF_LINT(= 0); e 1386 maint/gnulib/lib/vasnprintf.c void *memory = decode_long_double (x, &e, &m); e 1387 maint/gnulib/lib/vasnprintf.c return scale10_round_decimal_decoded (e, m, memory, n); e 1402 maint/gnulib/lib/vasnprintf.c int e IF_LINT(= 0); e 1404 maint/gnulib/lib/vasnprintf.c void *memory = decode_double (x, &e, &m); e 1405 maint/gnulib/lib/vasnprintf.c return scale10_round_decimal_decoded (e, m, memory, n); e 41 maint/gnulib/tests/test-exp2.h int e; e 44 maint/gnulib/tests/test-exp2.h for (e = 0, x = L_(0.0), y = L_(1.0); e 45 maint/gnulib/tests/test-exp2.h e <= MAX_EXP - 1; e 46 maint/gnulib/tests/test-exp2.h e++, x = x + L_(1.0), y = y * L_(2.0)) e 54 maint/gnulib/tests/test-exp2.h int e; e 57 maint/gnulib/tests/test-exp2.h for (e = 0, x = L_(0.0), y = L_(1.0); e 58 maint/gnulib/tests/test-exp2.h e >= MIN_EXP - 1; e 59 maint/gnulib/tests/test-exp2.h e--, x = x - L_(1.0), y = y * L_(0.5)) e 180 maint/gnulib/tests/test-float.c volatile float e = FLT_EPSILON; e 184 maint/gnulib/tests/test-float.c me = 1.0f + e; e 186 maint/gnulib/tests/test-float.c ASSERT (me - 1.0f == e); e 259 maint/gnulib/tests/test-float.c volatile double e = DBL_EPSILON; e 263 maint/gnulib/tests/test-float.c me = 1.0 + e; e 265 maint/gnulib/tests/test-float.c ASSERT (me - 1.0 == e); e 339 maint/gnulib/tests/test-float.c volatile long double e = LDBL_EPSILON; e 343 maint/gnulib/tests/test-float.c me = 1.0L + e; e 345 maint/gnulib/tests/test-float.c ASSERT (me - 1.0L == e); e 20 maint/gnulib/tests/test-fma2.h #define POW2(e) \ e 21 maint/gnulib/tests/test-fma2.h LDEXP (L_(1.0), e) e 61 maint/gnulib/tests/test-fts.c FTSENT *e; e 65 maint/gnulib/tests/test-fts.c while ((e = fts_read (ftsp))) e 68 maint/gnulib/tests/test-fts.c switch (e->fts_info) e 71 maint/gnulib/tests/test-fts.c status = unlinkat (ftsp->fts_cwd_fd, e->fts_accpath, e 76 maint/gnulib/tests/test-fts.c status = unlinkat (ftsp->fts_cwd_fd, e->fts_accpath, 0); e 80 maint/gnulib/tests/test-fts.c perror_exit (e->fts_path, 1); e 93 maint/gnulib/tests/test-fts.c FTSENT *e; e 141 maint/gnulib/tests/test-fts.c while ((e = fts_read (ftsp))) e 142 maint/gnulib/tests/test-fts.c needles_seen += strcmp (e->fts_name, "needle") == 0; e 51 maint/gnulib/tests/test-hash.c void *e = hash_insert (ht, ent); e 52 maint/gnulib/tests/test-hash.c ASSERT (e == ent); e 24 maint/gnulib/tests/test-iswblank.c wint_t e = WEOF; e 32 maint/gnulib/tests/test-iswblank.c ASSERT (!iswblank (e)); e 43 maint/gnulib/tests/test-log2.h int e; e 46 maint/gnulib/tests/test-log2.h for (e = 0, x = L_(0.0), y = L_(1.0); e 47 maint/gnulib/tests/test-log2.h e <= MAX_EXP - 1; e 48 maint/gnulib/tests/test-log2.h e++, x = x + L_(1.0), y = y * L_(2.0)) e 56 maint/gnulib/tests/test-log2.h int e; e 59 maint/gnulib/tests/test-log2.h for (e = 0, x = L_(0.0), y = L_(1.0); e 60 maint/gnulib/tests/test-log2.h e >= MIN_EXP - 1; e 61 maint/gnulib/tests/test-log2.h e--, x = x - L_(1.0), y = y * L_(0.5)) e 42 maint/gnulib/tests/test-posix_spawn-chdir.c int e = errno; e 44 maint/gnulib/tests/test-posix_spawn-chdir.c errno = e; e 42 maint/gnulib/tests/test-posix_spawn-dup2-stdin.c int e = errno; e 44 maint/gnulib/tests/test-posix_spawn-dup2-stdin.c errno = e; e 64 maint/gnulib/tests/test-posix_spawn-dup2-stdout.c int e = errno; e 66 maint/gnulib/tests/test-posix_spawn-dup2-stdout.c errno = e; e 45 maint/gnulib/tests/test-posix_spawn-fchdir.c int e = errno; e 47 maint/gnulib/tests/test-posix_spawn-fchdir.c errno = e; e 30 maint/gnulib/tests/test-signal-h.c pid_t e; e 128 maint/gnulib/tests/test-signal-h.c return s.a + s.b + s.c + s.e; e 30 maint/gnulib/tests/test-spawn.c sigset_t e; e 73 maint/gnulib/tests/test-stdbool.c bool e = &s; e 39 maint/gnulib/tests/test-stddef.c char e; e 46 maint/gnulib/tests/test-stddef.c verify (sizeof (offsetof (struct d, e)) == sizeof (size_t)); e 51 maint/gnulib/tests/test-stddef.c verify ((offsetof (struct d, e) < -1) == (INT_MAX < (size_t) -1)); e 28 maint/gnulib/tests/test-wctype-h.c wint_t e = WEOF; e 53 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswalnum (e)); e 54 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswalpha (e)); e 55 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswcntrl (e)); e 56 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswdigit (e)); e 57 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswgraph (e)); e 58 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswlower (e)); e 59 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswprint (e)); e 60 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswpunct (e)); e 61 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswspace (e)); e 62 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswupper (e)); e 63 maint/gnulib/tests/test-wctype-h.c ASSERT (!iswxdigit (e)); e 70 maint/gnulib/tests/test-wctype-h.c ASSERT (towlower (e) == e); e 71 maint/gnulib/tests/test-wctype-h.c ASSERT (towupper (e) == e); e 143 tools/crm_mon.c static void mon_st_callback_event(stonith_t * st, stonith_event_t * e); e 144 tools/crm_mon.c static void mon_st_callback_display(stonith_t * st, stonith_event_t * e); e 2027 tools/crm_mon.c mon_st_callback_event(stonith_t * st, stonith_event_t * e) e 2033 tools/crm_mon.c char *desc = stonith__event_description(e); e 2035 tools/crm_mon.c send_custom_trap(e->target, NULL, e->operation, pcmk_ok, e->result, 0, desc); e 2092 tools/crm_mon.c mon_st_callback_display(stonith_t * st, stonith_event_t * e)