e                  30 lib/intprops-internal.h #define _GL_INT_CONVERT(e, v) ((1 ? 0 : (e)) + (v))
e                  34 lib/intprops-internal.h #define _GL_INT_NEGATE_CONVERT(e, v) ((1 ? 0 : (e)) - (v))
e                  44 lib/intprops-internal.h #define _GL_EXPR_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0)
e                  55 lib/intprops-internal.h #define _GL_INT_MINIMUM(e)                                                                         \
e                  56 lib/intprops-internal.h     (_GL_EXPR_SIGNED (e) ? ~_GL_SIGNED_INT_MAXIMUM (e) : _GL_INT_CONVERT (e, 0))
e                  57 lib/intprops-internal.h #define _GL_INT_MAXIMUM(e)                                                                         \
e                  58 lib/intprops-internal.h     (_GL_EXPR_SIGNED (e) ? _GL_SIGNED_INT_MAXIMUM (e) : _GL_INT_NEGATE_CONVERT (e, 1))
e                  59 lib/intprops-internal.h #define _GL_SIGNED_INT_MAXIMUM(e)                                                                  \
e                  60 lib/intprops-internal.h     (((_GL_INT_CONVERT (e, 1) << (_GL_TYPE_WIDTH (+(e)) - 2)) - 1) * 2 + 1)
e                  35 lib/intprops.h #define EXPR_SIGNED(e) _GL_EXPR_SIGNED (e)
e                 997 lib/strutil/strutil.c     strtol_error_t e;
e                 999 lib/strutil/strutil.c     e = xstrtoumax (str, &suffix, 10, &n, "bcEGkKMPTwYZ0");
e                1000 lib/strutil/strutil.c     if (e == LONGINT_INVALID_SUFFIX_CHAR && *suffix == 'x')
e                1013 lib/strutil/strutil.c     else if (e != LONGINT_OK)
e                 159 lib/tty/win.c          const char *e = getenv ("RXVT_EXT");
e                 160 lib/tty/win.c          rxvt_extensions = ((e != NULL) && (strcmp (e, "1.0") == 0));
e                 992 lib/vfs/direntry.c     const struct vfs_s_entry *e = (const struct vfs_s_entry *) a;
e                 995 lib/vfs/direntry.c     return strcmp (e->name, name);
e                1026 lib/widget/input_complete.c                 GList *e;
e                1030 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data)); e != NULL;
e                1031 lib/widget/input_complete.c                      i++, e = g_list_next (e))
e                1033 lib/widget/input_complete.c                     WLEntry *le = LENTRY (e->data);
e                1064 lib/widget/input_complete.c                 GList *e;
e                1084 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data)); e != NULL;
e                1085 lib/widget/input_complete.c                      i++, e = g_list_next (e))
e                1087 lib/widget/input_complete.c                     WLEntry *le = LENTRY (e->data);
e                 158 lib/widget/listbox-window.c         WLEntry *e;
e                 160 lib/widget/listbox-window.c         e = listbox_get_nth_entry (l->list, l->list->current);
e                 161 lib/widget/listbox-window.c         if (e != NULL)
e                 165 lib/widget/listbox-window.c             g_assert (!e->free_data);
e                 166 lib/widget/listbox-window.c             val = e->data;
e                  82 lib/widget/listbox.c     WLEntry *e = data;
e                  84 lib/widget/listbox.c     g_free (e->text);
e                  85 lib/widget/listbox.c     if (e->free_data)
e                  86 lib/widget/listbox.c         g_free (e->data);
e                  87 lib/widget/listbox.c     g_free (e);
e                 179 lib/widget/listbox.c             WLEntry *e = LENTRY (le->data);
e                 181 lib/widget/listbox.c             text = e->text;
e                 210 lib/widget/listbox.c             WLEntry *e = LENTRY (le->data);
e                 212 lib/widget/listbox.c             if (e->hotkey == key)
e                 370 lib/widget/listbox.c listbox_add_entry (WListbox *l, WLEntry *e, listbox_append_t pos)
e                 381 lib/widget/listbox.c         g_queue_push_tail (l->list, e);
e                 385 lib/widget/listbox.c         g_queue_insert_before (l->list, g_queue_peek_nth_link (l->list, (guint) l->current), e);
e                 389 lib/widget/listbox.c         g_queue_insert_after (l->list, g_queue_peek_nth_link (l->list, (guint) l->current), e);
e                 393 lib/widget/listbox.c         g_queue_insert_sorted (l->list, e, (GCompareDataFunc) listbox_entry_cmp, NULL);
e                 593 lib/widget/listbox.c             WLEntry *e = LENTRY (le->data);
e                 595 lib/widget/listbox.c             if (strcmp (e->text, text) == 0)
e                 618 lib/widget/listbox.c             WLEntry *e = LENTRY (le->data);
e                 620 lib/widget/listbox.c             if (e->data == data)
e                 704 lib/widget/listbox.c     WLEntry *e = NULL;
e                 708 lib/widget/listbox.c         e = listbox_get_nth_entry (l, l->current);
e                 710 lib/widget/listbox.c     ok = (e != NULL);
e                 713 lib/widget/listbox.c         *string = ok ? e->text : NULL;
e                 716 lib/widget/listbox.c         *extra = ok ? e->data : NULL;
e                 196 src/editor/edit-impl.h void edit_move_to_line (WEdit *e, long line);
e                 197 src/editor/edit-impl.h void edit_move_display (WEdit *e, long line);
e                1686 src/editor/edit.c edit_print_string (WEdit *e, const char *s)
e                1691 src/editor/edit.c         edit_execute_cmd (e, CK_InsertChar, (unsigned char) s[i]);
e                1692 src/editor/edit.c     e->force |= REDRAW_COMPLETELY;
e                1693 src/editor/edit.c     edit_update_screen (e);
e                2249 src/editor/edit.c     WEdit *e;
e                2251 src/editor/edit.c     e = g_malloc0 (sizeof (WEdit));
e                2252 src/editor/edit.c     *WIDGET (e) = *w;
e                2254 src/editor/edit.c     e->fullscreen = edit->fullscreen;
e                2255 src/editor/edit.c     e->loc_prev = edit->loc_prev;
e                2257 src/editor/edit.c     if (edit_init (e, &w->rect, arg) == NULL)
e                2259 src/editor/edit.c         g_free (e);
e                2264 src/editor/edit.c     memcpy (edit, e, sizeof (*edit));
e                2265 src/editor/edit.c     g_free (e);
e                2958 src/editor/edit.c         off_t e;
e                2962 src/editor/edit.c         e = edit_buffer_get_current_eol (&edit->buffer);
e                2963 src/editor/edit.c         line_len = (long) edit_move_forward3 (edit, b, 0, e);
e                3025 src/editor/edit.c edit_move_to_line (WEdit *e, long line)
e                3027 src/editor/edit.c     if (line < e->buffer.curs_line)
e                3028 src/editor/edit.c         edit_move_up (e, e->buffer.curs_line - line, FALSE);
e                3030 src/editor/edit.c         edit_move_down (e, line - e->buffer.curs_line, FALSE);
e                3031 src/editor/edit.c     edit_scroll_screen_over_cursor (e);
e                3038 src/editor/edit.c edit_move_display (WEdit *e, long line)
e                3040 src/editor/edit.c     if (line < e->start_line)
e                3041 src/editor/edit.c         edit_scroll_upward (e, e->start_line - line);
e                3043 src/editor/edit.c         edit_scroll_downward (e, line - e->start_line);
e                 533 src/editor/editcmd.c             off_t b, e;
e                 543 src/editor/editcmd.c             e = edit_buffer_get_current_eol (&edit->buffer);
e                 544 src/editor/editcmd.c             line_width = edit_move_forward3 (edit, b, 0, e);
e                1764 src/editor/editcmd.c     int e;
e                1791 src/editor/editcmd.c     e = system (tmp);
e                1793 src/editor/editcmd.c     if (e != 0)
e                1795 src/editor/editcmd.c         if (e == -1 || e == 127)
e                1801 src/editor/editcmd.c             sprintf (q, "%d ", e);
e                1834 src/editor/editcmd.c     int e;
e                1849 src/editor/editcmd.c     e = system (tmp);
e                1853 src/editor/editcmd.c     if (e != 0)
e                 272 src/editor/editcomplete.c             WEdit *e;
e                 277 src/editor/editcomplete.c             e = EDIT (ww);
e                 279 src/editor/editcomplete.c             if (e == edit)
e                 284 src/editor/editcomplete.c             last_byte = e->buffer.size;
e                 285 src/editor/editcomplete.c             esm.edit = e;
e                 330 src/editor/editwidget.c             WEdit *e = EDIT (w->data);
e                 333 src/editor/editwidget.c             if (e->filename_vpath == NULL)
e                 334 src/editor/editwidget.c                 fname = g_strdup_printf ("%c [%s]", e->modified != 0 ? '*' : ' ', _ ("NoName"));
e                 336 src/editor/editwidget.c                 fname = g_strdup_printf ("%c%s", e->modified != 0 ? '*' : ' ',
e                 337 src/editor/editwidget.c                                          vfs_path_as_str (e->filename_vpath));
e                 340 src/editor/editwidget.c                               str_term_trim (fname, WIDGET (listbox->list)->rect.cols - 2), e,
e                 617 src/editor/editwidget.c     WEdit *e = NULL;
e                 628 src/editor/editwidget.c             e = EDIT (l->data);
e                 630 src/editor/editwidget.c             if (e->drag_state != MCEDIT_DRAG_NONE)
e                 632 src/editor/editwidget.c                 edit_restore_size (e);
e                 639 src/editor/editwidget.c             if (e->modified != 0)
e                 645 src/editor/editwidget.c         e = EDIT (me->data);
e                 647 src/editor/editwidget.c         widget_select (WIDGET (e));
e                 649 src/editor/editwidget.c         if (!edit_ok_to_exit (e))
e                 885 src/editor/editwidget.c                 WEdit *e = EDIT (top->data);
e                 890 src/editor/editwidget.c                     widget_select (WIDGET (e));
e                 895 src/editor/editwidget.c                     edit_toggle_fullscreen (e);
e                 934 src/editor/editwidget.c     WEdit *e = EDIT (w);
e                 939 src/editor/editwidget.c         edit_set_buttonbar (e, buttonbar_find (DIALOG (w->owner)));
e                 943 src/editor/editwidget.c         e->force |= REDRAW_COMPLETELY;
e                 944 src/editor/editwidget.c         edit_update_screen (e);
e                 953 src/editor/editwidget.c         if (macro_index == -1 && !bracketed_pasting_in_progress && edit_execute_macro (e, parm))
e                 955 src/editor/editwidget.c             edit_update_screen (e);
e                 958 src/editor/editwidget.c         else if (edit_translate_key (e, parm, &cmd, &ch))
e                 960 src/editor/editwidget.c             edit_execute_key_command (e, cmd, ch);
e                 961 src/editor/editwidget.c             edit_update_screen (e);
e                 970 src/editor/editwidget.c         edit_execute_key_command (e, parm, -1);
e                 971 src/editor/editwidget.c         edit_update_screen (e);
e                 978 src/editor/editwidget.c         y = (e->fullscreen != 0 ? 0 : 1) + EDIT_TEXT_VERTICAL_OFFSET + e->curs_row;
e                 979 src/editor/editwidget.c         x = (e->fullscreen != 0 ? 0 : 1) + EDIT_TEXT_HORIZONTAL_OFFSET
e                 980 src/editor/editwidget.c             + edit_options.line_state_width + e->curs_col + e->start_col + e->over_col;
e                 987 src/editor/editwidget.c         edit_update_screen (e);
e                 991 src/editor/editwidget.c         edit_clean (e);
e                1307 src/editor/editwidget.c edit_update_screen (WEdit *e)
e                1309 src/editor/editwidget.c     edit_scroll_screen_over_cursor (e);
e                1310 src/editor/editwidget.c     edit_update_curs_col (e);
e                1311 src/editor/editwidget.c     edit_status (e, widget_get_state (WIDGET (e), WST_FOCUSED));
e                1315 src/editor/editwidget.c         e->force |= REDRAW_PAGE;
e                1318 src/editor/editwidget.c         if ((e->force & REDRAW_COMPLETELY) != 0)
e                1319 src/editor/editwidget.c             e->force |= REDRAW_PAGE;
e                1320 src/editor/editwidget.c         edit_render_keypress (e);
e                1323 src/editor/editwidget.c     widget_draw (WIDGET (buttonbar_find (DIALOG (WIDGET (e)->owner))));
e                 427 src/editor/syntax.c         off_t e;
e                 432 src/editor/syntax.c             && (e = compare_word_to_right (edit, i, r->right, r->whole_word_chars_left,
e                 436 src/editor/syntax.c             _rule.end = e;
e                 471 src/editor/syntax.c                 off_t e = -1;
e                 476 src/editor/syntax.c                     e = compare_word_to_right (edit, i, k->keyword, k->whole_word_chars_left,
e                 478 src/editor/syntax.c                 if (e > 0)
e                 482 src/editor/syntax.c                     if (e > i + 1 && _rule._context != 0
e                 488 src/editor/syntax.c                             e--;
e                 491 src/editor/syntax.c                     end = e;
e                 492 src/editor/syntax.c                     _rule.end = e;
e                 524 src/editor/syntax.c                         off_t e = -1;
e                 527 src/editor/syntax.c                             e = compare_word_to_right (edit, i, r->right, r->whole_word_chars_left,
e                 530 src/editor/syntax.c                         if (e >= end)
e                 532 src/editor/syntax.c                             _rule.end = e;
e                 551 src/editor/syntax.c                     off_t e = -1;
e                 554 src/editor/syntax.c                         e = compare_word_to_right (edit, i, r->left, r->whole_word_chars_left,
e                 556 src/editor/syntax.c                     if (e >= end && (_rule.keyword == 0 || keyword_foundright))
e                 558 src/editor/syntax.c                         _rule.end = e;
e                 585 src/editor/syntax.c             off_t e = -1;
e                 591 src/editor/syntax.c                 e = compare_word_to_right (edit, i, k->keyword, k->whole_word_chars_left,
e                 593 src/editor/syntax.c             if (e > 0)
e                 595 src/editor/syntax.c                 _rule.end = e;
e                2226 src/filemanager/file.c attrs_ignore_error (const int e)
e                2228 src/filemanager/file.c     return (e == ENOTSUP || e == EOPNOTSUPP || e == ENOSYS || e == EINVAL || e == ENOTTY
e                2229 src/filemanager/file.c             || e == ELOOP || e == ENXIO);
e                 515 src/filemanager/mountlist.c     struct vfs_ent *e;
e                 517 src/filemanager/mountlist.c     e = getvfsbytype (t);
e                 518 src/filemanager/mountlist.c     if (!e || !e->vfsent_name)
e                 521 src/filemanager/mountlist.c         return e->vfsent_name;
e                 240 src/filemanager/treestore.c             tree_entry *e;
e                 278 src/filemanager/treestore.c                             e = tree_store_add_entry (tmp_vpath);
e                 280 src/filemanager/treestore.c                             e->scanned = scanned;
e                 293 src/filemanager/treestore.c                     e = tree_store_add_entry (vpath);
e                 294 src/filemanager/treestore.c                     e->scanned = scanned;
e                 129 src/help.c         const char *e = start;
e                 140 src/help.c         for (d = local_text; *e != '\0'; e++)
e                 142 src/help.c             if (*d == *e)
e                 148 src/help.c                 result = e + 1;
e                 169 src/help.c             const char *e;
e                 171 src/help.c             for (e = start; *e != '\0' && *e != CHAR_NODE_END; e++)
e                 173 src/help.c                 if (*d == *e)
e                 178 src/help.c                     return e + 1;
e                 193 src/help.c         const char *e;
e                 195 src/help.c         for (e = start; (*e != '\0') && (*e != CHAR_NODE_END); e += direction)
e                 196 src/help.c             if (*e == the_char)
e                 197 src/help.c                 return e;
e                  89 src/usermenu.c     char *e = NULL;
e                  97 src/usermenu.c             e = s;
e                  98 src/usermenu.c         if (IS_PATH_SEP (*s) && e != NULL)
e                  99 src/usermenu.c             e = NULL;  // '.' in *directory* name
e                 102 src/usermenu.c     if (e != NULL)
e                 103 src/usermenu.c         *e = '\0';
e                 238 src/usermenu.c     const WEdit *e = CONST_EDIT (edit_widget);
e                 266 src/usermenu.c             if (e != NULL)
e                 268 src/usermenu.c                 const char *edit_filename = edit_get_file_name (e);
e                 287 src/usermenu.c             if (e != NULL)
e                 289 src/usermenu.c                 const char *syntax_type = edit_get_syntax_type (e);
e                 776 src/usermenu.c     const WEdit *e = CONST_EDIT (edit_widget);
e                 788 src/usermenu.c         if (e != NULL)
e                 789 src/usermenu.c             fname = edit_get_file_name (e);
e                 811 src/usermenu.c         fname = edit_get_file_name (e);
e                 855 src/usermenu.c         if (e != NULL)
e                 857 src/usermenu.c             result = g_strdup_printf ("%u", (unsigned int) edit_get_cursor_offset (e));
e                 864 src/usermenu.c         if (e != NULL)
e                 866 src/usermenu.c             result = g_strnfill (edit_get_curs_col (e), ' ');
e                 873 src/usermenu.c         if (e != NULL)
e                 877 src/usermenu.c             syntax_type = edit_get_syntax_type (e);
e                 889 src/usermenu.c         if (e != NULL)
e                 907 src/usermenu.c         if (e != NULL)
e                 832 src/vfs/extfs/extfs.c     const struct vfs_s_entry *e;
e                 837 src/vfs/extfs/extfs.c     for (e = entry; e->dir != NULL; e = e->dir->ent)
e                 839 src/vfs/extfs/extfs.c         g_string_prepend (localpath, e->name);
e                 840 src/vfs/extfs/extfs.c         if (e->dir->ent->dir != NULL)
e                 852 src/vfs/ftpfs/ftpfs.c     int e;
e                 888 src/vfs/ftpfs/ftpfs.c     e = getaddrinfo (host, port, &hints, &res);
e                 891 src/vfs/ftpfs/ftpfs.c     if (e == EAI_BADFLAGS)
e                 895 src/vfs/ftpfs/ftpfs.c         e = getaddrinfo (host, port, &hints, &res);
e                 901 src/vfs/ftpfs/ftpfs.c     if (e != 0)
e                 904 src/vfs/ftpfs/ftpfs.c         vfs_print_message (_ ("ftpfs: %s"), gai_strerror (e));
e                 278 src/vfs/sftpfs/config_parser.c             int e;
e                 280 src/vfs/sftpfs/config_parser.c             e = errno;
e                 284 src/vfs/sftpfs/config_parser.c                 mc_propagate_error (mcerror, e, _ ("sftp: an error occurred while reading %s: %s"),
e                 285 src/vfs/sftpfs/config_parser.c                                     SFTPFS_SSH_CONFIG, strerror (e));
e                 139 src/vfs/sftpfs/connection.c     int e;
e                 164 src/vfs/sftpfs/connection.c     e = getaddrinfo (super->path_element->host, port, &hints, &res);
e                 167 src/vfs/sftpfs/connection.c     if (e == EAI_BADFLAGS)
e                 171 src/vfs/sftpfs/connection.c         e = getaddrinfo (super->path_element->host, port, &hints, &res);
e                 175 src/vfs/sftpfs/connection.c     if (e != 0)
e                 177 src/vfs/sftpfs/connection.c         mc_propagate_error (mcerror, e, _ ("sftp: %s"), gai_strerror (e));
e                 791 src/vfs/tar/tar-xheader.c     struct sp_array e;
e                 815 src/vfs/tar/tar-xheader.c             e.offset = u;
e                 824 src/vfs/tar/tar-xheader.c             e.numbytes = u;
e                 831 src/vfs/tar/tar-xheader.c             g_array_append_val (st->sparse_map, e);
e                 190 src/viewer/coord_cache.c         coord_cache_entry_t *e;
e                 192 src/viewer/coord_cache.c         e = coord_cache_index (cache, i);
e                 196 src/viewer/coord_cache.c                         (unsigned int) i, (uintmax_t) e->cc_offset, (uintmax_t) e->cc_line,
e                 197 src/viewer/coord_cache.c                         (uintmax_t) e->cc_column, (uintmax_t) e->cc_nroff_column);
e                  33 tests/lib/search/regex_replace_esc_seq.c #define test_helper_check_valid_data(a, b, c, d, e, f)                                             \
e                  38 tests/lib/search/regex_replace_esc_seq.c             ck_assert_msg (e == f, "ret(%d) != %d", e, f);                                         \