from 629 lib/search/regex.c mc_search_regex__process_append_str (GString * dest_str, const char *from, gsize len, from 636 lib/search/regex.c len = strlen (from); from 640 lib/search/regex.c g_string_append_len (dest_str, from, len); from 649 lib/search/regex.c tmp_str = 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 695 lib/search/regex.c len = strlen (from); from 699 lib/search/regex.c if (from[i] == '{') from 704 lib/search/regex.c if (from[i] == 'x') from 707 lib/search/regex.c if (i < len && from[i] == '{') from 711 lib/search/regex.c if (from[i] >= '0' && from[i] <= '9') from 712 lib/search/regex.c c = c * 16 + from[i] - '0'; from 713 lib/search/regex.c else if (from[i] >= 'a' && from[i] <= 'f') from 714 lib/search/regex.c c = c * 16 + 10 + from[i] - 'a'; from 715 lib/search/regex.c else if (from[i] >= 'A' && from[i] <= 'F') from 716 lib/search/regex.c c = c * 16 + 10 + from[i] - 'A'; from 721 lib/search/regex.c else if (from[i] >= '0' && from[i] <= '7') from 722 lib/search/regex.c for (; i < len && from[i] >= '0' && from[i] <= '7'; i++) from 723 lib/search/regex.c c = c * 8 + from[i] - '0'; from 726 lib/search/regex.c switch (from[i]) from 750 lib/search/regex.c mc_search_regex__process_append_str (dest_str, from, len, replace_flags); from 619 lib/strutil.h str_replace (char *s, char from, char to) from 623 lib/strutil.h if (*s == from) from 591 lib/util.c load_mc_home_file (const char *from, const char *filename, char **allocated_filename, from 598 lib/util.c hintfile_base = g_build_filename (from, filename, (char *) NULL); from 202 lib/util.h char *load_mc_home_file (const char *from, const char *filename, char **allocated_filename, from 146 lib/vfs/xdirentry.h int (*linear_start) (struct vfs_class * me, vfs_file_handler_t * fh, off_t from); from 1502 src/vfs/ftpfs/ftpfs.c struct sockaddr_storage from; from 1503 src/vfs/ftpfs/ftpfs.c socklen_t fromlen = sizeof (from); from 1506 src/vfs/ftpfs/ftpfs.c data = accept (s, (struct sockaddr *) &from, &fromlen); from 84 src/viewer/hex.c mcview_hex_calculate_boldflag (WView * view, off_t from, struct hexedit_change_node *curr, from 87 src/viewer/hex.c return (from == view->hex_cursor) ? MARK_CURSOR from 88 src/viewer/hex.c : ((curr != NULL && from == curr->offset) || force_changed) ? MARK_CHANGED from 89 src/viewer/hex.c : (view->search_start <= from && from < view->search_end) ? MARK_SELECTED : MARK_NORMAL; from 110 src/viewer/hex.c off_t from; from 129 src/viewer/hex.c from = view->dpy_start; from 133 src/viewer/hex.c if (from >= view->bytes_per_line) from 136 src/viewer/hex.c from -= view->bytes_per_line; from 138 src/viewer/hex.c if (view->bytes_per_line == 4 && from >= view->bytes_per_line) from 141 src/viewer/hex.c from -= view->bytes_per_line; from 145 src/viewer/hex.c while (curr && (curr->offset < from)) from 150 src/viewer/hex.c for (; mcview_get_byte (view, from, NULL) && row < r->lines; row++) from 160 src/viewer/hex.c g_snprintf (hex_buff, sizeof (hex_buff), "%08" PRIXMAX " ", (uintmax_t) from); from 168 src/viewer/hex.c for (bytes = 0; bytes < view->bytes_per_line; bytes++, from++) from 199 src/viewer/hex.c if (mcview_get_byte (view, from + j, &res)) from 206 src/viewer/hex.c if (curr != NULL && from + j == curr->offset) from 212 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 360 src/viewer/hex.c if (from == view->hex_cursor && view->hexview_in_text) from 372 src/viewer/hex.c view->dpy_end = from;