bytes             109 lib/tty/win.c      int bytes, i, j, cols = 0;
bytes             120 lib/tty/win.c      bytes = (y2 - y1) * (COLS + 1) + 1;  // *should* be the number of bytes read
bytes             122 lib/tty/win.c      k = g_malloc (bytes);
bytes             130 lib/tty/win.c          if (j < bytes)
bytes             137 lib/tty/win.c              if (j < bytes)
bytes             217 src/background.c     ssize_t bytes, ret;
bytes             225 src/background.c     bytes = read (fd, &routine.pointer, sizeof (routine));
bytes             226 src/background.c     if (bytes == -1 || (size_t) bytes < (sizeof (routine)))
bytes              95 src/cons.handler.c     unsigned short bytes = 0;
bytes             122 src/cons.handler.c     ret = read (pipefd2[0], &bytes, 2);
bytes             125 src/cons.handler.c     for (i = 0; i < bytes; i++)
bytes              97 src/consaver/cons.saver.c     unsigned short bytes;
bytes             122 src/consaver/cons.saver.c     bytes = lc_index;
bytes             124 src/consaver/cons.saver.c     if (write (1, &bytes, 2) != 2)
bytes             126 src/consaver/cons.saver.c     if (bytes == 0)
bytes             575 src/subshell/common.c     ssize_t bytes;
bytes             608 src/subshell/common.c             bytes = read (command_buffer_pipe[READ], subshell_response_buffer,
bytes             610 src/subshell/common.c             (void) bytes;
bytes             638 src/subshell/common.c         bytes = read (command_buffer_pipe[READ], subshell_response_buffer + response_char_length,
bytes             640 src/subshell/common.c         if (bytes <= 0
bytes             641 src/subshell/common.c             || (size_t) bytes == sizeof (subshell_response_buffer) - response_char_length)
bytes             647 src/subshell/common.c             strnlen (subshell_response_buffer + response_char_length, bytes);
bytes             648 src/subshell/common.c         if (latest_chunk_data_length < bytes)
bytes             655 src/subshell/common.c         response_char_length += bytes;
bytes             758 src/subshell/common.c parse_subshell_prompt_string (const char *buffer, size_t bytes)
bytes             770 src/subshell/common.c     for (size_t i = 0; i < bytes; i++)
bytes             894 src/subshell/common.c             const ssize_t bytes =
bytes             898 src/subshell/common.c             if (bytes == -1 && errno == EIO && !subshell_alive)
bytes             901 src/subshell/common.c             if (bytes <= 0)
bytes             914 src/subshell/common.c                 write_all (STDOUT_FILENO, pty_buffer, (size_t) bytes);
bytes             917 src/subshell/common.c                 parse_subshell_prompt_string (pty_buffer, (size_t) bytes);
bytes             923 src/subshell/common.c             const ssize_t bytes = read (subshell_pipe[READ], subshell_cwd, sizeof (subshell_cwd));
bytes             925 src/subshell/common.c             if (bytes <= 0)
bytes             933 src/subshell/common.c             subshell_cwd[(size_t) bytes - 1] = '\0';  // Squash the final '\n'
bytes             952 src/subshell/common.c             const ssize_t bytes = read (STDIN_FILENO, pty_buffer, sizeof (pty_buffer));
bytes             954 src/subshell/common.c             if (bytes <= 0)
bytes             963 src/subshell/common.c             const size_t ubytes = (size_t) bytes;
bytes            1784 src/subshell/common.c         const ssize_t bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
bytes            1788 src/subshell/common.c             write_all (STDOUT_FILENO, pty_buffer, (size_t) bytes);
bytes            1800 src/subshell/common.c     ssize_t bytes = 0;
bytes            1829 src/subshell/common.c         bytes = read (mc_global.tty.subshell_pty, pty_buffer, sizeof (pty_buffer));
bytes            1831 src/subshell/common.c         parse_subshell_prompt_string (pty_buffer, bytes);
bytes            1838 src/subshell/common.c     return (rc != 0 || bytes != 0);
bytes             309 src/viewer/display.c     int bytes;
bytes             312 src/viewer/display.c         bytes = 4;
bytes             314 src/viewer/display.c         bytes = 4 * ((cols - 9) / ((cols <= 80) ? 17 : 18));
bytes             316 src/viewer/display.c     g_assert (bytes != 0);
bytes             318 src/viewer/display.c     view->bytes_per_line = bytes;
bytes             151 src/viewer/hex.c         int bytes;  // Number of bytes already printed on the line
bytes             166 src/viewer/hex.c         for (bytes = 0; bytes < view->bytes_per_line; bytes++, from++)
bytes             287 src/viewer/hex.c             if (bytes != view->bytes_per_line - 1)
bytes             296 src/viewer/hex.c                 if (bytes % 4 == 3)
bytes             339 src/viewer/hex.c             if (text_start + bytes < r->cols)
bytes             341 src/viewer/hex.c                 widget_gotoyx (view, r->y + row, r->x + text_start + bytes);
bytes             352 src/viewer/hex.c                 view->cursor_col = text_start + bytes;
bytes              77 src/viewer/move.c         off_t bytes = view->bytes_per_line;
bytes              82 src/viewer/move.c         displaysize = view->data_area.lines * bytes;
bytes              84 src/viewer/move.c             topleft = mcview_offset_rounddown (cursor, bytes) - (displaysize - bytes);
bytes              86 src/viewer/move.c             topleft = mcview_offset_rounddown (cursor, bytes);
bytes             120 src/viewer/move.c         off_t bytes;
bytes             122 src/viewer/move.c         bytes = lines * view->bytes_per_line;
bytes             124 src/viewer/move.c         if (view->hex_cursor < bytes)
bytes             128 src/viewer/move.c             view->hex_cursor -= bytes;
bytes             131 src/viewer/move.c                 view->dpy_start = DOZ (view->dpy_start, bytes);