bufcntr           404 src/simh/sim_tape.c uint32 bufcntr, bufcap;                                 /* buffer counter and capacity */
bufcntr           430 src/simh/sim_tape.c         bufcntr = 0;                                    /* force an initial read */
bufcntr           434 src/simh/sim_tape.c             if (bufcntr == bufcap) {                    /* if the buffer is empty then refill it */
bufcntr           456 src/simh/sim_tape.c                     if (bufcntr == 0)                   /*   then if this is the initial read */
bufcntr           465 src/simh/sim_tape.c                     if (bufcntr == 0) {                 /*     then if this is the initial read */
bufcntr           480 src/simh/sim_tape.c                     bufcntr = 0;                        /*   to the start of the buffer */
bufcntr           483 src/simh/sim_tape.c             *bc = buffer [bufcntr++];                   /* store the metadata marker value */
bufcntr           506 src/simh/sim_tape.c                 bufcntr = bufcap;                               /* mark the buffer as invalid to force a read */
bufcntr           513 src/simh/sim_tape.c                 if (bufcntr < bufcap)                               /* if the position is within the buffer */
bufcntr           618 src/simh/sim_tape.c uint32 bufcntr, bufcap;                                 /* buffer counter and capacity */
bufcntr           647 src/simh/sim_tape.c         bufcntr = 0;                                    /* force an initial read */
bufcntr           651 src/simh/sim_tape.c             if (bufcntr == 0) {                         /* if the buffer is empty then refill it */
bufcntr           665 src/simh/sim_tape.c                 bufcntr = sim_fread (buffer, sizeof (t_mtrlnt),     /* fill the buffer */
bufcntr           679 src/simh/sim_tape.c             *bc = buffer [--bufcntr];                   /* store the metadata marker value */
bufcntr           694 src/simh/sim_tape.c                 bufcntr = 0;                                    /* mark the buffer as invalid to force a read */