size              108 lib/strutil.h        /*I*/ estr_t (*vfs_convert_to) (GIConv coder, const char *string, int size, GString * buffer);
size              111 lib/strutil.h        /*I*/ int (*is_valid_char) (const char *ch, size_t size);
size              125 lib/strutil.h        /*I*/ int (*length2) (const char *text, int size);
size              195 lib/strutil.h  estr_t str_nconvert (GIConv coder, const char *string, int size, GString * buffer);
size              215 lib/strutil.h  estr_t str_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer);
size              258 lib/strutil.h  int str_is_valid_char (const char *ch, size_t size);
size              375 lib/strutil.h  int str_length2 (const char *text, int size);
size              102 lib/strutil/strutil.c _str_convert (GIConv coder, const char *string, int size, GString *buffer)
size              123 lib/strutil/strutil.c     if (size < 0)
size              124 lib/strutil/strutil.c         size = strlen (string);
size              128 lib/strutil/strutil.c         if (left < size)
size              129 lib/strutil/strutil.c             size = left;
size              132 lib/strutil/strutil.c     left = size;
size              174 lib/strutil/strutil.c                 size -= (bytes_read + 1);
size              290 lib/strutil/strutil.c str_nconvert (GIConv coder, const char *string, int size, GString *buffer)
size              292 lib/strutil/strutil.c     return _str_convert (coder, string, size, buffer);
size              321 lib/strutil/strutil.c str_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
size              323 lib/strutil/strutil.c     return used_class.vfs_convert_to (coder, string, size, buffer);
size              638 lib/strutil/strutil.c str_is_valid_char (const char *ch, size_t size)
size              640 lib/strutil/strutil.c     return used_class.is_valid_char (ch, size);
size              694 lib/strutil/strutil.c str_length2 (const char *text, int size)
size              696 lib/strutil/strutil.c     return used_class.length2 (text, size);
size               99 lib/strutil/strutil8bit.c str_8bit_is_valid_char (const char *ch, size_t size)
size              102 lib/strutil/strutil8bit.c     (void) size;
size              234 lib/strutil/strutil8bit.c str_8bit_length2 (const char *text, int size)
size              240 lib/strutil/strutil8bit.c     return (size >= 0) ? MIN (length, (size_t) size) : length;
size              279 lib/strutil/strutil8bit.c str_8bit_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
size              284 lib/strutil/strutil8bit.c         g_string_append_len (buffer, string, size);
size              286 lib/strutil/strutil8bit.c         result = str_nconvert (coder, string, size, buffer);
size               72 lib/strutil/strutilascii.c str_ascii_is_valid_char (const char *ch, size_t size)
size               75 lib/strutil/strutilascii.c     (void) size;
size              207 lib/strutil/strutilascii.c str_ascii_length2 (const char *text, int size)
size              213 lib/strutil/strutilascii.c     return (size >= 0) ? MIN (length, (size_t) size) : length;
size              231 lib/strutil/strutilascii.c str_ascii_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
size              234 lib/strutil/strutilascii.c     g_string_append_len (buffer, string, size);
size               99 lib/strutil/strutilutf8.c str_utf8_is_valid_char (const char *ch, size_t size)
size              101 lib/strutil/strutilutf8.c     switch (g_utf8_get_char_validated (ch, size))
size              353 lib/strutil/strutilutf8.c str_utf8_length2 (const char *text, int size)
size              360 lib/strutil/strutilutf8.c     while (!g_utf8_validate (start, -1, &end) && start[0] != '\0' && size > 0)
size              364 lib/strutil/strutilutf8.c             result += g_utf8_strlen (start, MIN (end - start, size));
size              365 lib/strutil/strutilutf8.c             size -= end - start;
size              367 lib/strutil/strutilutf8.c         result += (size > 0);
size              368 lib/strutil/strutilutf8.c         size--;
size              373 lib/strutil/strutilutf8.c         result = g_utf8_strlen (text, size);
size              374 lib/strutil/strutilutf8.c     else if (start[0] != '\0' && start != end && size > 0)
size              375 lib/strutil/strutilutf8.c         result += g_utf8_strlen (start, MIN (end - start, size));
size              426 lib/strutil/strutilutf8.c str_utf8_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
size              431 lib/strutil/strutilutf8.c         g_string_append_len (buffer, string, size);
size              433 lib/strutil/strutilutf8.c         result = str_nconvert (coder, string, size, buffer);
size              672 lib/strutil/strutilutf8.c utf8_tool_compose (char *buffer, size_t size)
size              677 lib/strutil/strutilutf8.c     g_strlcpy (buffer, composed, size);
size             1368 lib/strutil/strutilutf8.c                          gchar *(*keygen) (const gchar *text, gssize size))
size              347 lib/util.c     size_trunc (uintmax_t size, gboolean use_si)
size              353 lib/util.c         if (size > 999999999UL)
size              358 lib/util.c             if (size / divisor > 999999999UL)
size              363 lib/util.c                 if (size / divisor > 999999999UL)
size              370 lib/util.c         g_snprintf (x, sizeof (x), "%.0f %s", 1.0 * size / divisor, xtra);
size              377 lib/util.c     size_trunc_sep (uintmax_t size, gboolean use_si)
size              384 lib/util.c         p = y = size_trunc (size, use_si);
size              419 lib/util.c     size_trunc_len (char *buffer, unsigned int len, uintmax_t size, int units, gboolean use_si)
size              487 lib/util.c                 size_remain = ((size % 125) * 1024) / 1000; /* size mod 125, recalculated */
size              488 lib/util.c                 size /= 125;        /* 128/125 = 1024/1000 */
size              489 lib/util.c                 size *= 128;        /* This will convert size from multiple of 1024 to multiple of 1000 */
size              490 lib/util.c                 size += size_remain;        /* Re-add remainder lost by division/multiplication */
size              495 lib/util.c             if (size == 0)
size              510 lib/util.c             if (size < power10[len - (j > 0 ? 1 : 0)])
size              512 lib/util.c                 g_snprintf (buffer, len + 1, "%" PRIuMAX "%s", size, sfx[j]);
size              518 lib/util.c                 size = (size + 500) / 1000;
size              520 lib/util.c                 size = (size + 512) >> 10;
size              160 lib/util.h     const char *size_trunc (uintmax_t size, gboolean use_si);
size              165 lib/util.h     const char *size_trunc_sep (uintmax_t size, gboolean use_si);
size              171 lib/util.h     void size_trunc_len (char *buffer, unsigned int len, uintmax_t size, int units, gboolean use_si);
size              116 lib/utilunix.c i_cache_match (int id, int_cache *cache, int size)
size              120 lib/utilunix.c     for (i = 0; i < size; i++)
size              129 lib/utilunix.c i_cache_add (int id, int_cache *cache, int size, char *text, int *last)
size              134 lib/utilunix.c     *last = ((*last) + 1) % size;
size              685 lib/utilunix.c     size_t size, i;
size              693 lib/utilunix.c     size = ps->len - ps->pos;
size              695 lib/utilunix.c     if (size == 0)
size              704 lib/utilunix.c     for (i = 0; i < size && !(s[i] == '\0' || (s[i] == '\n' && !escape)); i++)
size              707 lib/utilunix.c     if (i != size && s[i] == '\n')
size              524 lib/vfs/direntry.c vfs_s_readlink (const vfs_path_t *vpath, char *buf, size_t size)
size              549 lib/vfs/direntry.c     if (size < len)
size              550 lib/vfs/direntry.c         len = size;
size              618 lib/vfs/direntry.c     off_t size = file->ino->st.st_size;
size              639 lib/vfs/direntry.c         offset += size;
size              646 lib/vfs/direntry.c     else if (offset < size)
size              649 lib/vfs/direntry.c         file->pos = size;
size             1663 lib/vfs/direntry.c vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd)
size             1672 lib/vfs/direntry.c     for (i = 0; i < size - 1; i++)
size             1696 lib/vfs/direntry.c     buffer[size - 1] = '\0';
size              121 lib/vfs/vfs.c  _vfs_translate_path (const char *path, int size, GIConv defcnv, GString *buffer)
size              127 lib/vfs/vfs.c      if (size == 0)
size              130 lib/vfs/vfs.c      size = (size > 0) ? size : (signed int) strlen (path);
size              133 lib/vfs/vfs.c      semi = g_strrstr_len (path, size, VFS_ENCODING_PREFIX);
size              153 lib/vfs/vfs.c          if (slash - path >= size)
size              159 lib/vfs/vfs.c          if (semi + ms > path + size)
size              160 lib/vfs/vfs.c              ms = path + size - semi;
size              170 lib/vfs/vfs.c                  state = str_vfs_convert_to (coder, slash + 1, path + size - slash - 1, buffer);
size              181 lib/vfs/vfs.c          state = str_vfs_convert_to (defcnv, path, size, buffer);
size              184 lib/vfs/vfs.c      (void) size;
size              184 lib/vfs/vfs.h      int (*readlink) (const vfs_path_t * vpath, char *buf, size_t size);
size              191 lib/vfs/xdirentry.h int vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd);
size              939 lib/widget/input_complete.c insert_text (WInput *in, const char *text, ssize_t size)
size              947 lib/widget/input_complete.c     if (size < 0)
size              948 lib/widget/input_complete.c         size = (ssize_t) text_len;
size              950 lib/widget/input_complete.c         size = MIN (size, (ssize_t) text_len);
size              952 lib/widget/input_complete.c     new_size = size + start - end;
size              977 lib/widget/input_complete.c     g_string_overwrite_len (in->buffer, start, text, size);
size              264 src/background.c         int size;
size              266 src/background.c         if (read (fd, &size, sizeof (size)) != sizeof (size))
size              269 src/background.c         data[i] = g_malloc (size + 1);
size              271 src/background.c         if (read (fd, data[i], size) != size)
size              274 src/background.c         data[i][size] = '\0';   /* NULL terminate the blocks (they could be strings) */
size              289 src/cons.handler.c     screen_info.size = sizeof (screen_info);
size              329 src/diffviewer/ydiff.c dview_fgets (char *buf, size_t size, FBUF *fs)
size              338 src/diffviewer/ydiff.c         for (i = fs->pos; j < size && i < fs->len && !stop; i++, j++)
size              346 src/diffviewer/ydiff.c         if (j == size || stop)
size              434 src/diffviewer/ydiff.c dview_fwrite (FBUF *fs, const char *buf, size_t size)
size              438 src/diffviewer/ydiff.c     rv = write (fs->fd, buf, size);
size              221 src/editor/edit.c     ret = (edit_buffer_read_file (buf, file, buf->size, &rsm, &aborted) == buf->size);
size              719 src/editor/edit.c         edit->line_offsets[2] = edit_buffer_get_bol (&edit->buffer, edit->buffer.size);
size              872 src/editor/edit.c         edit->start_display = edit->buffer.size;
size             1009 src/editor/edit.c         if (edit->buffer.curs1 >= edit->buffer.size)
size             1122 src/editor/edit.c     if (edit->buffer.curs1 > 0 && edit->buffer.curs1 + 1 < edit->buffer.size
size             1139 src/editor/edit.c     while (edit->buffer.curs1 < edit->buffer.size)
size             1579 src/editor/edit.c         if (q >= edit->buffer.size || q < 0)
size             1765 src/editor/edit.c                     if (p == edit->buffer.size)
size             1767 src/editor/edit.c                         edit_cursor_move (edit, edit->buffer.size - edit->buffer.curs1);
size             1889 src/editor/edit.c         for (i = 0; i < edit->buffer.size; i++)
size             1896 src/editor/edit.c     for (i = 0; i < edit->buffer.size; i++)
size             1977 src/editor/edit.c     return edit->buffer.size;
size             2830 src/editor/edit.c         q = edit->buffer.size + 2;
size             3242 src/editor/edit.c     for (; pos < edit->buffer.size; pos++)
size             3253 src/editor/edit.c     edit->mark2 = MIN (pos + 1, edit->buffer.size);
size             3835 src/editor/edit.c         edit_set_markers (edit, 0, edit->buffer.size, 0, 0);
size              147 src/editor/editbuffer.c edit_buffer_init (edit_buffer_t *buf, off_t size)
size              155 src/editor/editbuffer.c     buf->size = size;
size              331 src/editor/editbuffer.c     last = MIN (last, buf->size);
size              375 src/editor/editbuffer.c     if (current >= buf->size)
size              376 src/editor/editbuffer.c         return buf->size;
size              510 src/editor/editbuffer.c     buf->size++;
size              542 src/editor/editbuffer.c     buf->size++;
size              580 src/editor/editbuffer.c     buf->size--;
size              620 src/editor/editbuffer.c     buf->size--;
size              652 src/editor/editbuffer.c         if (next > buf->size)
size              695 src/editor/editbuffer.c edit_buffer_read_file (edit_buffer_t *buf, int fd, off_t size,
size              708 src/editor/editbuffer.c     buf->curs2 = size;
size              887 src/editor/editbuffer.c     if (buf->size == 0)
size              889 src/editor/editbuffer.c     else if (offset >= buf->size)
size              892 src/editor/editbuffer.c         percent = offset / (buf->size / 100);
size              894 src/editor/editbuffer.c         percent = offset * 100 / buf->size;
size               20 src/editor/editbuffer.h     off_t size;                 /* file size */
size               38 src/editor/editbuffer.h void edit_buffer_init (edit_buffer_t * buf, off_t size);
size               63 src/editor/editbuffer.h off_t edit_buffer_read_file (edit_buffer_t * buf, int fd, off_t size,
size              288 src/editor/editcmd.c         if (filelen != edit->buffer.size)
size              326 src/editor/editcmd.c     if (filelen != edit->buffer.size)
size              373 src/editor/editcmd.c     return !(edit_options.check_nl_at_eof && buf->size > 0
size              374 src/editor/editcmd.c              && edit_buffer_get_byte (buf, buf->size - 1) != '\n'
size              670 src/editor/editcmd.c         for (i = 0; i < buf->size; i++)
size              680 src/editor/editcmd.c edit_insert_column_of_text (WEdit *edit, unsigned char *data, off_t size, long width,
size              689 src/editor/editcmd.c     for (i = 0; i < size; i++)
size              705 src/editor/editcmd.c                 if (p == edit->buffer.size)
size              707 src/editor/editcmd.c                     edit_cursor_move (edit, edit->buffer.size - edit->buffer.curs1);
size             1292 src/editor/editcmd.c     off_t size;
size             1299 src/editor/editcmd.c     copy_buf = edit_get_block (edit, start_mark, end_mark, &size);
size             1310 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, size, col_delta, &mark1, &mark2, &c1, &c2);
size             1314 src/editor/editcmd.c         int size_orig = size;
size             1316 src/editor/editcmd.c         while (size-- != 0)
size             1317 src/editor/editcmd.c             edit_insert_ahead (edit, copy_buf[size]);
size             1358 src/editor/editcmd.c         off_t size;
size             1387 src/editor/editcmd.c         copy_buf = edit_get_block (edit, start_mark, end_mark, &size);
size             1403 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, size, b_width, &mark1, &mark2, &c1, &c2);
size               80 src/editor/editcomplete.c     if (mc_search_run (srch, (void *) esm, word_start, edit->buffer.size, &len))
size              243 src/editor/editcomplete.c     last_byte = entire_file ? edit->buffer.size : word_start;
size              294 src/editor/editcomplete.c             last_byte = e->buffer.size;
size              110 src/editor/editdraw.c     if (edit->buffer.curs1 >= edit->buffer.size)
size              148 src/editor/editdraw.c                     edit->buffer.lines + 1, (long) edit->buffer.curs1, (long) edit->buffer.size,
size              165 src/editor/editdraw.c                     edit->buffer.lines + 1, (long) edit->buffer.curs1, (long) edit->buffer.size,
size              292 src/editor/editdraw.c                     (long) edit->buffer.size);
size              303 src/editor/editdraw.c         if (edit->buffer.curs1 >= edit->buffer.size)
size              448 src/editor/editsearch.c     off_t end_mark = edit->buffer.size;
size              467 src/editor/editsearch.c                 edit_calculate_start_of_next_line (&edit->buffer, start_mark, edit->buffer.size,
size              471 src/editor/editsearch.c             && (end_mark - 1 != edit->buffer.size
size              613 src/editor/editsearch.c         while (mc_search_run (edit->search, (void *) &esm, q, edit->buffer.size, &len))
size              918 src/editor/editsearch.c         if (edit->search_start >= 0 && edit->search_start < edit->buffer.size)
size              998 src/editor/editsearch.c                 if (edit->search_start >= edit->buffer.size)
size              193 src/editor/format.c strip_newlines (unsigned char *t, off_t size)
size              197 src/editor/format.c     for (p = t; size-- != 0; p++)
size              273 src/editor/format.c next_word_start (unsigned char *t, off_t q, off_t size)
size              278 src/editor/format.c     for (i = q; i < size; i++)
size              301 src/editor/format.c word_start (unsigned char *t, off_t q, off_t size)
size              306 src/editor/format.c         return next_word_start (t, q, size);
size              326 src/editor/format.c format_this (unsigned char *t, off_t size, long indent, gboolean utf8)
size              330 src/editor/format.c     strip_newlines (t, size);
size              340 src/editor/format.c         if (q > size)
size              344 src/editor/format.c         p = word_start (t, q, size);
size              346 src/editor/format.c             q = next_word_start (t, q, size);   /* Return the end of the word if the beginning
size              377 src/editor/format.c            && q < edit->buffer.size - 1)
size              403 src/editor/format.c put_paragraph (WEdit *edit, unsigned char *t, off_t p, long indent, off_t size)
size              413 src/editor/format.c     for (i = 0; i < size; i++, p++)
size              480 src/editor/format.c     off_t size;
size              496 src/editor/format.c     size = t->len - 1;
size              515 src/editor/format.c         for (i = 0; i < size - 1; i++)
size              531 src/editor/format.c     put_paragraph (edit, t2, p, indent, size);
size              451 src/editor/spell.c     unsigned int size = 0;
size              464 src/editor/spell.c             size = mc_aspell_word_list_size (wordlist);
size              466 src/editor/spell.c             for (i = 0; i < size; i++)
size              479 src/editor/spell.c     return size;
size              694 src/editor/spell.c             if (edit->buffer.curs1 >= edit->buffer.size)
size             1467 src/editor/syntax.c     if (edit_options.syntax_highlighting && edit->rules != NULL && byte_index < edit->buffer.size)
size              169 src/filemanager/cmd.c compare_files (const vfs_path_t *vpath1, const vfs_path_t *vpath2, off_t size)
size              174 src/filemanager/cmd.c     if (size == 0)
size              224 src/filemanager/dir.c alloc_dir_copy (int size)
size              226 src/filemanager/dir.c     if (dir_copy.size < size)
size              231 src/filemanager/dir.c         dir_copy.list = g_new0 (file_entry_t, size);
size              232 src/filemanager/dir.c         dir_copy.size = size;
size              252 src/filemanager/dir.c     int size;
size              261 src/filemanager/dir.c     size = list->size + delta;
size              262 src/filemanager/dir.c     if (size <= 0)
size              264 src/filemanager/dir.c         size = DIR_LIST_MIN_SIZE;
size              268 src/filemanager/dir.c     if (size != list->size)
size              272 src/filemanager/dir.c         fe = g_try_renew (file_entry_t, list->list, size);
size              277 src/filemanager/dir.c         list->size = size;
size              280 src/filemanager/dir.c     list->len = clear_flag ? 0 : MIN (list->len, size);
size              305 src/filemanager/dir.c     if (list->len == list->size && !dir_list_grow (list, DIR_LIST_RESIZE_STEP))
size              536 src/filemanager/dir.c     dir_list_grow (list, DIR_LIST_MIN_SIZE - list->size);
size              556 src/filemanager/dir.c     list->size = 0;
size              568 src/filemanager/dir.c     if (list->size == 0 && !dir_list_grow (list, DIR_LIST_RESIZE_STEP))
size               50 src/filemanager/dir.h     int size;           /**< number of allocated elements in list (capacity) */
size             4578 src/filemanager/panel.c     panel->dir.size = DIR_LIST_MIN_SIZE;
size             4579 src/filemanager/panel.c     panel->dir.list = g_new (file_entry_t, panel->dir.size);
size             5367 src/filemanager/panel.c     else if (plist->len > panel->dir.size)
size             5368 src/filemanager/panel.c         dir_list_grow (&panel->dir, plist->len - panel->dir.size);
size             5476 src/filemanager/panel.c     if (panel->dir.len > plist->size)
size             5477 src/filemanager/panel.c         dir_list_grow (plist, panel->dir.len - plist->size);
size              145 src/usermenu.c extract_arg (char *p, char *arg, int size)
size              156 src/usermenu.c         if (np - p >= size)
size              160 src/usermenu.c         size -= np - p;
size             1309 src/vfs/extfs/extfs.c extfs_readlink (const vfs_path_t *vpath, char *buf, size_t size)
size             1329 src/vfs/extfs/extfs.c     if (size < len)
size             1330 src/vfs/extfs/extfs.c         len = size;
size              324 src/vfs/ftpfs/ftpfs_parse_ls.c         long long size;
size              329 src/vfs/ftpfs/ftpfs_parse_ls.c         if (sscanf (t, "%lld%n", &size, &n) == 1 && t[n] == '\0')
size              330 src/vfs/ftpfs/ftpfs_parse_ls.c             s->st_size = (off_t) size;
size              338 src/vfs/ftpfs/ftpfs_parse_ls.c         long long size;
size              341 src/vfs/ftpfs/ftpfs_parse_ls.c         if (sscanf (group_or_size, "%lld%n", &size, &n) == 1 && group_or_size[n] == '\0')
size              342 src/vfs/ftpfs/ftpfs_parse_ls.c             s->st_size = (off_t) size;
size              456 src/vfs/ftpfs/ftpfs_parse_ls.c     long long size;
size              504 src/vfs/ftpfs/ftpfs_parse_ls.c         if (sscanf (t, "%lld", &size) != 1)
size              506 src/vfs/ftpfs/ftpfs_parse_ls.c         s->st_size = (off_t) size;
size              548 src/vfs/ftpfs/ftpfs_parse_ls.c     off_t size = NO_SIZE;
size              581 src/vfs/ftpfs/ftpfs_parse_ls.c             size = size_ll;
size              625 src/vfs/ftpfs/ftpfs_parse_ls.c     if (size != NO_SIZE)
size              626 src/vfs/ftpfs/ftpfs_parse_ls.c         s->st_size = size;
size              657 src/vfs/ftpfs/ftpfs_parse_ls.c     off_t size = NO_SIZE;
size              710 src/vfs/ftpfs/ftpfs_parse_ls.c                 size = size_ll;
size              776 src/vfs/ftpfs/ftpfs_parse_ls.c     if (size != NO_SIZE)
size              777 src/vfs/ftpfs/ftpfs_parse_ls.c         s->st_size = size;
size              823 src/vfs/ftpfs/ftpfs_parse_ls.c     long long size;
size              838 src/vfs/ftpfs/ftpfs_parse_ls.c     if (sscanf (t, "%lld", &size) != 1)
size              906 src/vfs/ftpfs/ftpfs_parse_ls.c     s->st_size = (off_t) size;
size              926 src/vfs/ftpfs/ftpfs_parse_ls.c     long long size;
size              934 src/vfs/ftpfs/ftpfs_parse_ls.c     if (sscanf (t, "%lld", &size) != 1)
size              936 src/vfs/ftpfs/ftpfs_parse_ls.c     s->st_size = (off_t) size;
size             1020 src/vfs/ftpfs/ftpfs_parse_ls.c         long long size;
size             1033 src/vfs/ftpfs/ftpfs_parse_ls.c         if (sscanf (t, "%lld", &size) == 1)
size             1034 src/vfs/ftpfs/ftpfs_parse_ls.c             s->st_size = (off_t) size;
size              227 src/vfs/local/local.c local_readlink (const vfs_path_t *vpath, char *buf, size_t size)
size              232 src/vfs/local/local.c     return readlink (path, buf, size);
size              358 src/vfs/sfs/sfs.c sfs_readlink (const vfs_path_t *vpath, char *buf, size_t size)
size              360 src/vfs/sfs/sfs.c     return readlink (sfs_redirect (vpath), buf, size);
size              344 src/vfs/sftpfs/internal.c sftpfs_readlink (const vfs_path_t *vpath, char *buf, size_t size, GError **mcerror)
size              359 src/vfs/sftpfs/internal.c             libssh2_sftp_symlink_ex (super->sftp_session, fixfname->str, fixfname->len, buf, size,
size               84 src/vfs/sftpfs/internal.h int sftpfs_readlink (const vfs_path_t * vpath, char *buf, size_t size, GError ** mcerror);
size              315 src/vfs/sftpfs/sftpfs.c sftpfs_cb_readlink (const vfs_path_t *vpath, char *buf, size_t size)
size              320 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_readlink (vpath, buf, size, &mcerror);
size              158 src/vfs/tar/tar-internal.c tar_seek_archive (tar_super_t *archive, off_t size)
size              169 src/vfs/tar/tar-internal.c     if (size <= skipped)
size              173 src/vfs/tar/tar-internal.c     nrec = (size - skipped) / record_size;
size              579 src/vfs/tar/tar-internal.c tar_skip_file (tar_super_t *archive, off_t size)
size              584 src/vfs/tar/tar-internal.c     nblk = tar_seek_archive (archive, size);
size              586 src/vfs/tar/tar-internal.c         size -= nblk * BLOCKSIZE;
size              588 src/vfs/tar/tar-internal.c     while (size > 0)
size              595 src/vfs/tar/tar-internal.c         size -= BLOCKSIZE;
size               82 src/vfs/tar/tar-internal.h     char size[12];              /* 124 */
size              148 src/vfs/tar/tar-internal.h     char size[12];              /* 124 */
size              240 src/vfs/tar/tar-internal.h     size_t size;
size              316 src/vfs/tar/tar-internal.h gboolean tar_skip_file (tar_super_t * archive, off_t size);
size              326 src/vfs/tar/tar-internal.h                            off_t size);
size              373 src/vfs/tar/tar-sparse.c     off_t size;
size              381 src/vfs/tar/tar-sparse.c     if (sp.offset < 0 || sp.numbytes < 0 || ckd_add (&size, sp.offset, sp.numbytes)
size              382 src/vfs/tar/tar-sparse.c         || file->stat_info->stat.st_size < size || file->stat_info->archive_file_size < 0)
size              577 src/vfs/tar/tar-sparse.c             off_t size;
size              587 src/vfs/tar/tar-sparse.c             if (!decode_num (&u, nbuf, TYPE_MAXIMUM (off_t)) || ckd_add (&size, sp.offset, u)
size              588 src/vfs/tar/tar-sparse.c                 || file->stat_info->stat.st_size < size)
size               58 src/vfs/tar/tar-xheader.c     gboolean (*decoder) (struct tar_stat_info * st, const char *keyword, const char *arg, size_t size);
size               80 src/vfs/tar/tar-xheader.c                                size_t size);
size               82 src/vfs/tar/tar-xheader.c                                size_t size);
size               84 src/vfs/tar/tar-xheader.c                              size_t size);
size               87 src/vfs/tar/tar-xheader.c                                size_t size);
size               90 src/vfs/tar/tar-xheader.c                                   size_t size);
size               92 src/vfs/tar/tar-xheader.c                                size_t size);
size               94 src/vfs/tar/tar-xheader.c                                size_t size);
size               96 src/vfs/tar/tar-xheader.c                               size_t size);
size               98 src/vfs/tar/tar-xheader.c                               size_t size);
size              100 src/vfs/tar/tar-xheader.c                              size_t size);
size              103 src/vfs/tar/tar-xheader.c                                size_t size);
size              106 src/vfs/tar/tar-xheader.c                                      size_t size);
size              108 src/vfs/tar/tar-xheader.c                                       const char *arg, size_t size);
size              110 src/vfs/tar/tar-xheader.c                                       const char *arg, size_t size);
size              112 src/vfs/tar/tar-xheader.c                                      size_t size);
size              114 src/vfs/tar/tar-xheader.c                                           const char *arg, size_t size);
size              116 src/vfs/tar/tar-xheader.c                                        const char *arg, size_t size);
size              118 src/vfs/tar/tar-xheader.c                                          const char *arg, size_t size);
size              120 src/vfs/tar/tar-xheader.c                                     size_t size);
size              122 src/vfs/tar/tar-xheader.c                                  size_t size);
size              393 src/vfs/tar/tar-xheader.c dummy_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              398 src/vfs/tar/tar-xheader.c     (void) size;
size              406 src/vfs/tar/tar-xheader.c atime_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              410 src/vfs/tar/tar-xheader.c     (void) size;
size              422 src/vfs/tar/tar-xheader.c gid_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              426 src/vfs/tar/tar-xheader.c     (void) size;
size              439 src/vfs/tar/tar-xheader.c gname_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              442 src/vfs/tar/tar-xheader.c     (void) size;
size              452 src/vfs/tar/tar-xheader.c linkpath_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              455 src/vfs/tar/tar-xheader.c     (void) size;
size              464 src/vfs/tar/tar-xheader.c ctime_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              468 src/vfs/tar/tar-xheader.c     (void) size;
size              480 src/vfs/tar/tar-xheader.c mtime_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              484 src/vfs/tar/tar-xheader.c     (void) size;
size              496 src/vfs/tar/tar-xheader.c path_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              499 src/vfs/tar/tar-xheader.c     (void) size;
size              510 src/vfs/tar/tar-xheader.c size_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              514 src/vfs/tar/tar-xheader.c     (void) size;
size              526 src/vfs/tar/tar-xheader.c uid_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              530 src/vfs/tar/tar-xheader.c     (void) size;
size              543 src/vfs/tar/tar-xheader.c uname_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              546 src/vfs/tar/tar-xheader.c     (void) size;
size              556 src/vfs/tar/tar-xheader.c dumpdir_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              561 src/vfs/tar/tar-xheader.c     st->dumpdir = g_memdup2 (arg, size);
size              563 src/vfs/tar/tar-xheader.c     st->dumpdir = g_memdup (arg, size);
size              581 src/vfs/tar/tar-xheader.c                                     size_t size), void *data)
size              592 src/vfs/tar/tar-xheader.c     len_max = xhdr->buffer + xhdr->size - start;
size              634 src/vfs/tar/tar-xheader.c decg (void *data, const char *keyword, const char *value, size_t size)
size              639 src/vfs/tar/tar-xheader.c     (void) size;
size              644 src/vfs/tar/tar-xheader.c         if (!tab->decoder (data, keyword, value, size))
size              656 src/vfs/tar/tar-xheader.c decx (void *data, const char *keyword, const char *value, size_t size)
size              663 src/vfs/tar/tar-xheader.c     (void) size;
size              671 src/vfs/tar/tar-xheader.c sparse_path_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              674 src/vfs/tar/tar-xheader.c     (void) size;
size              683 src/vfs/tar/tar-xheader.c sparse_major_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              687 src/vfs/tar/tar-xheader.c     (void) size;
size              699 src/vfs/tar/tar-xheader.c sparse_minor_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              703 src/vfs/tar/tar-xheader.c     (void) size;
size              715 src/vfs/tar/tar-xheader.c sparse_size_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              719 src/vfs/tar/tar-xheader.c     (void) size;
size              733 src/vfs/tar/tar-xheader.c                           size_t size)
size              737 src/vfs/tar/tar-xheader.c     (void) size;
size              753 src/vfs/tar/tar-xheader.c sparse_offset_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              758 src/vfs/tar/tar-xheader.c     (void) size;
size              772 src/vfs/tar/tar-xheader.c                          size_t size)
size              777 src/vfs/tar/tar-xheader.c     (void) size;
size              791 src/vfs/tar/tar-xheader.c sparse_map_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              797 src/vfs/tar/tar-xheader.c     (void) size;
size              902 src/vfs/tar/tar-xheader.c tar_xheader_read (tar_super_t *archive, struct xheader *xhdr, union block *p, off_t size)
size              907 src/vfs/tar/tar-xheader.c     size = MAX (0, size);
size              908 src/vfs/tar/tar-xheader.c     if (ckd_add (&size_plus_1, size, BLOCKSIZE + 1))
size              910 src/vfs/tar/tar-xheader.c     size = size_plus_1 - 1;
size              911 src/vfs/tar/tar-xheader.c     xhdr->size = size;
size              913 src/vfs/tar/tar-xheader.c     xhdr->buffer[size] = '\0';
size              922 src/vfs/tar/tar-xheader.c         len = MIN (size, BLOCKSIZE);
size              929 src/vfs/tar/tar-xheader.c         size -= len;
size              931 src/vfs/tar/tar-xheader.c     while (size > 0);
size              960 src/vfs/tar/tar-xheader.c     xhdr->size = 0;
size              628 src/vfs/tar/tar.c             current_stat_info.stat.st_size = OFF_FROM_HEADER (header->header.size);
size              642 src/vfs/tar/tar.c             off_t size;
size              650 src/vfs/tar/tar.c             if (ckd_add (&size, current_stat_info.stat.st_size, 2 * BLOCKSIZE - 1))
size              657 src/vfs/tar/tar.c             size -= size % BLOCKSIZE;
size              659 src/vfs/tar/tar.c             header_copy = g_malloc (size + 1);
size              676 src/vfs/tar/tar.c             for (size -= BLOCKSIZE; size > 0; size -= written)
size              690 src/vfs/tar/tar.c                 if ((off_t) written > size)
size              691 src/vfs/tar/tar.c                     written = (size_t) size;
size              705 src/vfs/tar/tar.c                 (arch, &current_stat_info.xhdr, header, OFF_FROM_HEADER (header->header.size)))
size              721 src/vfs/tar/tar.c             tar_xheader_read (arch, &xhdr, header, OFF_FROM_HEADER (header->header.size));
size               82 src/vfs/undelfs/undelfs.c     unsigned long size;
size              106 src/vfs/undelfs/undelfs.c     off_t size;
size              302 src/vfs/undelfs/undelfs.c             delarray[num_delarray].size = inode.i_size;
size              485 src/vfs/undelfs/undelfs.c         p->size = delarray[i].size;
size              590 src/vfs/undelfs/undelfs.c     if (p->pos + (off_t) p->count > p->size)
size              592 src/vfs/undelfs/undelfs.c         p->count = p->size - p->pos;
size              633 src/vfs/undelfs/undelfs.c     buf->st_size = delarray[inode_index].size;
size              367 src/viewer/internal.h mcview_already_loaded (off_t offset, off_t idx, size_t size)
size              369 src/viewer/internal.h     return (offset <= idx && idx - offset < (off_t) size);
size               56 tests/src/filemanager/exec_get_export_variables_ext.c     current_panel->dir.size = DIR_LIST_MIN_SIZE;
size               57 tests/src/filemanager/exec_get_export_variables_ext.c     current_panel->dir.list = g_new0 (file_entry_t, current_panel->dir.size);