e                1001 lib/strutil/strutil.c     strtol_error_t e;
e                1003 lib/strutil/strutil.c     e = xstrtoumax (str, &suffix, 10, &n, "bcEGkKMPTwYZ0");
e                1004 lib/strutil/strutil.c     if (e == LONGINT_INVALID_SUFFIX_CHAR && *suffix == 'x')
e                1017 lib/strutil/strutil.c     else if (e != LONGINT_OK)
e                 157 lib/tty/win.c          const char *e = getenv ("RXVT_EXT");
e                 158 lib/tty/win.c          rxvt_extensions = ((e != NULL) && (strcmp (e, "1.0") == 0));
e                1000 lib/vfs/direntry.c     const struct vfs_s_entry *e = (const struct vfs_s_entry *) a;
e                1003 lib/vfs/direntry.c     return strcmp (e->name, name);
e                1069 lib/widget/input_complete.c                 GList *e;
e                1073 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data));
e                1074 lib/widget/input_complete.c                      e != NULL; i++, e = g_list_next (e))
e                1076 lib/widget/input_complete.c                     WLEntry *le = LENTRY (e->data);
e                1107 lib/widget/input_complete.c                 GList *e;
e                1127 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data));
e                1128 lib/widget/input_complete.c                      e != NULL; i++, e = g_list_next (e))
e                1130 lib/widget/input_complete.c                     WLEntry *le = LENTRY (e->data);
e                 159 lib/widget/listbox-window.c         WLEntry *e;
e                 161 lib/widget/listbox-window.c         e = listbox_get_nth_entry (l->list, l->list->current);
e                 162 lib/widget/listbox-window.c         if (e != NULL)
e                 166 lib/widget/listbox-window.c             g_assert (!e->free_data);
e                 167 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                 368 lib/widget/listbox.c listbox_add_entry (WListbox * l, WLEntry * e, listbox_append_t pos)
e                 379 lib/widget/listbox.c         g_queue_push_tail (l->list, e);
e                 383 lib/widget/listbox.c         g_queue_insert_before (l->list, g_queue_peek_nth_link (l->list, (guint) l->current), e);
e                 387 lib/widget/listbox.c         g_queue_insert_after (l->list, g_queue_peek_nth_link (l->list, (guint) l->current), e);
e                 391 lib/widget/listbox.c         g_queue_insert_sorted (l->list, e, (GCompareDataFunc) listbox_entry_cmp, NULL);
e                 591 lib/widget/listbox.c             WLEntry *e = LENTRY (le->data);
e                 593 lib/widget/listbox.c             if (strcmp (e->text, text) == 0)
e                 616 lib/widget/listbox.c             WLEntry *e = LENTRY (le->data);
e                 618 lib/widget/listbox.c             if (e->data == data)
e                 702 lib/widget/listbox.c     WLEntry *e = NULL;
e                 706 lib/widget/listbox.c         e = listbox_get_nth_entry (l, l->current);
e                 708 lib/widget/listbox.c     ok = (e != NULL);
e                 711 lib/widget/listbox.c         *string = ok ? e->text : NULL;
e                 714 lib/widget/listbox.c         *extra = ok ? e->data : NULL;
e                 220 src/editor/edit-impl.h void edit_move_to_line (WEdit * e, long line);
e                 221 src/editor/edit-impl.h void edit_move_display (WEdit * e, long line);
e                1717 src/editor/edit.c edit_print_string (WEdit * e, const char *s)
e                1722 src/editor/edit.c         edit_execute_cmd (e, CK_InsertChar, (unsigned char) s[i]);
e                1723 src/editor/edit.c     e->force |= REDRAW_COMPLETELY;
e                1724 src/editor/edit.c     edit_update_screen (e);
e                2279 src/editor/edit.c     WEdit *e;
e                2281 src/editor/edit.c     e = g_malloc0 (sizeof (WEdit));
e                2282 src/editor/edit.c     *WIDGET (e) = *w;
e                2284 src/editor/edit.c     e->fullscreen = edit->fullscreen;
e                2285 src/editor/edit.c     e->loc_prev = edit->loc_prev;
e                2287 src/editor/edit.c     if (edit_init (e, &w->rect, filename_vpath, line) == NULL)
e                2289 src/editor/edit.c         g_free (e);
e                2294 src/editor/edit.c     memcpy (edit, e, sizeof (*edit));
e                2295 src/editor/edit.c     g_free (e);
e                3006 src/editor/edit.c         off_t e;
e                3010 src/editor/edit.c         e = edit_buffer_get_current_eol (&edit->buffer);
e                3011 src/editor/edit.c         line_len = (long) edit_move_forward3 (edit, b, 0, e);
e                3073 src/editor/edit.c edit_move_to_line (WEdit * e, long line)
e                3075 src/editor/edit.c     if (line < e->buffer.curs_line)
e                3076 src/editor/edit.c         edit_move_up (e, e->buffer.curs_line - line, FALSE);
e                3078 src/editor/edit.c         edit_move_down (e, line - e->buffer.curs_line, FALSE);
e                3079 src/editor/edit.c     edit_scroll_screen_over_cursor (e);
e                3086 src/editor/edit.c edit_move_display (WEdit * e, long line)
e                3088 src/editor/edit.c     if (line < e->start_line)
e                3089 src/editor/edit.c         edit_scroll_upward (e, e->start_line - line);
e                3091 src/editor/edit.c         edit_scroll_downward (e, line - e->start_line);
e                 541 src/editor/editcmd.c             off_t b, e;
e                 551 src/editor/editcmd.c             e = edit_buffer_get_current_eol (&edit->buffer);
e                 552 src/editor/editcmd.c             line_width = edit_move_forward3 (edit, b, 0, e);
e                1766 src/editor/editcmd.c     int e;
e                1794 src/editor/editcmd.c     e = system (tmp);
e                1796 src/editor/editcmd.c     if (e != 0)
e                1798 src/editor/editcmd.c         if (e == -1 || e == 127)
e                1804 src/editor/editcmd.c             sprintf (q, "%d ", e);
e                1839 src/editor/editcmd.c     int e;
e                1854 src/editor/editcmd.c     e = system (tmp);
e                1858 src/editor/editcmd.c     if (e != 0)
e                 282 src/editor/editcomplete.c             WEdit *e;
e                 287 src/editor/editcomplete.c             e = EDIT (ww);
e                 289 src/editor/editcomplete.c             if (e == edit)
e                 294 src/editor/editcomplete.c             last_byte = e->buffer.size;
e                 295 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 ? '*' : ' ', _("NoName"));
e                 337 src/editor/editwidget.c                     g_strdup_printf ("%c%s", e->modified ? '*' : ' ',
e                 338 src/editor/editwidget.c                                      vfs_path_as_str (e->filename_vpath));
e                 341 src/editor/editwidget.c                               str_term_trim (fname, WIDGET (listbox->list)->rect.cols - 2), e,
e                 627 src/editor/editwidget.c     WEdit *e = NULL;
e                 638 src/editor/editwidget.c             e = EDIT (l->data);
e                 640 src/editor/editwidget.c             if (e->drag_state != MCEDIT_DRAG_NONE)
e                 642 src/editor/editwidget.c                 edit_restore_size (e);
e                 649 src/editor/editwidget.c             if (e->modified)
e                 655 src/editor/editwidget.c         e = EDIT (me->data);
e                 657 src/editor/editwidget.c         widget_select (WIDGET (e));
e                 659 src/editor/editwidget.c         if (!edit_ok_to_exit (e))
e                 895 src/editor/editwidget.c                 WEdit *e = EDIT (top->data);
e                 900 src/editor/editwidget.c                     widget_select (WIDGET (e));
e                 905 src/editor/editwidget.c                     edit_toggle_fullscreen (e);
e                 944 src/editor/editwidget.c     WEdit *e = EDIT (w);
e                 949 src/editor/editwidget.c         edit_set_buttonbar (e, buttonbar_find (DIALOG (w->owner)));
e                 953 src/editor/editwidget.c         e->force |= REDRAW_COMPLETELY;
e                 954 src/editor/editwidget.c         edit_update_screen (e);
e                 963 src/editor/editwidget.c             if (macro_index == -1 && edit_execute_macro (e, parm))
e                 965 src/editor/editwidget.c                 edit_update_screen (e);
e                 968 src/editor/editwidget.c             else if (edit_translate_key (e, parm, &cmd, &ch))
e                 970 src/editor/editwidget.c                 edit_execute_key_command (e, cmd, ch);
e                 971 src/editor/editwidget.c                 edit_update_screen (e);
e                 980 src/editor/editwidget.c         edit_execute_key_command (e, parm, -1);
e                 981 src/editor/editwidget.c         edit_update_screen (e);
e                 988 src/editor/editwidget.c             y = (e->fullscreen ? 0 : 1) + EDIT_TEXT_VERTICAL_OFFSET + e->curs_row;
e                 989 src/editor/editwidget.c             x = (e->fullscreen ? 0 : 1) + EDIT_TEXT_HORIZONTAL_OFFSET +
e                 990 src/editor/editwidget.c                 edit_options.line_state_width + e->curs_col + e->start_col + e->over_col;
e                 997 src/editor/editwidget.c         edit_update_screen (e);
e                1001 src/editor/editwidget.c         edit_clean (e);
e                1327 src/editor/editwidget.c edit_update_screen (WEdit * e)
e                1329 src/editor/editwidget.c     edit_scroll_screen_over_cursor (e);
e                1330 src/editor/editwidget.c     edit_update_curs_col (e);
e                1331 src/editor/editwidget.c     edit_status (e, widget_get_state (WIDGET (e), WST_FOCUSED));
e                1335 src/editor/editwidget.c         e->force |= REDRAW_PAGE;
e                1338 src/editor/editwidget.c         if ((e->force & REDRAW_COMPLETELY) != 0)
e                1339 src/editor/editwidget.c             e->force |= REDRAW_PAGE;
e                1340 src/editor/editwidget.c         edit_render_keypress (e);
e                1343 src/editor/editwidget.c     widget_draw (WIDGET (buttonbar_find (DIALOG (WIDGET (e)->owner))));
e                 406 src/editor/syntax.c         off_t e;
e                 410 src/editor/syntax.c             && r->right->len != 0 && (e =
e                 416 src/editor/syntax.c             _rule.end = e;
e                 451 src/editor/syntax.c                 off_t e = -1;
e                 456 src/editor/syntax.c                     e = compare_word_to_right (edit, i, k->keyword, k->whole_word_chars_left,
e                 458 src/editor/syntax.c                 if (e > 0)
e                 462 src/editor/syntax.c                     if (e > i + 1 && _rule._context != 0
e                 468 src/editor/syntax.c                             e--;
e                 471 src/editor/syntax.c                     end = e;
e                 472 src/editor/syntax.c                     _rule.end = e;
e                 505 src/editor/syntax.c                         off_t e = -1;
e                 508 src/editor/syntax.c                             e = compare_word_to_right (edit, i, r->right, r->whole_word_chars_left,
e                 511 src/editor/syntax.c                         if (e >= end)
e                 513 src/editor/syntax.c                             _rule.end = e;
e                 532 src/editor/syntax.c                     off_t e = -1;
e                 535 src/editor/syntax.c                         e = compare_word_to_right (edit, i, r->left, r->whole_word_chars_left,
e                 537 src/editor/syntax.c                     if (e >= end && (_rule.keyword == 0 || keyword_foundright))
e                 539 src/editor/syntax.c                         _rule.end = e;
e                 566 src/editor/syntax.c             off_t e = -1;
e                 572 src/editor/syntax.c                 e = compare_word_to_right (edit, i, k->keyword, k->whole_word_chars_left,
e                 574 src/editor/syntax.c             if (e > 0)
e                 576 src/editor/syntax.c                 _rule.end = e;
e                 533 src/filemanager/mountlist.c     struct vfs_ent *e;
e                 535 src/filemanager/mountlist.c     e = getvfsbytype (t);
e                 536 src/filemanager/mountlist.c     if (!e || !e->vfsent_name)
e                 539 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                 131 src/help.c         const char *e = start;
e                 142 src/help.c         for (d = local_text; *e != '\0'; e++)
e                 144 src/help.c             if (*d == *e)
e                 150 src/help.c                 result = e + 1;
e                 171 src/help.c             const char *e;
e                 173 src/help.c             for (e = start; *e != '\0' && *e != CHAR_NODE_END; e++)
e                 175 src/help.c                 if (*d == *e)
e                 180 src/help.c                     return e + 1;
e                 195 src/help.c         const char *e;
e                 197 src/help.c         for (e = start; (*e != '\0') && (*e != CHAR_NODE_END); e += direction)
e                 198 src/help.c             if (*e == the_char)
e                 199 src/help.c                 return e;
e                  90 src/usermenu.c     char *e = NULL;
e                  98 src/usermenu.c             e = s;
e                  99 src/usermenu.c         if (IS_PATH_SEP (*s) && e != NULL)
e                 100 src/usermenu.c             e = NULL;           /* '.' in *directory* name */
e                 103 src/usermenu.c     if (e != NULL)
e                 104 src/usermenu.c         *e = '\0';
e                 234 src/usermenu.c     const WEdit *e = CONST_EDIT (edit_widget);
e                 262 src/usermenu.c             if (e != NULL)
e                 266 src/usermenu.c                 edit_filename = edit_get_file_name (e);
e                 277 src/usermenu.c             if (e != NULL)
e                 281 src/usermenu.c                 syntax_type = edit_get_syntax_type (e);
e                 770 src/usermenu.c     const WEdit *e = CONST_EDIT (edit_widget);
e                 782 src/usermenu.c         if (e != NULL)
e                 783 src/usermenu.c             fname = edit_get_file_name (e);
e                 802 src/usermenu.c         fname = edit_get_file_name (e);
e                 846 src/usermenu.c         if (e != NULL)
e                 848 src/usermenu.c             result = g_strdup_printf ("%u", (unsigned int) edit_get_cursor_offset (e));
e                 855 src/usermenu.c         if (e != NULL)
e                 857 src/usermenu.c             result = g_strnfill (edit_get_curs_col (e), ' ');
e                 864 src/usermenu.c         if (e != NULL)
e                 868 src/usermenu.c             syntax_type = edit_get_syntax_type (e);
e                 880 src/usermenu.c         if (e != NULL)
e                 898 src/usermenu.c         if (e != NULL)
e                 817 src/vfs/extfs/extfs.c     const struct vfs_s_entry *e;
e                 822 src/vfs/extfs/extfs.c     for (e = entry; e->dir != NULL; e = e->dir->ent)
e                 824 src/vfs/extfs/extfs.c         g_string_prepend (localpath, e->name);
e                 825 src/vfs/extfs/extfs.c         if (e->dir->ent->dir != NULL)
e                 854 src/vfs/ftpfs/ftpfs.c     int e;
e                 890 src/vfs/ftpfs/ftpfs.c     e = getaddrinfo (host, port, &hints, &res);
e                 893 src/vfs/ftpfs/ftpfs.c     if (e == EAI_BADFLAGS)
e                 897 src/vfs/ftpfs/ftpfs.c         e = getaddrinfo (host, port, &hints, &res);
e                 903 src/vfs/ftpfs/ftpfs.c     if (e != 0)
e                 906 src/vfs/ftpfs/ftpfs.c         vfs_print_message (_("ftpfs: %s"), gai_strerror (e));
e                 227 src/vfs/sftpfs/config_parser.c             int e;
e                 229 src/vfs/sftpfs/config_parser.c             e = errno;
e                 233 src/vfs/sftpfs/config_parser.c                 mc_propagate_error (mcerror, e,
e                 235 src/vfs/sftpfs/config_parser.c                                     SFTPFS_SSH_CONFIG, strerror (e));
e                 141 src/vfs/sftpfs/connection.c     int e;
e                 166 src/vfs/sftpfs/connection.c     e = getaddrinfo (super->path_element->host, port, &hints, &res);
e                 169 src/vfs/sftpfs/connection.c     if (e == EAI_BADFLAGS)
e                 173 src/vfs/sftpfs/connection.c         e = getaddrinfo (super->path_element->host, port, &hints, &res);
e                 177 src/vfs/sftpfs/connection.c     if (e != 0)
e                 179 src/vfs/sftpfs/connection.c         mc_propagate_error (mcerror, e, _("sftp: %s"), gai_strerror (e));
e                 105 src/vfs/tar/tar-sparse.c #define _GL_INT_CONVERT(e, v) ((1 ? 0 : (e)) + (v))
e                 109 src/vfs/tar/tar-sparse.c #define _GL_INT_NEGATE_CONVERT(e, v) ((1 ? 0 : (e)) - (v))
e                 113 src/vfs/tar/tar-sparse.c #define EXPR_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0)
e                 115 src/vfs/tar/tar-sparse.c #define _GL_SIGNED_INT_MAXIMUM(e)                                       \
e                 116 src/vfs/tar/tar-sparse.c     (((_GL_INT_CONVERT (e, 1) << (TYPE_WIDTH (+ (e)) - 2)) - 1) * 2 + 1)
e                 120 src/vfs/tar/tar-sparse.c #define _GL_INT_MINIMUM(e)                                              \
e                 121 src/vfs/tar/tar-sparse.c     (EXPR_SIGNED (e)                                                    \
e                 122 src/vfs/tar/tar-sparse.c         ? ~_GL_SIGNED_INT_MAXIMUM (e)                                   \
e                 123 src/vfs/tar/tar-sparse.c         : _GL_INT_CONVERT (e, 0))
e                 124 src/vfs/tar/tar-sparse.c #define _GL_INT_MAXIMUM(e)                                              \
e                 125 src/vfs/tar/tar-sparse.c     (EXPR_SIGNED (e)                                                    \
e                 126 src/vfs/tar/tar-sparse.c         ? _GL_SIGNED_INT_MAXIMUM (e)                                    \
e                 127 src/vfs/tar/tar-sparse.c         : _GL_INT_NEGATE_CONVERT (e, 1))
e                 880 src/vfs/tar/tar-xheader.c     struct sp_array e;
e                 908 src/vfs/tar/tar-xheader.c             e.offset = u;
e                 917 src/vfs/tar/tar-xheader.c             e.numbytes = u;
e                 924 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                 198 src/viewer/coord_cache.c                         (uintmax_t) e->cc_offset, (uintmax_t) e->cc_line, (uintmax_t) e->cc_column,
e                 199 src/viewer/coord_cache.c                         (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); \