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                  56 lib/intprops-internal.h #define _GL_INT_MINIMUM(e)                                              \
e                  57 lib/intprops-internal.h   (_GL_EXPR_SIGNED (e)                                                  \
e                  58 lib/intprops-internal.h    ? ~ _GL_SIGNED_INT_MAXIMUM (e)                                       \
e                  59 lib/intprops-internal.h    : _GL_INT_CONVERT (e, 0))
e                  60 lib/intprops-internal.h #define _GL_INT_MAXIMUM(e)                                              \
e                  61 lib/intprops-internal.h   (_GL_EXPR_SIGNED (e)                                                  \
e                  62 lib/intprops-internal.h    ? _GL_SIGNED_INT_MAXIMUM (e)                                         \
e                  63 lib/intprops-internal.h    : _GL_INT_NEGATE_CONVERT (e, 1))
e                  64 lib/intprops-internal.h #define _GL_SIGNED_INT_MAXIMUM(e)                                       \
e                  65 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                 992 lib/strutil/strutil.c     strtol_error_t e;
e                 994 lib/strutil/strutil.c     e = xstrtoumax (str, &suffix, 10, &n, "bcEGkKMPTwYZ0");
e                 995 lib/strutil/strutil.c     if (e == LONGINT_INVALID_SUFFIX_CHAR && *suffix == 'x')
e                1008 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                 995 lib/vfs/direntry.c     const struct vfs_s_entry *e = (const struct vfs_s_entry *) a;
e                 998 lib/vfs/direntry.c     return strcmp (e->name, name);
e                1028 lib/widget/input_complete.c                 GList *e;
e                1032 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data));
e                1033 lib/widget/input_complete.c                      e != NULL; i++, e = g_list_next (e))
e                1035 lib/widget/input_complete.c                     WLEntry *le = LENTRY (e->data);
e                1066 lib/widget/input_complete.c                 GList *e;
e                1086 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data));
e                1087 lib/widget/input_complete.c                      e != NULL; i++, e = g_list_next (e))
e                1089 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                 214 src/editor/edit-impl.h void edit_move_to_line (WEdit * e, long line);
e                 215 src/editor/edit-impl.h void edit_move_display (WEdit * e, long line);
e                1716 src/editor/edit.c edit_print_string (WEdit *e, const char *s)
e                1721 src/editor/edit.c         edit_execute_cmd (e, CK_InsertChar, (unsigned char) s[i]);
e                1722 src/editor/edit.c     e->force |= REDRAW_COMPLETELY;
e                1723 src/editor/edit.c     edit_update_screen (e);
e                2291 src/editor/edit.c     WEdit *e;
e                2293 src/editor/edit.c     e = g_malloc0 (sizeof (WEdit));
e                2294 src/editor/edit.c     *WIDGET (e) = *w;
e                2296 src/editor/edit.c     e->fullscreen = edit->fullscreen;
e                2297 src/editor/edit.c     e->loc_prev = edit->loc_prev;
e                2299 src/editor/edit.c     if (edit_init (e, &w->rect, arg) == NULL)
e                2301 src/editor/edit.c         g_free (e);
e                2306 src/editor/edit.c     memcpy (edit, e, sizeof (*edit));
e                2307 src/editor/edit.c     g_free (e);
e                3018 src/editor/edit.c         off_t e;
e                3022 src/editor/edit.c         e = edit_buffer_get_current_eol (&edit->buffer);
e                3023 src/editor/edit.c         line_len = (long) edit_move_forward3 (edit, b, 0, e);
e                3085 src/editor/edit.c edit_move_to_line (WEdit *e, long line)
e                3087 src/editor/edit.c     if (line < e->buffer.curs_line)
e                3088 src/editor/edit.c         edit_move_up (e, e->buffer.curs_line - line, FALSE);
e                3090 src/editor/edit.c         edit_move_down (e, line - e->buffer.curs_line, FALSE);
e                3091 src/editor/edit.c     edit_scroll_screen_over_cursor (e);
e                3098 src/editor/edit.c edit_move_display (WEdit *e, long line)
e                3100 src/editor/edit.c     if (line < e->start_line)
e                3101 src/editor/edit.c         edit_scroll_upward (e, e->start_line - line);
e                3103 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                1776 src/editor/editcmd.c     int e;
e                1804 src/editor/editcmd.c     e = system (tmp);
e                1806 src/editor/editcmd.c     if (e != 0)
e                1808 src/editor/editcmd.c         if (e == -1 || e == 127)
e                1814 src/editor/editcmd.c             sprintf (q, "%d ", e);
e                1849 src/editor/editcmd.c     int e;
e                1864 src/editor/editcmd.c     e = system (tmp);
e                1868 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                 329 src/editor/editwidget.c             WEdit *e = EDIT (w->data);
e                 332 src/editor/editwidget.c             if (e->filename_vpath == NULL)
e                 333 src/editor/editwidget.c                 fname = g_strdup_printf ("%c [%s]", e->modified ? '*' : ' ', _("NoName"));
e                 336 src/editor/editwidget.c                     g_strdup_printf ("%c%s", e->modified ? '*' : ' ',
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                 626 src/editor/editwidget.c     WEdit *e = NULL;
e                 637 src/editor/editwidget.c             e = EDIT (l->data);
e                 639 src/editor/editwidget.c             if (e->drag_state != MCEDIT_DRAG_NONE)
e                 641 src/editor/editwidget.c                 edit_restore_size (e);
e                 648 src/editor/editwidget.c             if (e->modified)
e                 654 src/editor/editwidget.c         e = EDIT (me->data);
e                 656 src/editor/editwidget.c         widget_select (WIDGET (e));
e                 658 src/editor/editwidget.c         if (!edit_ok_to_exit (e))
e                 894 src/editor/editwidget.c                 WEdit *e = EDIT (top->data);
e                 899 src/editor/editwidget.c                     widget_select (WIDGET (e));
e                 904 src/editor/editwidget.c                     edit_toggle_fullscreen (e);
e                 943 src/editor/editwidget.c     WEdit *e = EDIT (w);
e                 948 src/editor/editwidget.c         edit_set_buttonbar (e, buttonbar_find (DIALOG (w->owner)));
e                 952 src/editor/editwidget.c         e->force |= REDRAW_COMPLETELY;
e                 953 src/editor/editwidget.c         edit_update_screen (e);
e                 962 src/editor/editwidget.c             if (macro_index == -1 && !bracketed_pasting_in_progress && edit_execute_macro (e, parm))
e                 964 src/editor/editwidget.c                 edit_update_screen (e);
e                 967 src/editor/editwidget.c             else if (edit_translate_key (e, parm, &cmd, &ch))
e                 969 src/editor/editwidget.c                 edit_execute_key_command (e, cmd, ch);
e                 970 src/editor/editwidget.c                 edit_update_screen (e);
e                 979 src/editor/editwidget.c         edit_execute_key_command (e, parm, -1);
e                 980 src/editor/editwidget.c         edit_update_screen (e);
e                 987 src/editor/editwidget.c             y = (e->fullscreen ? 0 : 1) + EDIT_TEXT_VERTICAL_OFFSET + e->curs_row;
e                 988 src/editor/editwidget.c             x = (e->fullscreen ? 0 : 1) + EDIT_TEXT_HORIZONTAL_OFFSET +
e                 989 src/editor/editwidget.c                 edit_options.line_state_width + e->curs_col + e->start_col + e->over_col;
e                 996 src/editor/editwidget.c         edit_update_screen (e);
e                1000 src/editor/editwidget.c         edit_clean (e);
e                1316 src/editor/editwidget.c edit_update_screen (WEdit *e)
e                1318 src/editor/editwidget.c     edit_scroll_screen_over_cursor (e);
e                1319 src/editor/editwidget.c     edit_update_curs_col (e);
e                1320 src/editor/editwidget.c     edit_status (e, widget_get_state (WIDGET (e), WST_FOCUSED));
e                1324 src/editor/editwidget.c         e->force |= REDRAW_PAGE;
e                1327 src/editor/editwidget.c         if ((e->force & REDRAW_COMPLETELY) != 0)
e                1328 src/editor/editwidget.c             e->force |= REDRAW_PAGE;
e                1329 src/editor/editwidget.c         edit_render_keypress (e);
e                1332 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                2210 src/filemanager/file.c attrs_ignore_error (const int e)
e                2212 src/filemanager/file.c     return (e == ENOTSUP || e == EOPNOTSUPP || e == ENOSYS || e == EINVAL || e == ENOTTY
e                2213 src/filemanager/file.c             || e == ELOOP || e == ENXIO);
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                 239 src/usermenu.c     const WEdit *e = CONST_EDIT (edit_widget);
e                 267 src/usermenu.c             if (e != NULL)
e                 271 src/usermenu.c                 edit_filename = edit_get_file_name (e);
e                 291 src/usermenu.c             if (e != NULL)
e                 295 src/usermenu.c                 syntax_type = edit_get_syntax_type (e);
e                 784 src/usermenu.c     const WEdit *e = CONST_EDIT (edit_widget);
e                 796 src/usermenu.c         if (e != NULL)
e                 797 src/usermenu.c             fname = edit_get_file_name (e);
e                 819 src/usermenu.c         fname = edit_get_file_name (e);
e                 863 src/usermenu.c         if (e != NULL)
e                 865 src/usermenu.c             result = g_strdup_printf ("%u", (unsigned int) edit_get_cursor_offset (e));
e                 872 src/usermenu.c         if (e != NULL)
e                 874 src/usermenu.c             result = g_strnfill (edit_get_curs_col (e), ' ');
e                 881 src/usermenu.c         if (e != NULL)
e                 885 src/usermenu.c             syntax_type = edit_get_syntax_type (e);
e                 897 src/usermenu.c         if (e != NULL)
e                 915 src/usermenu.c         if (e != NULL)
e                 825 src/vfs/extfs/extfs.c     const struct vfs_s_entry *e;
e                 830 src/vfs/extfs/extfs.c     for (e = entry; e->dir != NULL; e = e->dir->ent)
e                 832 src/vfs/extfs/extfs.c         g_string_prepend (localpath, e->name);
e                 833 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                 245 src/vfs/sftpfs/config_parser.c             int e;
e                 247 src/vfs/sftpfs/config_parser.c             e = errno;
e                 251 src/vfs/sftpfs/config_parser.c                 mc_propagate_error (mcerror, e,
e                 253 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                 794 src/vfs/tar/tar-xheader.c     struct sp_array e;
e                 818 src/vfs/tar/tar-xheader.c             e.offset = u;
e                 827 src/vfs/tar/tar-xheader.c             e.numbytes = u;
e                 834 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); \