from 631 lib/search/regex.c mc_search_regex__process_append_str (GString *dest_str, const char *from, gsize len, from 638 lib/search/regex.c len = strlen (from); from 642 lib/search/regex.c g_string_append_len (dest_str, from, len); from 651 lib/search/regex.c s = mc_search__get_one_symbol (NULL, from + loop, len - loop, NULL); from 686 lib/search/regex.c mc_search_regex__process_escape_sequence (GString *dest_str, const char *from, gsize len, from 694 lib/search/regex.c len = strlen (from); from 698 lib/search/regex.c if (from[i] == '{') from 703 lib/search/regex.c if (from[i] == 'x') from 706 lib/search/regex.c if (i < len && from[i] == '{') from 710 lib/search/regex.c if (from[i] >= '0' && from[i] <= '9') from 711 lib/search/regex.c c = c * 16 + from[i] - '0'; from 712 lib/search/regex.c else if (from[i] >= 'a' && from[i] <= 'f') from 713 lib/search/regex.c c = c * 16 + 10 + from[i] - 'a'; from 714 lib/search/regex.c else if (from[i] >= 'A' && from[i] <= 'F') from 715 lib/search/regex.c c = c * 16 + 10 + from[i] - 'A'; from 720 lib/search/regex.c else if (from[i] >= '0' && from[i] <= '7') from 721 lib/search/regex.c for (; i < len && from[i] >= '0' && from[i] <= '7'; i++) from 722 lib/search/regex.c c = c * 8 + from[i] - '0'; from 725 lib/search/regex.c switch (from[i]) from 749 lib/search/regex.c mc_search_regex__process_append_str (dest_str, from, len, replace_flags); from 592 lib/strutil.h str_replace (char *s, char from, char to) from 596 lib/strutil.h if (*s == from) from 596 lib/util.c load_mc_home_file (const char *from, const char *filename, char **allocated_filename, from 603 lib/util.c hintfile_base = g_build_filename (from, filename, (char *) NULL); from 193 lib/util.h char *load_mc_home_file (const char *from, const char *filename, char **allocated_filename, from 148 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 : MARK_NORMAL; from 111 src/viewer/hex.c off_t from; from 133 src/viewer/hex.c from = view->dpy_start; from 137 src/viewer/hex.c if (from >= view->bytes_per_line) from 140 src/viewer/hex.c from -= view->bytes_per_line; from 142 src/viewer/hex.c if (view->bytes_per_line == 4 && from >= view->bytes_per_line) from 145 src/viewer/hex.c from -= view->bytes_per_line; from 149 src/viewer/hex.c while (curr != NULL && (curr->offset < from)) from 152 src/viewer/hex.c for (; mcview_get_byte (view, from, NULL) && row < r->lines; row++) from 162 src/viewer/hex.c g_snprintf (hex_buff, sizeof (hex_buff), "%08" PRIXMAX " ", (uintmax_t) from); from 170 src/viewer/hex.c for (bytes = 0; bytes < view->bytes_per_line; bytes++, from++) from 201 src/viewer/hex.c if (mcview_get_byte (view, from + j, &res)) from 208 src/viewer/hex.c if (curr != NULL && from + j == curr->offset) from 214 src/viewer/hex.c if (curr != NULL && from + j >= curr->offset) from 243 src/viewer/hex.c if (curr != NULL && from == curr->offset) from 248 src/viewer/hex.c if (!mcview_get_byte (view, from, &c)) from 252 src/viewer/hex.c if (from == view->hex_cursor && !view->hexview_in_text) from 259 src/viewer/hex.c boldflag_byte = mcview_hex_calculate_boldflag (view, from, curr, FALSE); from 260 src/viewer/hex.c boldflag_char = mcview_hex_calculate_boldflag (view, from, curr, utf8_changed); from 263 src/viewer/hex.c if (curr != NULL && from == curr->offset) from 358 src/viewer/hex.c if (from == view->hex_cursor && view->hexview_in_text) from 370 src/viewer/hex.c view->dpy_end = from;