from              638 lib/search/regex.c mc_search_regex__process_append_str (GString *dest_str, const char *from, gsize len,
from              645 lib/search/regex.c         len = strlen (from);
from              649 lib/search/regex.c         g_string_append_len (dest_str, from, len);
from              658 lib/search/regex.c         s = mc_search__get_one_symbol (NULL, from + loop, len - loop, NULL);
from              693 lib/search/regex.c mc_search_regex__process_escape_sequence (GString *dest_str, const char *from, gsize len,
from              701 lib/search/regex.c         len = strlen (from);
from              705 lib/search/regex.c     if (from[i] == '{')
from              710 lib/search/regex.c     if (from[i] == 'x')
from              713 lib/search/regex.c         if (i < len && from[i] == '{')
from              717 lib/search/regex.c             if (from[i] >= '0' && from[i] <= '9')
from              718 lib/search/regex.c                 c = c * 16 + from[i] - '0';
from              719 lib/search/regex.c             else if (from[i] >= 'a' && from[i] <= 'f')
from              720 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'a';
from              721 lib/search/regex.c             else if (from[i] >= 'A' && from[i] <= 'F')
from              722 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'A';
from              727 lib/search/regex.c     else if (from[i] >= '0' && from[i] <= '7')
from              728 lib/search/regex.c         for (; i < len && from[i] >= '0' && from[i] <= '7'; i++)
from              729 lib/search/regex.c             c = c * 8 + from[i] - '0';
from              732 lib/search/regex.c         switch (from[i])
from              756 lib/search/regex.c             mc_search_regex__process_append_str (dest_str, from, len, replace_flags);
from              588 lib/strutil.h  str_replace (char *s, char from, char to)
from              592 lib/strutil.h          if (*s == from)
from              608 lib/util.c     load_mc_home_file (const char *from, const char *filename, char **allocated_filename,
from              615 lib/util.c         hintfile_base = g_build_filename (from, filename, (char *) NULL);
from              209 lib/util.h     char *load_mc_home_file (const char *from, const char *filename, char **allocated_filename,
from              151 lib/vfs/xdirentry.h     int (*linear_start) (struct vfs_class *me, vfs_file_handler_t *fh, off_t from);
from             1498 src/vfs/ftpfs/ftpfs.c         struct sockaddr_storage from;
from             1499 src/vfs/ftpfs/ftpfs.c         socklen_t fromlen = sizeof (from);
from             1502 src/vfs/ftpfs/ftpfs.c         data = accept (s, (struct sockaddr *) &from, &fromlen);
from               85 src/viewer/hex.c mcview_hex_calculate_boldflag (WView *view, off_t from, struct hexedit_change_node *curr,
from               88 src/viewer/hex.c     return (from == view->hex_cursor)                               ? MARK_CURSOR
from               89 src/viewer/hex.c         : ((curr != NULL && from == curr->offset) || force_changed) ? MARK_CHANGED
from               90 src/viewer/hex.c         : (view->search_start <= from && from < view->search_end)   ? MARK_SELECTED
from              112 src/viewer/hex.c     off_t from;
from              134 src/viewer/hex.c     from = view->dpy_start;
from              138 src/viewer/hex.c         if (from >= view->bytes_per_line)
from              141 src/viewer/hex.c             from -= view->bytes_per_line;
from              143 src/viewer/hex.c         if (view->bytes_per_line == 4 && from >= view->bytes_per_line)
from              146 src/viewer/hex.c             from -= view->bytes_per_line;
from              150 src/viewer/hex.c     while (curr != NULL && (curr->offset < from))
from              153 src/viewer/hex.c     for (; mcview_get_byte (view, from, NULL) && row < r->lines; row++)
from              163 src/viewer/hex.c             g_snprintf (hex_buff, sizeof (hex_buff), "%08" PRIXMAX " ", (uintmax_t) from);
from              171 src/viewer/hex.c         for (bytes = 0; bytes < view->bytes_per_line; bytes++, from++)
from              202 src/viewer/hex.c                         if (mcview_get_byte (view, from + j, &res))
from              209 src/viewer/hex.c                         if (curr != NULL && from + j == curr->offset)
from              215 src/viewer/hex.c                         if (curr != NULL && from + j >= curr->offset)
from              244 src/viewer/hex.c                 if (curr != NULL && from == curr->offset)
from              249 src/viewer/hex.c             if (!mcview_get_byte (view, from, &c))
from              253 src/viewer/hex.c             if (from == view->hex_cursor && !view->hexview_in_text)
from              260 src/viewer/hex.c             boldflag_byte = mcview_hex_calculate_boldflag (view, from, curr, FALSE);
from              261 src/viewer/hex.c             boldflag_char = mcview_hex_calculate_boldflag (view, from, curr, utf8_changed);
from              264 src/viewer/hex.c             if (curr != NULL && from == curr->offset)
from              362 src/viewer/hex.c             if (from == view->hex_cursor && view->hexview_in_text)
from              374 src/viewer/hex.c     view->dpy_end = from;