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              104 lib/strutil/strutil.c _str_convert (GIConv coder, const char *string, int size, GString * buffer)
size              125 lib/strutil/strutil.c     if (size < 0)
size              126 lib/strutil/strutil.c         size = strlen (string);
size              130 lib/strutil/strutil.c         if (left < size)
size              131 lib/strutil/strutil.c             size = left;
size              134 lib/strutil/strutil.c     left = size;
size              178 lib/strutil/strutil.c                 size -= (bytes_read + 1);
size              299 lib/strutil/strutil.c str_nconvert (GIConv coder, const char *string, int size, GString * buffer)
size              301 lib/strutil/strutil.c     return _str_convert (coder, string, size, buffer);
size              330 lib/strutil/strutil.c str_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer)
size              332 lib/strutil/strutil.c     return used_class.vfs_convert_to (coder, string, size, buffer);
size              647 lib/strutil/strutil.c str_is_valid_char (const char *ch, size_t size)
size              649 lib/strutil/strutil.c     return used_class.is_valid_char (ch, size);
size              703 lib/strutil/strutil.c str_length2 (const char *text, int size)
size              705 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              236 lib/strutil/strutil8bit.c     return (size >= 0) ? MIN (strlen (text), (gsize) size) : strlen (text);
size              275 lib/strutil/strutil8bit.c str_8bit_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer)
size              280 lib/strutil/strutil8bit.c         g_string_append_len (buffer, string, size);
size              282 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              209 lib/strutil/strutilascii.c     return (size >= 0) ? MIN (strlen (text), (gsize) size) : strlen (text);
size              227 lib/strutil/strutilascii.c str_ascii_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer)
size              230 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              669 lib/strutil/strutilutf8.c utf8_tool_compose (char *buffer, size_t size)
size              674 lib/strutil/strutilutf8.c     g_strlcpy (buffer, composed, size);
size             1349 lib/strutil/strutilutf8.c                          gchar * (*keygen) (const gchar * text, gssize size))
size              351 lib/util.c     size_trunc (uintmax_t size, gboolean use_si)
size              357 lib/util.c         if (size > 999999999UL)
size              362 lib/util.c             if (size / divisor > 999999999UL)
size              367 lib/util.c                 if (size / divisor > 999999999UL)
size              374 lib/util.c         g_snprintf (x, sizeof (x), "%.0f %s", 1.0 * size / divisor, xtra);
size              381 lib/util.c     size_trunc_sep (uintmax_t size, gboolean use_si)
size              388 lib/util.c         p = y = size_trunc (size, use_si);
size              423 lib/util.c     size_trunc_len (char *buffer, unsigned int len, uintmax_t size, int units, gboolean use_si)
size              490 lib/util.c                 size_remain = ((size % 125) * 1024) / 1000; /* size mod 125, recalculated */
size              491 lib/util.c                 size /= 125;        /* 128/125 = 1024/1000 */
size              492 lib/util.c                 size *= 128;        /* This will convert size from multiple of 1024 to multiple of 1000 */
size              493 lib/util.c                 size += size_remain;        /* Re-add remainder lost by division/multiplication */
size              498 lib/util.c             if (size == 0)
size              513 lib/util.c             if (size < power10[len - (j > 0 ? 1 : 0)])
size              515 lib/util.c                 g_snprintf (buffer, len + 1, "%" PRIuMAX "%s", size, sfx[j]);
size              521 lib/util.c                 size = (size + 500) / 1000;
size              523 lib/util.c                 size = (size + 512) >> 10;
size              150 lib/util.h     const char *size_trunc (uintmax_t size, gboolean use_si);
size              155 lib/util.h     const char *size_trunc_sep (uintmax_t size, gboolean use_si);
size              161 lib/util.h     void size_trunc_len (char *buffer, unsigned int len, uintmax_t size, int units, gboolean use_si);
size              118 lib/utilunix.c i_cache_match (int id, int_cache * cache, int size)
size              122 lib/utilunix.c     for (i = 0; i < size; i++)
size              131 lib/utilunix.c i_cache_add (int id, int_cache * cache, int size, char *text, int *last)
size              136 lib/utilunix.c     *last = ((*last) + 1) % size;
size              637 lib/utilunix.c     size_t size, i;
size              645 lib/utilunix.c     size = ps->len - ps->pos;
size              647 lib/utilunix.c     if (size == 0)
size              656 lib/utilunix.c     for (i = 0; i < size && !(s[i] == '\0' || (s[i] == '\n' && !escape)); i++)
size              659 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              620 lib/vfs/direntry.c     off_t size = file->ino->st.st_size;
size              641 lib/vfs/direntry.c         offset += size;
size              648 lib/vfs/direntry.c     else if (offset < size)
size              651 lib/vfs/direntry.c         file->pos = size;
size             1668 lib/vfs/direntry.c vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd)
size             1677 lib/vfs/direntry.c     for (i = 0; i < size - 1; i++)
size             1701 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              178 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              980 lib/widget/input_complete.c insert_text (WInput * in, char *text, ssize_t size)
size              988 lib/widget/input_complete.c     if (size < 0)
size              989 lib/widget/input_complete.c         size = (ssize_t) text_len;
size              991 lib/widget/input_complete.c         size = MIN (size, (ssize_t) text_len);
size              993 lib/widget/input_complete.c     new_size = size + start - end;
size             1018 lib/widget/input_complete.c     g_string_overwrite_len (in->buffer, start, text, size);
size              263 src/background.c         int size;
size              265 src/background.c         if (read (fd, &size, sizeof (size)) != sizeof (size))
size              268 src/background.c         data[i] = g_malloc (size + 1);
size              270 src/background.c         if (read (fd, data[i], size) != size)
size              273 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              330 src/diffviewer/ydiff.c dview_fgets (char *buf, size_t size, FBUF * fs)
size              339 src/diffviewer/ydiff.c         for (i = fs->pos; j < size && i < fs->len && !stop; i++, j++)
size              347 src/diffviewer/ydiff.c         if (j == size || stop)
size              435 src/diffviewer/ydiff.c dview_fwrite (FBUF * fs, const char *buf, size_t size)
size              439 src/diffviewer/ydiff.c     rv = write (fs->fd, buf, size);
size              222 src/editor/edit.c     ret = (edit_buffer_read_file (buf, file, buf->size, &rsm, &aborted) == buf->size);
size              720 src/editor/edit.c         edit->line_offsets[2] = edit_buffer_get_bol (&edit->buffer, edit->buffer.size);
size              873 src/editor/edit.c         edit->start_display = edit->buffer.size;
size             1010 src/editor/edit.c         if (edit->buffer.curs1 >= edit->buffer.size)
size             1123 src/editor/edit.c     if (edit->buffer.curs1 > 0 && edit->buffer.curs1 + 1 < edit->buffer.size
size             1140 src/editor/edit.c     while (edit->buffer.curs1 < edit->buffer.size)
size             1580 src/editor/edit.c         if (q >= edit->buffer.size || q < 0)
size             1766 src/editor/edit.c                     if (p == edit->buffer.size)
size             1768 src/editor/edit.c                         edit_cursor_move (edit, edit->buffer.size - edit->buffer.curs1);
size             1890 src/editor/edit.c         for (i = 0; i < edit->buffer.size; i++)
size             1897 src/editor/edit.c     for (i = 0; i < edit->buffer.size; i++)
size             1978 src/editor/edit.c     return edit->buffer.size;
size             2818 src/editor/edit.c         q = edit->buffer.size + 2;
size             3230 src/editor/edit.c     for (; pos < edit->buffer.size; pos++)
size             3241 src/editor/edit.c     edit->mark2 = MIN (pos + 1, edit->buffer.size);
size             3823 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              511 src/editor/editbuffer.c     buf->size++;
size              543 src/editor/editbuffer.c     buf->size++;
size              581 src/editor/editbuffer.c     buf->size--;
size              621 src/editor/editbuffer.c     buf->size--;
size              653 src/editor/editbuffer.c         if (next > buf->size)
size              696 src/editor/editbuffer.c edit_buffer_read_file (edit_buffer_t * buf, int fd, off_t size,
size              709 src/editor/editbuffer.c     buf->curs2 = size;
size              888 src/editor/editbuffer.c     if (buf->size == 0)
size              890 src/editor/editbuffer.c     else if (offset >= buf->size)
size              893 src/editor/editbuffer.c         percent = offset / (buf->size / 100);
size              895 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             1282 src/editor/editcmd.c     off_t size;
size             1289 src/editor/editcmd.c     copy_buf = edit_get_block (edit, start_mark, end_mark, &size);
size             1300 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, size, col_delta, &mark1, &mark2, &c1, &c2);
size             1304 src/editor/editcmd.c         int size_orig = size;
size             1306 src/editor/editcmd.c         while (size-- != 0)
size             1307 src/editor/editcmd.c             edit_insert_ahead (edit, copy_buf[size]);
size             1348 src/editor/editcmd.c         off_t size;
size             1377 src/editor/editcmd.c         copy_buf = edit_get_block (edit, start_mark, end_mark, &size);
size             1393 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              447 src/editor/editsearch.c     off_t end_mark = edit->buffer.size;
size              466 src/editor/editsearch.c                 edit_calculate_start_of_next_line (&edit->buffer, start_mark, edit->buffer.size,
size              470 src/editor/editsearch.c             && (end_mark - 1 != edit->buffer.size
size              612 src/editor/editsearch.c         while (mc_search_run (edit->search, (void *) &esm, q, edit->buffer.size, &len))
size              917 src/editor/editsearch.c         if (edit->search_start >= 0 && edit->search_start < edit->buffer.size)
size              997 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              499 src/editor/spell.c     unsigned int size = 0;
size              512 src/editor/spell.c             size = mc_aspell_word_list_size (wordlist);
size              514 src/editor/spell.c             for (i = 0; i < size; i++)
size              527 src/editor/spell.c     return size;
size              669 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              176 src/filemanager/cmd.c compare_files (const vfs_path_t * vpath1, const vfs_path_t * vpath2, off_t size)
size              181 src/filemanager/cmd.c     if (size == 0)
size              196 src/filemanager/cmd.c             data1 = mmap (0, size, PROT_READ, MAP_FILE | MAP_PRIVATE, file1, 0);
size              201 src/filemanager/cmd.c                 data2 = mmap (0, size, PROT_READ, MAP_FILE | MAP_PRIVATE, file2, 0);
size              205 src/filemanager/cmd.c                     result = memcmp (data1, data2, size);
size              206 src/filemanager/cmd.c                     munmap (data2, size);
size              208 src/filemanager/cmd.c                 munmap (data1, size);
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             4489 src/filemanager/panel.c     panel->dir.size = DIR_LIST_MIN_SIZE;
size             4490 src/filemanager/panel.c     panel->dir.list = g_new (file_entry_t, panel->dir.size);
size             5229 src/filemanager/panel.c     else if (plist->len > panel->dir.size)
size             5230 src/filemanager/panel.c         dir_list_grow (&panel->dir, plist->len - panel->dir.size);
size             5338 src/filemanager/panel.c     if (panel->dir.len > plist->size)
size             5339 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             1294 src/vfs/extfs/extfs.c extfs_readlink (const vfs_path_t * vpath, char *buf, size_t size)
size             1314 src/vfs/extfs/extfs.c     if (size < len)
size             1315 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              235 src/vfs/local/local.c local_readlink (const vfs_path_t * vpath, char *buf, size_t size)
size              240 src/vfs/local/local.c     return readlink (path, buf, size);
size              364 src/vfs/sfs/sfs.c sfs_readlink (const vfs_path_t * vpath, char *buf, size_t size)
size              366 src/vfs/sfs/sfs.c     return readlink (sfs_redirect (vpath), buf, size);
size              345 src/vfs/sftpfs/internal.c sftpfs_readlink (const vfs_path_t * vpath, char *buf, size_t size, GError ** mcerror)
size              360 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              141 src/vfs/tar/tar-internal.c tar_seek_archive (tar_super_t * archive, off_t size)
size              148 src/vfs/tar/tar-internal.c     if (size <= skipped)
size              152 src/vfs/tar/tar-internal.c     nrec = (size - skipped) / record_size;
size              467 src/vfs/tar/tar-internal.c tar_skip_file (tar_super_t * archive, off_t size)
size              472 src/vfs/tar/tar-internal.c     nblk = tar_seek_archive (archive, size);
size              474 src/vfs/tar/tar-internal.c         size -= nblk * BLOCKSIZE;
size              476 src/vfs/tar/tar-internal.c     while (size > 0)
size              483 src/vfs/tar/tar-internal.c         size -= BLOCKSIZE;
size               81 src/vfs/tar/tar-internal.h     char size[12];              /* 124 */
size              147 src/vfs/tar/tar-internal.h     char size[12];              /* 124 */
size              239 src/vfs/tar/tar-internal.h     size_t size;
size              314 src/vfs/tar/tar-internal.h gboolean tar_skip_file (tar_super_t * archive, off_t size);
size              324 src/vfs/tar/tar-internal.h                            off_t size);
size               59 src/vfs/tar/tar-xheader.c     gboolean (*decoder) (struct tar_stat_info * st, const char *keyword, const char *arg, size_t size);
size               81 src/vfs/tar/tar-xheader.c                                size_t size);
size               83 src/vfs/tar/tar-xheader.c                                size_t size);
size               85 src/vfs/tar/tar-xheader.c                              size_t size);
size               88 src/vfs/tar/tar-xheader.c                                size_t size);
size               91 src/vfs/tar/tar-xheader.c                                   size_t size);
size               93 src/vfs/tar/tar-xheader.c                                size_t size);
size               95 src/vfs/tar/tar-xheader.c                                size_t size);
size               97 src/vfs/tar/tar-xheader.c                               size_t size);
size               99 src/vfs/tar/tar-xheader.c                               size_t size);
size              101 src/vfs/tar/tar-xheader.c                              size_t size);
size              104 src/vfs/tar/tar-xheader.c                                size_t size);
size              107 src/vfs/tar/tar-xheader.c                                      size_t size);
size              109 src/vfs/tar/tar-xheader.c                                       const char *arg, size_t size);
size              111 src/vfs/tar/tar-xheader.c                                       const char *arg, size_t size);
size              113 src/vfs/tar/tar-xheader.c                                      size_t size);
size              115 src/vfs/tar/tar-xheader.c                                           const char *arg, size_t size);
size              117 src/vfs/tar/tar-xheader.c                                        const char *arg, size_t size);
size              119 src/vfs/tar/tar-xheader.c                                          const char *arg, size_t size);
size              121 src/vfs/tar/tar-xheader.c                                     size_t size);
size              123 src/vfs/tar/tar-xheader.c                                  size_t size);
size              481 src/vfs/tar/tar-xheader.c dummy_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              486 src/vfs/tar/tar-xheader.c     (void) size;
size              494 src/vfs/tar/tar-xheader.c atime_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              498 src/vfs/tar/tar-xheader.c     (void) size;
size              510 src/vfs/tar/tar-xheader.c gid_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              527 src/vfs/tar/tar-xheader.c gname_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              540 src/vfs/tar/tar-xheader.c linkpath_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              543 src/vfs/tar/tar-xheader.c     (void) size;
size              552 src/vfs/tar/tar-xheader.c ctime_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              556 src/vfs/tar/tar-xheader.c     (void) size;
size              568 src/vfs/tar/tar-xheader.c mtime_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              572 src/vfs/tar/tar-xheader.c     (void) size;
size              584 src/vfs/tar/tar-xheader.c path_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              587 src/vfs/tar/tar-xheader.c     (void) size;
size              598 src/vfs/tar/tar-xheader.c size_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              602 src/vfs/tar/tar-xheader.c     (void) size;
size              614 src/vfs/tar/tar-xheader.c uid_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              618 src/vfs/tar/tar-xheader.c     (void) size;
size              631 src/vfs/tar/tar-xheader.c uname_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              634 src/vfs/tar/tar-xheader.c     (void) size;
size              644 src/vfs/tar/tar-xheader.c dumpdir_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              649 src/vfs/tar/tar-xheader.c     st->dumpdir = g_memdup2 (arg, size);
size              651 src/vfs/tar/tar-xheader.c     st->dumpdir = g_memdup (arg, size);
size              669 src/vfs/tar/tar-xheader.c                                     size_t size), void *data)
size              680 src/vfs/tar/tar-xheader.c     len_max = xhdr->buffer + xhdr->size - start;
size              720 src/vfs/tar/tar-xheader.c decg (void *data, const char *keyword, const char *value, size_t size)
size              725 src/vfs/tar/tar-xheader.c     (void) size;
size              730 src/vfs/tar/tar-xheader.c         if (!tab->decoder (data, keyword, value, size))
size              742 src/vfs/tar/tar-xheader.c decx (void *data, const char *keyword, const char *value, size_t size)
size              749 src/vfs/tar/tar-xheader.c     (void) size;
size              757 src/vfs/tar/tar-xheader.c sparse_path_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              760 src/vfs/tar/tar-xheader.c     (void) size;
size              769 src/vfs/tar/tar-xheader.c sparse_major_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              773 src/vfs/tar/tar-xheader.c     (void) size;
size              785 src/vfs/tar/tar-xheader.c sparse_minor_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              789 src/vfs/tar/tar-xheader.c     (void) size;
size              801 src/vfs/tar/tar-xheader.c sparse_size_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              805 src/vfs/tar/tar-xheader.c     (void) size;
size              819 src/vfs/tar/tar-xheader.c                           size_t size)
size              823 src/vfs/tar/tar-xheader.c     (void) size;
size              839 src/vfs/tar/tar-xheader.c sparse_offset_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              844 src/vfs/tar/tar-xheader.c     (void) size;
size              858 src/vfs/tar/tar-xheader.c                          size_t size)
size              863 src/vfs/tar/tar-xheader.c     (void) size;
size              877 src/vfs/tar/tar-xheader.c sparse_map_decoder (struct tar_stat_info *st, const char *keyword, const char *arg, size_t size)
size              883 src/vfs/tar/tar-xheader.c     (void) size;
size              992 src/vfs/tar/tar-xheader.c tar_xheader_read (tar_super_t * archive, struct xheader * xhdr, union block * p, off_t size)
size              996 src/vfs/tar/tar-xheader.c     size = MAX (0, size);
size              997 src/vfs/tar/tar-xheader.c     size += BLOCKSIZE;
size              999 src/vfs/tar/tar-xheader.c     xhdr->size = size;
size             1000 src/vfs/tar/tar-xheader.c     xhdr->buffer = g_malloc (size + 1);
size             1001 src/vfs/tar/tar-xheader.c     xhdr->buffer[size] = '\0';
size             1010 src/vfs/tar/tar-xheader.c         len = MIN (size, BLOCKSIZE);
size             1017 src/vfs/tar/tar-xheader.c         size -= len;
size             1019 src/vfs/tar/tar-xheader.c     while (size > 0);
size             1048 src/vfs/tar/tar-xheader.c     xhdr->size = 0;
size              625 src/vfs/tar/tar.c             current_stat_info.stat.st_size = OFF_FROM_HEADER (header->header.size);
size              641 src/vfs/tar/tar.c             off_t size;
size              650 src/vfs/tar/tar.c             size = name_size + BLOCKSIZE;
size              652 src/vfs/tar/tar.c                 size += BLOCKSIZE - n;
size              653 src/vfs/tar/tar.c             if ((off_t) name_size != current_stat_info.stat.st_size || size < (off_t) name_size)
size              660 src/vfs/tar/tar.c             header_copy = g_malloc (size + 1);
size              677 src/vfs/tar/tar.c             for (size -= BLOCKSIZE; size > 0; size -= written)
size              691 src/vfs/tar/tar.c                 if ((off_t) written > size)
size              692 src/vfs/tar/tar.c                     written = (size_t) size;
size              706 src/vfs/tar/tar.c                 (arch, &current_stat_info.xhdr, header, OFF_FROM_HEADER (header->header.size)))
size              722 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);