count             246 lib/strutil/strutilutf8.c     int count = 0;
count             251 lib/strutil/strutilutf8.c         count++;
count             256 lib/strutil/strutilutf8.c     return count;
count             264 lib/strutil/strutilutf8.c     int count = 0;
count             269 lib/strutil/strutilutf8.c         count++;
count             274 lib/strutil/strutilutf8.c     return count;
count             610 lib/strutil/strutilutf8.c utf8_tool_insert_space (struct utf8_tool *tool, int count)
count             612 lib/strutil/strutilutf8.c     if (count <= 0)
count             614 lib/strutil/strutilutf8.c     if (tool->remain <= (gsize) count)
count             617 lib/strutil/strutilutf8.c     memset (tool->actual, ' ', count);
count             618 lib/strutil/strutilutf8.c     tool->actual += count;
count             619 lib/strutil/strutilutf8.c     tool->remain -= count;
count             358 lib/util.c         int count;
count             370 lib/util.c         for (count = 0; p >= y; count++)
count             372 lib/util.c             if (count == 3)
count             375 lib/util.c                 count = 0;
count             556 lib/vfs/direntry.c vfs_s_read (void *fh, char *buffer, size_t count)
count             569 lib/vfs/direntry.c         return VFS_SUBCLASS (me)->linear_read (me, file, buffer, count);
count             575 lib/vfs/direntry.c         n = read (file->handle, buffer, count);
count             587 lib/vfs/direntry.c vfs_s_write (void *fh, const char *buffer, size_t count)
count             600 lib/vfs/direntry.c         n = write (file->handle, buffer, count);
count             307 lib/vfs/interface.c MC_HANDLEOP (ssize_t, read, (int handle, void *buf, size_t count), (fsinfo, buf, count))
count             308 lib/vfs/interface.c MC_HANDLEOP (ssize_t, write, (int handle, const void *buf, size_t count), (fsinfo, buf, count))
count             164 lib/vfs/vfs.h      ssize_t (*read) (void *vfs_info, char *buffer, size_t count);
count             165 lib/vfs/vfs.h      ssize_t (*write) (void *vfs_info, const char *buf, size_t count);
count             308 lib/vfs/vfs.h  ssize_t mc_read (int handle, void *buffer, size_t count);
count             309 lib/vfs/vfs.h  ssize_t mc_write (int handle, const void *buffer, size_t count);
count              60 lib/widget/history.c     size_t count;
count              86 lib/widget/history.c     he = data->count + 2;
count             210 lib/widget/history.c     size_t count;
count             224 lib/widget/history.c     count = listbox_get_length (hd->listbox);
count             228 lib/widget/history.c     hist_data.count = count;
count             251 lib/widget/history.c         if (hd->current < 0 || (size_t) hd->current >= count)
count             254 lib/widget/history.c             listbox_set_current (hd->listbox, count - 1 - (size_t) hd->current);
count            1196 lib/widget/input_complete.c             int count;
count            1210 lib/widget/input_complete.c             count = in->completions->len - 1;
count            1213 lib/widget/input_complete.c             if (start_y - 2 >= count)
count            1215 lib/widget/input_complete.c                 y = start_y - 2 - count;
count            1216 lib/widget/input_complete.c                 h = 2 + count;
count             537 lib/widget/listbox.c         if (event->count == GPM_DOUBLE)  // Double click
count             186 lib/widget/menu.c     const unsigned int count = g_list_length (menu->entries);
count             194 lib/widget/menu.c         tty_draw_box_shadow (w->y + 1, w->x + column, count + 2, menu->max_entry_len + 5,
count             198 lib/widget/menu.c     tty_draw_box (w->y + 1, w->x + column, count + 2, menu->max_entry_len + 5, FALSE);
count             200 lib/widget/menu.c     for (i = 0; i < count; i++)
count              68 lib/widget/mouse.c     event->count = global_gpm->type & (GPM_SINGLE | GPM_DOUBLE | GPM_TRIPLE);
count              45 lib/widget/mouse.h     int count;    // One of: GPM_SINGLE, GPM_DOUBLE, GPM_TRIPLE
count             276 lib/widget/quick.c             items = g_new (char *, quick_widget->u.radio.count + 1);
count             277 lib/widget/quick.c             for (i = 0; i < (size_t) quick_widget->u.radio.count; i++)
count             281 lib/widget/quick.c             r = radio_new (++y, x, quick_widget->u.radio.count, (const char **) items);
count             106 lib/widget/quick.h                 .count = cnt,                                                                      \
count             316 lib/widget/quick.h             int count;
count              82 lib/widget/radio.c         if (r->pos == r->count - 1)
count              86 lib/widget/radio.c             r->pos = r->count - 1;
count             131 lib/widget/radio.c         for (i = 0; i < r->count; i++)
count             165 lib/widget/radio.c         for (i = 0; i < r->count; i++)
count             178 lib/widget/radio.c         for (i = 0; i < r->count; i++)
count             216 lib/widget/radio.c radio_new (int y, int x, int count, const char **texts)
count             218 lib/widget/radio.c     WRect r0 = { y, x, count, 1 };
count             227 lib/widget/radio.c     r->texts = g_new (hotkey_t, count);
count             229 lib/widget/radio.c     for (i = 0; i < count; i++)
count             246 lib/widget/radio.c     r->count = count;
count              24 lib/widget/radio.h     int count;        // number of members
count              34 lib/widget/radio.h WRadio *radio_new (int y, int x, int count, const char **text);
count             239 lib/widget/wtools.c query_dialog (const char *header, const char *text, int flags, int count, ...)
count             256 lib/widget/wtools.c     if (count > 0)
count             258 lib/widget/wtools.c         va_start (ap, count);
count             259 lib/widget/wtools.c         for (i = 0; i < count; i++)
count             273 lib/widget/wtools.c     lines += 4 + (count > 0 ? 2 : 0);
count             280 lib/widget/wtools.c     if (count > 0)
count             289 lib/widget/wtools.c         va_start (ap, count);
count             290 lib/widget/wtools.c         for (i = 0; i < count; i++)
count              73 lib/widget/wtools.h int query_dialog (const char *header, const char *text, int flags, int count, ...);
count            1159 src/editor/edit.c     long count = 0;
count            1216 src/editor/edit.c         if (count++)
count            1245 src/editor/edit.c     long count = 0;
count            1299 src/editor/edit.c         if (count++ != 0)
count             550 src/editor/editcmd.c             off_t count;
count             552 src/editor/editcmd.c             for (count = start_mark; count < end_mark; count++)
count            1396 src/editor/editcmd.c         off_t count, count_orig;
count            1404 src/editor/editcmd.c         for (count = start_mark; count < end_mark; count++)
count            1405 src/editor/editcmd.c             copy_buf[end_mark - count - 1] = edit_delete (edit, TRUE);
count            1411 src/editor/editcmd.c         count_orig = count;
count            1412 src/editor/editcmd.c         while (count-- > start_mark)
count            1413 src/editor/editcmd.c             edit_insert_ahead (edit, copy_buf[end_mark - count - 1]);
count            1143 src/editor/editwidget.c             else if (edit->fullscreen == 0 && event->count == GPM_DOUBLE)
count            1147 src/editor/editwidget.c         else if (event->count == GPM_DOUBLE)
count            1153 src/editor/editwidget.c         else if (event->count == GPM_TRIPLE)
count             235 src/editor/syntax.c             int argc, count;
count             242 src/editor/syntax.c             count = g_strv_length (t);
count             244 src/editor/syntax.c             p = argv + count + argc;
count             470 src/editor/syntax.c                 int count;
count             473 src/editor/syntax.c                 count = p - r->keyword_first_chars;
count             474 src/editor/syntax.c                 k = SYNTAX_KEYWORD (g_ptr_array_index (r->keyword, count));
count             493 src/editor/syntax.c                     _rule.keyword = count;
count             544 src/editor/syntax.c             size_t count;
count             546 src/editor/syntax.c             for (count = 1; count < edit->rules->len; count++)
count             548 src/editor/syntax.c                 r = CONTEXT_RULE (g_ptr_array_index (edit->rules, count));
count             560 src/editor/syntax.c                         _rule._context = count;
count             563 src/editor/syntax.c                             _rule.context = count;
count             584 src/editor/syntax.c             int count;
count             587 src/editor/syntax.c             count = p - r->keyword_first_chars;
count             588 src/editor/syntax.c             k = SYNTAX_KEYWORD (g_ptr_array_index (r->keyword, count));
count             596 src/editor/syntax.c                 _rule.keyword = count;
count            1245 src/filemanager/cmd.c         size_t count = 0;
count            1256 src/filemanager/cmd.c         if (compute_dir_size (p, &dsm, &dir_count, &count, &total, FALSE) == FILE_CONT)
count            1298 src/filemanager/cmd.c             size_t count = 0;
count            1303 src/filemanager/cmd.c             ok = compute_dir_size (p, &dsm, &dir_count, &count, &total, FALSE) != FILE_CONT;
count             129 src/filemanager/dir.c clean_sort_keys (dir_list *list, int start, int count)
count             133 src/filemanager/dir.c     for (i = 0; i < count; i++)
count            1225 src/filemanager/filegui.c file_progress_show_deleting (file_op_context_t *ctx, const vfs_path_t *vpath, size_t *count)
count            1252 src/filemanager/filegui.c     if (count != NULL)
count            1253 src/filemanager/filegui.c         (*count)++;
count             183 src/filemanager/filegui.h                                       size_t *count);
count            1246 src/filemanager/find.c     unsigned short count;
count            1261 src/filemanager/find.c     for (count = 0; count < 32; count++)
count             696 src/filemanager/hotlist.c         int len[2], count[2];  // at most two lines of buttons
count             700 src/filemanager/hotlist.c         count[0] = count[1] = 0;
count             710 src/filemanager/hotlist.c                 ++count[row];
count            4038 src/filemanager/panel.c         if ((event->count & GPM_DOUBLE) != 0 && (event->buttons & GPM_B_LEFT) != 0
count            4278 src/filemanager/panel.c     static int count = 0;
count            4285 src/filemanager/panel.c         count = 0;
count            4289 src/filemanager/panel.c         count++;
count            4290 src/filemanager/panel.c         if ((count & 15) == 0)
count             119 src/filemanager/tree.c back_ptr (tree_entry *ptr, int *count)
count             123 src/filemanager/tree.c     for (i = 0; ptr != NULL && ptr->prev != NULL && i < *count; ptr = ptr->prev, i++)
count             126 src/filemanager/tree.c     *count = i;
count             133 src/filemanager/tree.c forw_ptr (tree_entry *ptr, int *count)
count             137 src/filemanager/tree.c     for (i = 0; ptr != NULL && ptr->next != NULL && i < *count; ptr = ptr->next, i++)
count             140 src/filemanager/tree.c     *count = i;
count            1246 src/filemanager/tree.c         else if ((event->count & GPM_DOUBLE) != 0)
count             227 src/subshell/common.c write_all (int fd, const void *buf, size_t count)
count             231 src/subshell/common.c     while (count > 0)
count             235 src/subshell/common.c         ret = write (fd, (const unsigned char *) buf + written, count);
count             248 src/subshell/common.c         count -= ret;
count             847 src/vfs/cpio/cpio.c cpio_read (void *fh, char *buffer, size_t count)
count             858 src/vfs/cpio/cpio.c     count = MIN (count, (size_t) (file->ino->st.st_size - file->pos));
count             860 src/vfs/cpio/cpio.c     res = mc_read (fd, buffer, count);
count            1125 src/vfs/extfs/extfs.c extfs_read (void *fh, char *buffer, size_t count)
count            1129 src/vfs/extfs/extfs.c     return read (file->handle, buffer, count);
count             397 src/vfs/local/local.c local_read (void *data, char *buffer, size_t count)
count             407 src/vfs/local/local.c     while ((n = read (fd, buffer, count)) == -1)
count              26 src/vfs/local/local.h extern ssize_t local_read (void *data, char *buffer, size_t count);
count             270 src/vfs/sftpfs/file.c sftpfs_read_file (vfs_file_handler_t *fh, char *buffer, size_t count, GError **mcerror)
count             291 src/vfs/sftpfs/file.c         rc = libssh2_sftp_read (file->handle, buffer, count);
count             320 src/vfs/sftpfs/file.c sftpfs_write_file (vfs_file_handler_t *fh, const char *buffer, size_t count, GError **mcerror)
count             334 src/vfs/sftpfs/file.c         rc = libssh2_sftp_write (file->handle, buffer, count);
count             105 src/vfs/sftpfs/internal.h ssize_t sftpfs_read_file (vfs_file_handler_t *fh, char *buffer, size_t count, GError **mcerror);
count             106 src/vfs/sftpfs/internal.h ssize_t sftpfs_write_file (vfs_file_handler_t *fh, const char *buffer, size_t count,
count             437 src/vfs/sftpfs/sftpfs.c sftpfs_cb_read (void *data, char *buffer, size_t count)
count             449 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_read_file (fh, buffer, count, &mcerror);
count            1115 src/vfs/tar/tar.c tar_read_sparse (vfs_file_handler_t *fh, char *buffer, size_t count)
count            1129 src/vfs/tar/tar.c         remain = MIN ((off_t) count, chunk->offset + chunk->numbytes - fh->pos);
count            1137 src/vfs/tar/tar.c             remain = MIN ((off_t) count, fh->ino->st.st_size - fh->pos);
count            1145 src/vfs/tar/tar.c             remain = MIN ((off_t) count, chunk->offset - fh->pos);
count            1213 src/vfs/tar/tar.c tar_read (void *fh, char *buffer, size_t count)
count            1226 src/vfs/tar/tar.c         res = tar_read_sparse (file, buffer, count);
count            1235 src/vfs/tar/tar.c         count = (size_t) MIN ((off_t) count, file->ino->st.st_size - file->pos);
count            1236 src/vfs/tar/tar.c         res = mc_read (fd, buffer, count);
count             110 src/vfs/undelfs/undelfs.c     size_t count;       // bytes to read
count             228 src/vfs/undelfs/undelfs.c     int retval, count;
count             259 src/vfs/undelfs/undelfs.c     count = 0;
count             262 src/vfs/undelfs/undelfs.c         if ((count++ % 1024) == 0)
count             263 src/vfs/undelfs/undelfs.c             vfs_print_message (_ ("undelfs: loading deleted files information %d inodes"), count);
count             524 src/vfs/undelfs/undelfs.c     if (p->pos + (off_t) p->count < p->current)
count             540 src/vfs/undelfs/undelfs.c         if (p->pos + (off_t) p->count <= p->current + param_fs->blocksize)
count             543 src/vfs/undelfs/undelfs.c             copy_count = p->count;
count             544 src/vfs/undelfs/undelfs.c             p->finished = (p->count != 0);
count             556 src/vfs/undelfs/undelfs.c         if (p->pos + (off_t) p->count < p->current + param_fs->blocksize)
count             558 src/vfs/undelfs/undelfs.c             copy_count = (p->pos + p->count) - p->current;
count             559 src/vfs/undelfs/undelfs.c             p->finished = (p->count != 0);
count             579 src/vfs/undelfs/undelfs.c undelfs_read (void *vfs_info, char *buffer, size_t count)
count             587 src/vfs/undelfs/undelfs.c     p->count = count;
count             589 src/vfs/undelfs/undelfs.c     if (p->pos + (off_t) p->count > p->size)
count             591 src/vfs/undelfs/undelfs.c         p->count = p->size - p->pos;