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             607 lib/strutil/strutilutf8.c utf8_tool_insert_space (struct utf8_tool *tool, int count)
count             609 lib/strutil/strutilutf8.c     if (count <= 0)
count             611 lib/strutil/strutilutf8.c     if (tool->remain <= (gsize) count)
count             614 lib/strutil/strutilutf8.c     memset (tool->actual, ' ', count);
count             615 lib/strutil/strutilutf8.c     tool->actual += count;
count             616 lib/strutil/strutilutf8.c     tool->remain -= count;
count             384 lib/util.c         int count;
count             396 lib/util.c         for (count = 0; p >= y; count++)
count             398 lib/util.c             if (count == 3)
count             401 lib/util.c                 count = 0;
count             559 lib/vfs/direntry.c vfs_s_read (void *fh, char *buffer, size_t count)
count             574 lib/vfs/direntry.c         return VFS_SUBCLASS (me)->linear_read (me, file, buffer, count);
count             580 lib/vfs/direntry.c         n = read (file->handle, buffer, count);
count             592 lib/vfs/direntry.c vfs_s_write (void *fh, const char *buffer, size_t count)
count             605 lib/vfs/direntry.c         n = write (file->handle, buffer, count);
count             313 lib/vfs/interface.c MC_HANDLEOP (ssize_t, read, (int handle, void *buf, size_t count), (fsinfo, buf, count))
count             314 lib/vfs/interface.c MC_HANDLEOP (ssize_t, write, (int handle, const void *buf, size_t count), (fsinfo, buf, count))
count             159 lib/vfs/vfs.h      ssize_t (*read) (void *vfs_info, char *buffer, size_t count);
count             160 lib/vfs/vfs.h      ssize_t (*write) (void *vfs_info, const char *buf, size_t count);
count             305 lib/vfs/vfs.h  ssize_t mc_read (int handle, void *buffer, size_t count);
count             306 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             252 lib/widget/history.c         if (hd->current < 0 || (size_t) hd->current >= count)
count             255 lib/widget/history.c             listbox_set_current (hd->listbox, count - 1 - (size_t) hd->current);
count            1235 lib/widget/input_complete.c             int maxlen = 0, count = 0, i;
count            1242 lib/widget/input_complete.c             for (p = in->completions + 1; *p != NULL; count++, p++)
count            1251 lib/widget/input_complete.c             if (start_y - 2 >= count)
count            1253 lib/widget/input_complete.c                 y = start_y - 2 - count;
count            1254 lib/widget/input_complete.c                 h = 2 + count;
count             535 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              44 lib/widget/mouse.h     int count;                  /* One of: GPM_SINGLE, GPM_DOUBLE, GPM_TRIPLE */
count             279 lib/widget/quick.c                 items = g_new (char *, quick_widget->u.radio.count + 1);
count             280 lib/widget/quick.c                 for (i = 0; i < (size_t) quick_widget->u.radio.count; i++)
count             284 lib/widget/quick.c                 r = radio_new (++y, x, quick_widget->u.radio.count, (const char **) items);
count             103 lib/widget/quick.h             .count = cnt,                                                       \
count             311 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             280 lib/widget/wtools.c query_dialog (const char *header, const char *text, int flags, int count, ...)
count             297 lib/widget/wtools.c     if (count > 0)
count             299 lib/widget/wtools.c         va_start (ap, count);
count             300 lib/widget/wtools.c         for (i = 0; i < count; i++)
count             314 lib/widget/wtools.c     lines += 4 + (count > 0 ? 2 : 0);
count             322 lib/widget/wtools.c     if (count > 0)
count             331 lib/widget/wtools.c         va_start (ap, count);
count             332 lib/widget/wtools.c         for (i = 0; i < count; i++)
count              74 lib/widget/wtools.h int query_dialog (const char *header, const char *text, int flags, int count, ...);
count            1189 src/editor/edit.c     long count = 0;
count            1246 src/editor/edit.c         if (count++)
count            1275 src/editor/edit.c     long count = 0;
count            1329 src/editor/edit.c         if (count++ != 0)
count             558 src/editor/editcmd.c             off_t count;
count             560 src/editor/editcmd.c             for (count = start_mark; count < end_mark; count++)
count            1398 src/editor/editcmd.c         off_t count, count_orig;
count            1406 src/editor/editcmd.c         for (count = start_mark; count < end_mark; count++)
count            1407 src/editor/editcmd.c             copy_buf[end_mark - count - 1] = edit_delete (edit, TRUE);
count            1413 src/editor/editcmd.c         count_orig = count;
count            1414 src/editor/editcmd.c         while (count-- > start_mark)
count            1415 src/editor/editcmd.c             edit_insert_ahead (edit, copy_buf[end_mark - count - 1]);
count            1150 src/editor/editwidget.c             else if (!edit->fullscreen && event->count == GPM_DOUBLE)
count            1154 src/editor/editwidget.c         else if (event->count == GPM_DOUBLE)
count            1160 src/editor/editwidget.c         else if (event->count == GPM_TRIPLE)
count             217 src/editor/syntax.c             int argc, count;
count             224 src/editor/syntax.c             count = g_strv_length (t);
count             226 src/editor/syntax.c             p = argv + count + argc;
count             450 src/editor/syntax.c                 int count;
count             453 src/editor/syntax.c                 count = p - r->keyword_first_chars;
count             454 src/editor/syntax.c                 k = SYNTAX_KEYWORD (g_ptr_array_index (r->keyword, count));
count             473 src/editor/syntax.c                     _rule.keyword = count;
count             525 src/editor/syntax.c             size_t count;
count             527 src/editor/syntax.c             for (count = 1; count < edit->rules->len; count++)
count             529 src/editor/syntax.c                 r = CONTEXT_RULE (g_ptr_array_index (edit->rules, count));
count             541 src/editor/syntax.c                         _rule._context = count;
count             544 src/editor/syntax.c                             _rule.context = count;
count             565 src/editor/syntax.c             int count;
count             568 src/editor/syntax.c             count = p - r->keyword_first_chars;
count             569 src/editor/syntax.c             k = SYNTAX_KEYWORD (g_ptr_array_index (r->keyword, count));
count             577 src/editor/syntax.c                 _rule.keyword = count;
count            1272 src/filemanager/cmd.c         size_t count = 0;
count            1283 src/filemanager/cmd.c         if (compute_dir_size (p, &dsm, &dir_count, &count, &total, FALSE) == FILE_CONT)
count            1324 src/filemanager/cmd.c             size_t count = 0;
count            1329 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            1551 src/filemanager/file.c erase_dir_iff_empty (file_op_context_t * ctx, const vfs_path_t * vpath, size_t count)
count            1558 src/filemanager/file.c     file_progress_show_count (ctx, count, ctx->progress_count);
count            1187 src/filemanager/filegui.c file_progress_show_deleting (file_op_context_t * ctx, const char *s, size_t * count)
count            1212 src/filemanager/filegui.c     if (count != NULL)
count            1213 src/filemanager/filegui.c         (*count)++;
count              37 src/filemanager/filegui.h gboolean file_progress_show_deleting (file_op_context_t * ctx, const char *path, size_t * count);
count            1278 src/filemanager/find.c     unsigned short count;
count            1293 src/filemanager/find.c     for (count = 0; count < 32; count++)
count             704 src/filemanager/hotlist.c         int len[2], count[2];   /* at most two lines of buttons */
count             708 src/filemanager/hotlist.c         count[0] = count[1] = 0;
count             718 src/filemanager/hotlist.c                 ++count[row];
count            4095 src/filemanager/panel.c         if ((event->count & GPM_DOUBLE) != 0 && (event->buttons & GPM_B_LEFT) != 0 &&
count            4343 src/filemanager/panel.c     static int count = 0;
count            4350 src/filemanager/panel.c         count = 0;
count            4354 src/filemanager/panel.c         count++;
count            4355 src/filemanager/panel.c         if ((count & 15) == 0)
count             118 src/filemanager/tree.c back_ptr (tree_entry * ptr, int *count)
count             122 src/filemanager/tree.c     for (i = 0; ptr != NULL && ptr->prev != NULL && i < *count; ptr = ptr->prev, i++)
count             125 src/filemanager/tree.c     *count = i;
count             132 src/filemanager/tree.c forw_ptr (tree_entry * ptr, int *count)
count             136 src/filemanager/tree.c     for (i = 0; ptr != NULL && ptr->next != NULL && i < *count; ptr = ptr->next, i++)
count             139 src/filemanager/tree.c     *count = i;
count            1257 src/filemanager/tree.c             else if ((event->count & GPM_DOUBLE) != 0)
count             231 src/subshell/common.c write_all (int fd, const void *buf, size_t count)
count             235 src/subshell/common.c     while (count > 0)
count             239 src/subshell/common.c         ret = write (fd, (const unsigned char *) buf + written, count);
count             252 src/subshell/common.c         count -= ret;
count             851 src/vfs/cpio/cpio.c cpio_read (void *fh, char *buffer, size_t count)
count             862 src/vfs/cpio/cpio.c     count = MIN (count, (size_t) (file->ino->st.st_size - file->pos));
count             864 src/vfs/cpio/cpio.c     res = mc_read (fd, buffer, count);
count            1110 src/vfs/extfs/extfs.c extfs_read (void *fh, char *buffer, size_t count)
count            1114 src/vfs/extfs/extfs.c     return read (file->handle, buffer, count);
count             399 src/vfs/local/local.c local_read (void *data, char *buffer, size_t count)
count             409 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             269 src/vfs/sftpfs/file.c sftpfs_read_file (vfs_file_handler_t * fh, char *buffer, size_t count, GError ** mcerror)
count             290 src/vfs/sftpfs/file.c         rc = libssh2_sftp_read (file->handle, buffer, count);
count             319 src/vfs/sftpfs/file.c sftpfs_write_file (vfs_file_handler_t * fh, const char *buffer, size_t count, GError ** mcerror)
count             333 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             442 src/vfs/sftpfs/sftpfs.c sftpfs_cb_read (void *data, char *buffer, size_t count)
count             454 src/vfs/sftpfs/sftpfs.c     rc = sftpfs_read_file (fh, buffer, count, &mcerror);
count            1129 src/vfs/tar/tar.c tar_read_sparse (vfs_file_handler_t * fh, char *buffer, size_t count)
count            1143 src/vfs/tar/tar.c         remain = MIN ((off_t) count, chunk->offset + chunk->numbytes - fh->pos);
count            1151 src/vfs/tar/tar.c             remain = MIN ((off_t) count, fh->ino->st.st_size - fh->pos);
count            1159 src/vfs/tar/tar.c             remain = MIN ((off_t) count, chunk->offset - fh->pos);
count            1227 src/vfs/tar/tar.c tar_read (void *fh, char *buffer, size_t count)
count            1240 src/vfs/tar/tar.c         res = tar_read_sparse (file, buffer, count);
count            1249 src/vfs/tar/tar.c         count = (size_t) MIN ((off_t) count, file->ino->st.st_size - file->pos);
count            1250 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             525 src/vfs/undelfs/undelfs.c     if (p->pos + (off_t) p->count < p->current)
count             541 src/vfs/undelfs/undelfs.c         if (p->pos + (off_t) p->count <= p->current + param_fs->blocksize)
count             544 src/vfs/undelfs/undelfs.c             copy_count = p->count;
count             545 src/vfs/undelfs/undelfs.c             p->finished = (p->count != 0);
count             557 src/vfs/undelfs/undelfs.c         if (p->pos + (off_t) p->count < p->current + param_fs->blocksize)
count             559 src/vfs/undelfs/undelfs.c             copy_count = (p->pos + p->count) - p->current;
count             560 src/vfs/undelfs/undelfs.c             p->finished = (p->count != 0);
count             580 src/vfs/undelfs/undelfs.c undelfs_read (void *vfs_info, char *buffer, size_t count)
count             588 src/vfs/undelfs/undelfs.c     p->count = count;
count             590 src/vfs/undelfs/undelfs.c     if (p->pos + (off_t) p->count > p->size)
count             592 src/vfs/undelfs/undelfs.c         p->count = p->size - p->pos;