• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/

Lines Matching refs:byte_counter

170 	dmap->byte_counter = 0;
207 dmap->byte_counter = 0;
372 dmap->byte_counter = 0;
392 dmap->byte_counter = 0;
737 if (dmap->byte_counter % dmap->fragment_size) /* There is a partial fragment */
794 active_offs = dmap->byte_counter + dmap->qhead * dmap->fragment_size;
800 active_offs += dmap->byte_counter;
876 if (dmap->byte_counter >= dmap->max_byte_counter) {
878 long decr = dmap->byte_counter;
879 dmap->byte_counter = (dmap->byte_counter % dmap->bytes_in_use);
880 decr -= dmap->byte_counter;
972 dmap->byte_counter += dmap->bytes_in_use;
973 if (dmap->byte_counter >= dmap->max_byte_counter) { /* Overflow */
974 long decr = dmap->byte_counter;
975 dmap->byte_counter = (dmap->byte_counter % dmap->bytes_in_use);
976 decr -= dmap->byte_counter;
994 dmap->byte_counter += dmap->bytes_in_use;
995 if (dmap->byte_counter >= dmap->max_byte_counter) { /* Overflow */
996 long decr = dmap->byte_counter;
997 dmap->byte_counter = (dmap->byte_counter % dmap->bytes_in_use);
998 decr -= dmap->byte_counter;
1073 dmap->byte_counter += dmap->bytes_in_use;
1074 if (dmap->byte_counter >= dmap->max_byte_counter) { /* Overflow */
1075 long decr = dmap->byte_counter;
1076 dmap->byte_counter = (dmap->byte_counter % dmap->bytes_in_use) + dmap->bytes_in_use;
1077 decr -= dmap->byte_counter;
1104 dmap->byte_counter += dmap->bytes_in_use;
1105 if (dmap->byte_counter >= dmap->max_byte_counter) { /* Overflow */
1106 long decr = dmap->byte_counter;
1107 dmap->byte_counter = (dmap->byte_counter % dmap->bytes_in_use) + dmap->bytes_in_use;
1108 decr -= dmap->byte_counter;