Lines Matching defs:from
23 ** Xiph.Org. COPYING from each is identical and is as follows:
39 ** contributors may be used to endorse or promote products derived from
123 * packets may be available from an ogg_stream_state at one time.
141 static uint64_t ogg_page_search_do_rescale (uint64_t x, uint64_t from, uint64_t to) ;
385 ** libOgg behavior) but all packets from a page read into the stream are
414 /* Based on code from Xiph.org's Opusfile */
482 ** This code is based on op_pcm_seek_page() from Opusfile, which is in turn
483 ** based on "new search algorithm by Nicholas Vinen" from libvorbisfile.
541 ** There are no more pages in this interval from our stream
551 ** from a continued packet.
563 ** If we did find a page from another stream or without a
575 ** regardless of the stream it came from or whether or not it has a
580 /* If not from our stream, continue. */
868 ** Scale x from the range [0, from] to the range [0, to]
871 ogg_page_search_do_rescale (uint64_t x, uint64_t from, uint64_t to)
877 if (x >= from)
884 if (x >= from >> 1)
885 { x -= from - x ;