Lines Matching defs:limit
235 Double limit = AUDIO_UNKNOWN_TIME;
237 return (Copy(to, frompos, topos, limit));
241 // and src/dest start offsets. limit is either the time to copy or
244 // limit is updated with the amount of data actually copied.
250 Double& limit)
265 if (Undefined(limit)) {
266 len = limit;
268 len = limit - (frompos - svpos);
302 limit = frompos - svpos;
305 if (limit > 0.)
329 Double& limit)
344 if (limit < 0.)
346 lim = (size_t)tohdr.Time_to_Bytes(limit);
356 limit = 0.;
363 // Limit the data transfer by the limit argument
364 if (!Undefined(limit) && (lim < bufsiz))
370 limit = tohdr.Bytes_to_Time(bufsiz);
371 topos += limit;
383 if (!Undefined(limit) && (lim < bufsiz))
386 limit = 0.;
402 limit = topos - svto;
411 frompos = svfrom + limit;