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 176 lib/strutil/strutil.c size -= (bytes_read + 1); size 297 lib/strutil/strutil.c str_nconvert (GIConv coder, const char *string, int size, GString * buffer) size 299 lib/strutil/strutil.c return _str_convert (coder, string, size, buffer); size 328 lib/strutil/strutil.c str_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer) size 330 lib/strutil/strutil.c return used_class.vfs_convert_to (coder, string, size, buffer); size 645 lib/strutil/strutil.c str_is_valid_char (const char *ch, size_t size) size 647 lib/strutil/strutil.c return used_class.is_valid_char (ch, size); size 701 lib/strutil/strutil.c str_length2 (const char *text, int size) size 703 lib/strutil/strutil.c return used_class.length2 (text, size); size 97 lib/strutil/strutil8bit.c str_8bit_is_valid_char (const char *ch, size_t size) size 100 lib/strutil/strutil8bit.c (void) size; size 232 lib/strutil/strutil8bit.c str_8bit_length2 (const char *text, int size) size 234 lib/strutil/strutil8bit.c return (size >= 0) ? MIN (strlen (text), (gsize) size) : strlen (text); size 273 lib/strutil/strutil8bit.c str_8bit_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer) size 278 lib/strutil/strutil8bit.c g_string_append_len (buffer, string, size); size 280 lib/strutil/strutil8bit.c result = str_nconvert (coder, string, size, buffer); size 70 lib/strutil/strutilascii.c str_ascii_is_valid_char (const char *ch, size_t size) size 73 lib/strutil/strutilascii.c (void) size; size 205 lib/strutil/strutilascii.c str_ascii_length2 (const char *text, int size) size 207 lib/strutil/strutilascii.c return (size >= 0) ? MIN (strlen (text), (gsize) size) : strlen (text); size 225 lib/strutil/strutilascii.c str_ascii_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer) size 228 lib/strutil/strutilascii.c g_string_append_len (buffer, string, size); size 97 lib/strutil/strutilutf8.c str_utf8_is_valid_char (const char *ch, size_t size) size 99 lib/strutil/strutilutf8.c switch (g_utf8_get_char_validated (ch, size)) size 351 lib/strutil/strutilutf8.c str_utf8_length2 (const char *text, int size) size 358 lib/strutil/strutilutf8.c while (!g_utf8_validate (start, -1, &end) && start[0] != '\0' && size > 0) size 362 lib/strutil/strutilutf8.c result += g_utf8_strlen (start, MIN (end - start, size)); size 363 lib/strutil/strutilutf8.c size -= end - start; size 365 lib/strutil/strutilutf8.c result += (size > 0); size 366 lib/strutil/strutilutf8.c size--; size 371 lib/strutil/strutilutf8.c result = g_utf8_strlen (text, size); size 372 lib/strutil/strutilutf8.c else if (start[0] != '\0' && start != end && size > 0) size 373 lib/strutil/strutilutf8.c result += g_utf8_strlen (start, MIN (end - start, size)); size 424 lib/strutil/strutilutf8.c str_utf8_vfs_convert_to (GIConv coder, const char *string, int size, GString * buffer) size 429 lib/strutil/strutilutf8.c g_string_append_len (buffer, string, size); size 431 lib/strutil/strutilutf8.c result = str_nconvert (coder, string, size, buffer); size 667 lib/strutil/strutilutf8.c utf8_tool_compose (char *buffer, size_t size) size 672 lib/strutil/strutilutf8.c g_strlcpy (buffer, composed, size); size 1347 lib/strutil/strutilutf8.c gchar * (*keygen) (const gchar * text, gssize size)) size 345 lib/util.c size_trunc (uintmax_t size, gboolean use_si) size 351 lib/util.c if (size > 999999999UL) size 356 lib/util.c if (size / divisor > 999999999UL) size 361 lib/util.c if (size / divisor > 999999999UL) size 368 lib/util.c g_snprintf (x, sizeof (x), "%.0f %s", 1.0 * size / divisor, xtra); size 375 lib/util.c size_trunc_sep (uintmax_t size, gboolean use_si) size 382 lib/util.c p = y = size_trunc (size, use_si); size 417 lib/util.c size_trunc_len (char *buffer, unsigned int len, uintmax_t size, int units, gboolean use_si) size 484 lib/util.c size_remain = ((size % 125) * 1024) / 1000; /* size mod 125, recalculated */ size 485 lib/util.c size /= 125; /* 128/125 = 1024/1000 */ size 486 lib/util.c size *= 128; /* This will convert size from multiple of 1024 to multiple of 1000 */ size 487 lib/util.c size += size_remain; /* Re-add remainder lost by division/multiplication */ size 492 lib/util.c if (size == 0) size 507 lib/util.c if (size < power10[len - (j > 0 ? 1 : 0)]) size 509 lib/util.c g_snprintf (buffer, len + 1, "%" PRIuMAX "%s", size, sfx[j]); size 515 lib/util.c size = (size + 500) / 1000; size 517 lib/util.c size = (size + 512) >> 10; size 170 lib/util.h const char *size_trunc (uintmax_t size, gboolean use_si); size 175 lib/util.h const char *size_trunc_sep (uintmax_t size, gboolean use_si); size 181 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 635 lib/utilunix.c size_t size, i; size 643 lib/utilunix.c size = ps->len - ps->pos; size 645 lib/utilunix.c if (size == 0) size 654 lib/utilunix.c for (i = 0; i < size && !(s[i] == '\0' || (s[i] == '\n' && !escape)); i++) size 657 lib/utilunix.c if (i != size && s[i] == '\n') size 522 lib/vfs/direntry.c vfs_s_readlink (const vfs_path_t * vpath, char *buf, size_t size) size 547 lib/vfs/direntry.c if (size < len) size 548 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 1666 lib/vfs/direntry.c vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd) size 1675 lib/vfs/direntry.c for (i = 0; i < size - 1; i++) size 1699 lib/vfs/direntry.c buffer[size - 1] = '\0'; size 119 lib/vfs/vfs.c _vfs_translate_path (const char *path, int size, GIConv defcnv, GString * buffer) size 125 lib/vfs/vfs.c if (size == 0) size 128 lib/vfs/vfs.c size = (size > 0) ? size : (signed int) strlen (path); size 131 lib/vfs/vfs.c semi = g_strrstr_len (path, size, VFS_ENCODING_PREFIX); size 151 lib/vfs/vfs.c if (slash - path >= size) size 157 lib/vfs/vfs.c if (semi + ms > path + size) size 158 lib/vfs/vfs.c ms = path + size - semi; size 168 lib/vfs/vfs.c state = str_vfs_convert_to (coder, slash + 1, path + size - slash - 1, buffer); size 179 lib/vfs/vfs.c state = str_vfs_convert_to (defcnv, path, size, buffer); size 182 lib/vfs/vfs.c (void) size; size 174 lib/vfs/vfs.h int (*readlink) (const vfs_path_t * vpath, char *buf, size_t size); size 190 lib/vfs/xdirentry.h int vfs_s_get_line_interruptible (struct vfs_class *me, char *buffer, int size, int fd); size 978 lib/widget/input_complete.c insert_text (WInput * in, char *text, ssize_t size) size 986 lib/widget/input_complete.c if (size < 0) size 987 lib/widget/input_complete.c size = (ssize_t) text_len; size 989 lib/widget/input_complete.c size = MIN (size, (ssize_t) text_len); size 991 lib/widget/input_complete.c new_size = size + start - end; size 1016 lib/widget/input_complete.c g_string_overwrite_len (in->buffer, start, text, size); size 260 src/background.c int size; size 262 src/background.c if (read (fd, &size, sizeof (size)) != sizeof (size)) size 265 src/background.c data[i] = g_malloc (size + 1); size 267 src/background.c if (read (fd, data[i], size) != size) size 270 src/background.c data[i][size] = '\0'; /* NULL terminate the blocks (they could be strings) */ size 286 src/cons.handler.c screen_info.size = sizeof (screen_info); size 323 src/diffviewer/ydiff.c f_gets (char *buf, size_t size, FBUF * fs) size 332 src/diffviewer/ydiff.c for (i = fs->pos; j < size && i < fs->len && !stop; i++, j++) size 340 src/diffviewer/ydiff.c if (j == size || stop) size 428 src/diffviewer/ydiff.c f_write (FBUF * fs, const char *buf, size_t size) size 432 src/diffviewer/ydiff.c rv = write (fs->fd, buf, size); size 212 src/editor/edit.c ret = (edit_buffer_read_file (buf, file, buf->size, &rsm, &aborted) == buf->size); size 698 src/editor/edit.c edit->line_offsets[2] = edit_buffer_get_bol (&edit->buffer, edit->buffer.size); size 851 src/editor/edit.c edit->start_display = edit->buffer.size; size 975 src/editor/edit.c if (edit->buffer.curs1 >= edit->buffer.size) size 1086 src/editor/edit.c if (edit->buffer.curs1 > 0 && edit->buffer.curs1 + 1 < edit->buffer.size size 1103 src/editor/edit.c while (edit->buffer.curs1 < edit->buffer.size) size 1541 src/editor/edit.c if (q >= edit->buffer.size || q < 0) size 1727 src/editor/edit.c if (p == edit->buffer.size) size 1729 src/editor/edit.c edit_cursor_move (edit, edit->buffer.size - edit->buffer.curs1); size 1847 src/editor/edit.c for (i = 0; i < edit->buffer.size; i++) size 1854 src/editor/edit.c for (i = 0; i < edit->buffer.size; i++) size 1935 src/editor/edit.c return edit->buffer.size; size 2769 src/editor/edit.c q = edit->buffer.size + 2; size 3109 src/editor/edit.c for (; pos < edit->buffer.size; pos++) size 3120 src/editor/edit.c edit->mark2 = MIN (pos + 1, edit->buffer.size); size 3702 src/editor/edit.c edit_set_markers (edit, 0, edit->buffer.size, 0, 0); size 145 src/editor/editbuffer.c edit_buffer_init (edit_buffer_t * buf, off_t size) size 153 src/editor/editbuffer.c buf->size = size; size 335 src/editor/editbuffer.c last = MIN (last, buf->size); size 379 src/editor/editbuffer.c if (current >= buf->size) size 380 src/editor/editbuffer.c return buf->size; size 515 src/editor/editbuffer.c buf->size++; size 547 src/editor/editbuffer.c buf->size++; size 586 src/editor/editbuffer.c buf->size--; size 627 src/editor/editbuffer.c buf->size--; size 659 src/editor/editbuffer.c if (next > buf->size) size 702 src/editor/editbuffer.c edit_buffer_read_file (edit_buffer_t * buf, int fd, off_t size, size 715 src/editor/editbuffer.c buf->curs2 = size; size 894 src/editor/editbuffer.c if (buf->size == 0) size 896 src/editor/editbuffer.c else if (offset >= buf->size) size 899 src/editor/editbuffer.c percent = offset / (buf->size / 100); size 901 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 292 src/editor/editcmd.c if (filelen != edit->buffer.size) size 330 src/editor/editcmd.c if (filelen != edit->buffer.size) size 376 src/editor/editcmd.c return !(option_check_nl_at_eof && buf->size > 0 size 377 src/editor/editcmd.c && edit_buffer_get_byte (buf, buf->size - 1) != '\n' size 659 src/editor/editcmd.c for (i = 0; i < buf->size; i++) size 669 src/editor/editcmd.c edit_insert_column_of_text (WEdit * edit, unsigned char *data, off_t size, long width, size 678 src/editor/editcmd.c for (i = 0; i < size; i++) size 694 src/editor/editcmd.c if (p == edit->buffer.size) size 696 src/editor/editcmd.c edit_cursor_move (edit, edit->buffer.size - edit->buffer.curs1); size 1337 src/editor/editcmd.c off_t size; size 1344 src/editor/editcmd.c copy_buf = edit_get_block (edit, start_mark, end_mark, &size); size 1355 src/editor/editcmd.c edit_insert_column_of_text (edit, copy_buf, size, col_delta, &mark1, &mark2, &c1, &c2); size 1359 src/editor/editcmd.c int size_orig = size; size 1361 src/editor/editcmd.c while (size-- != 0) size 1362 src/editor/editcmd.c edit_insert_ahead (edit, copy_buf[size]); size 1403 src/editor/editcmd.c off_t size; size 1430 src/editor/editcmd.c copy_buf = edit_get_block (edit, start_mark, end_mark, &size); size 1445 src/editor/editcmd.c edit_insert_column_of_text (edit, copy_buf, size, b_width, &mark1, &mark2, &c1, &c2); size 78 src/editor/editcomplete.c if (mc_search_run (srch, (void *) esm, word_start, edit->buffer.size, &len)) size 237 src/editor/editcomplete.c last_byte = entire_file ? edit->buffer.size : word_start; size 288 src/editor/editcomplete.c last_byte = e->buffer.size; size 117 src/editor/editdraw.c if (edit->buffer.curs1 >= edit->buffer.size) size 155 src/editor/editdraw.c edit->buffer.lines + 1, (long) edit->buffer.curs1, (long) edit->buffer.size, size 172 src/editor/editdraw.c edit->buffer.lines + 1, (long) edit->buffer.curs1, (long) edit->buffer.size, size 299 src/editor/editdraw.c (long) edit->buffer.size); size 310 src/editor/editdraw.c if (edit->buffer.curs1 >= edit->buffer.size) size 442 src/editor/editsearch.c off_t end_mark = edit->buffer.size; size 461 src/editor/editsearch.c edit_calculate_start_of_next_line (&edit->buffer, start_mark, edit->buffer.size, size 465 src/editor/editsearch.c && (end_mark - 1 != edit->buffer.size size 604 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 195 src/editor/format.c strip_newlines (unsigned char *t, off_t size) size 199 src/editor/format.c for (p = t; size-- != 0; p++) size 274 src/editor/format.c next_word_start (unsigned char *t, off_t q, off_t size) size 279 src/editor/format.c for (i = q; i < size; i++) size 302 src/editor/format.c word_start (unsigned char *t, off_t q, off_t size) size 307 src/editor/format.c return next_word_start (t, q, size); size 327 src/editor/format.c format_this (unsigned char *t, off_t size, long indent, gboolean utf8) size 331 src/editor/format.c strip_newlines (t, size); size 341 src/editor/format.c if (q > size) size 345 src/editor/format.c p = word_start (t, q, size); size 347 src/editor/format.c q = next_word_start (t, q, size); /* Return the end of the word if the beginning size 378 src/editor/format.c && q < edit->buffer.size - 1) size 404 src/editor/format.c put_paragraph (WEdit * edit, unsigned char *t, off_t p, long indent, off_t size) size 414 src/editor/format.c for (i = 0; i < size; i++, p++) size 481 src/editor/format.c off_t size; size 497 src/editor/format.c size = t->len - 1; size 516 src/editor/format.c for (i = 0; i < size - 1; i++) size 532 src/editor/format.c put_paragraph (edit, t2, p, indent, size); size 512 src/editor/spell.c unsigned int size = 0; size 525 src/editor/spell.c size = mc_aspell_word_list_size (wordlist); size 527 src/editor/spell.c for (i = 0; i < size; i++) size 540 src/editor/spell.c return size; size 684 src/editor/spell.c if (edit->buffer.curs1 >= edit->buffer.size) size 1457 src/editor/syntax.c if (edit->rules != NULL && byte_index < edit->buffer.size && option_syntax_highlighting) size 171 src/filemanager/cmd.c compare_files (const vfs_path_t * vpath1, const vfs_path_t * vpath2, off_t size) size 176 src/filemanager/cmd.c if (size == 0) size 191 src/filemanager/cmd.c data1 = mmap (0, size, PROT_READ, MAP_FILE | MAP_PRIVATE, file1, 0); size 196 src/filemanager/cmd.c data2 = mmap (0, size, PROT_READ, MAP_FILE | MAP_PRIVATE, file2, 0); size 200 src/filemanager/cmd.c result = memcmp (data1, data2, size); size 201 src/filemanager/cmd.c munmap (data2, size); size 203 src/filemanager/cmd.c munmap (data1, size); size 234 src/filemanager/dir.c alloc_dir_copy (int size) size 236 src/filemanager/dir.c if (dir_copy.size < size) size 241 src/filemanager/dir.c dir_copy.list = g_new0 (file_entry_t, size); size 242 src/filemanager/dir.c dir_copy.size = size; size 262 src/filemanager/dir.c int size; size 271 src/filemanager/dir.c size = list->size + delta; size 272 src/filemanager/dir.c if (size <= 0) size 274 src/filemanager/dir.c size = DIR_LIST_MIN_SIZE; size 278 src/filemanager/dir.c if (size != list->size) size 282 src/filemanager/dir.c fe = g_try_renew (file_entry_t, list->list, size); size 287 src/filemanager/dir.c list->size = size; size 290 src/filemanager/dir.c list->len = clear_flag ? 0 : MIN (list->len, size); size 315 src/filemanager/dir.c if (list->len == list->size && !dir_list_grow (list, DIR_LIST_RESIZE_STEP)) size 546 src/filemanager/dir.c dir_list_grow (list, DIR_LIST_MIN_SIZE - list->size); size 566 src/filemanager/dir.c list->size = 0; size 578 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 4417 src/filemanager/panel.c panel->dir.size = DIR_LIST_MIN_SIZE; size 4418 src/filemanager/panel.c panel->dir.list = g_new (file_entry_t, panel->dir.size); size 5148 src/filemanager/panel.c else if (panelized_panel.list.len > panel->dir.size) size 5149 src/filemanager/panel.c dir_list_grow (&panel->dir, panelized_panel.list.len - panel->dir.size); size 5251 src/filemanager/panel.c if (panel->dir.len > panelized_panel.list.size) size 5252 src/filemanager/panel.c dir_list_grow (&panelized_panel.list, panel->dir.len - panelized_panel.list.size); size 137 src/usermenu.c extract_arg (char *p, char *arg, int size) size 148 src/usermenu.c if (np - p >= size) size 152 src/usermenu.c size -= np - p; size 1266 src/vfs/extfs/extfs.c extfs_readlink (const vfs_path_t * vpath, char *buf, size_t size) size 1289 src/vfs/extfs/extfs.c if (size < len) size 1290 src/vfs/extfs/extfs.c len = size; size 323 src/vfs/ftpfs/ftpfs_parse_ls.c long long size; size 328 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%lld%n", &size, &n) == 1 && t[n] == '\0') size 329 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = (off_t) size; size 337 src/vfs/ftpfs/ftpfs_parse_ls.c long long size; size 340 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (group_or_size, "%lld%n", &size, &n) == 1 && group_or_size[n] == '\0') size 341 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = (off_t) size; size 457 src/vfs/ftpfs/ftpfs_parse_ls.c long long size; size 505 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%lld", &size) != 1) size 507 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = (off_t) size; size 549 src/vfs/ftpfs/ftpfs_parse_ls.c off_t size = NO_SIZE; size 582 src/vfs/ftpfs/ftpfs_parse_ls.c size = size_ll; size 626 src/vfs/ftpfs/ftpfs_parse_ls.c if (size != NO_SIZE) size 627 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = size; size 658 src/vfs/ftpfs/ftpfs_parse_ls.c off_t size = NO_SIZE; size 711 src/vfs/ftpfs/ftpfs_parse_ls.c size = size_ll; size 777 src/vfs/ftpfs/ftpfs_parse_ls.c if (size != NO_SIZE) size 778 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = size; size 824 src/vfs/ftpfs/ftpfs_parse_ls.c long long size; size 839 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%lld", &size) != 1) size 907 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = (off_t) size; size 927 src/vfs/ftpfs/ftpfs_parse_ls.c long long size; size 935 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%lld", &size) != 1) size 937 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = (off_t) size; size 1021 src/vfs/ftpfs/ftpfs_parse_ls.c long long size; size 1034 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%lld", &size) == 1) size 1035 src/vfs/ftpfs/ftpfs_parse_ls.c s->st_size = (off_t) size; size 213 src/vfs/local/local.c local_readlink (const vfs_path_t * vpath, char *buf, size_t size) size 218 src/vfs/local/local.c return readlink (path_element->path, buf, size); size 363 src/vfs/sfs/sfs.c sfs_readlink (const vfs_path_t * vpath, char *buf, size_t size) size 365 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 80 src/vfs/sftpfs/internal.h int sftpfs_readlink (const vfs_path_t * vpath, char *buf, size_t size, GError ** mcerror); size 313 src/vfs/sftpfs/sftpfs.c sftpfs_cb_readlink (const vfs_path_t * vpath, char *buf, size_t size) size 318 src/vfs/sftpfs/sftpfs.c rc = sftpfs_readlink (vpath, buf, size, &mcerror); size 147 src/vfs/tar/tar.c char size[12]; /* 124 */ size 481 src/vfs/tar/tar.c size_t size; size 519 src/vfs/tar/tar.c size = 0; /* Links 0 size on tape */ size 521 src/vfs/tar/tar.c size = tar_from_oct (1 + 12, header->header.size); size 527 src/vfs/tar/tar.c return size; size 655 src/vfs/tar/tar.c off_t size; size 672 src/vfs/tar/tar.c for (size = *h_size; size > 0; size -= written) size 682 src/vfs/tar/tar.c if ((off_t) written > size) size 683 src/vfs/tar/tar.c written = (size_t) size; size 83 src/vfs/undelfs/undelfs.c unsigned long size; size 107 src/vfs/undelfs/undelfs.c off_t size; size 304 src/vfs/undelfs/undelfs.c delarray[num_delarray].size = inode.i_size; size 487 src/vfs/undelfs/undelfs.c p->size = delarray[i].size; size 592 src/vfs/undelfs/undelfs.c if (p->pos + (off_t) p->count > p->size) size 594 src/vfs/undelfs/undelfs.c p->count = p->size - p->pos; size 635 src/vfs/undelfs/undelfs.c buf->st_size = delarray[inode_index].size; size 366 src/viewer/internal.h mcview_already_loaded (off_t offset, off_t idx, size_t size) size 368 src/viewer/internal.h return (offset <= idx && idx - offset < (off_t) size); size 54 tests/src/filemanager/exec_get_export_variables_ext.c current_panel->dir.size = DIR_LIST_MIN_SIZE; size 55 tests/src/filemanager/exec_get_export_variables_ext.c current_panel->dir.list = g_new0 (file_entry_t, current_panel->dir.size);