Lines Matching defs:start
31 * @data - pointer to the start of data on the sub-buffer page
33 * @curr - offset from @data to the start of current event
35 * @next - offset from @data to the start of next event
37 * @start - The offset from @subbuffer where @data lives
53 unsigned int start;
526 kbuf->start = 16;
528 kbuf->start = 12;
530 kbuf->data = subbuffer + kbuf->start;
622 * not need to be the start of the record, the offset just needs to be
635 if (offset < kbuf->start)
638 offset -= kbuf->start;
670 * Returns the index from the start of the data part of
672 * from the start of the subbuffer. An index of zero will
685 * Returns the offset from the start of the subbuffer to the
690 return kbuf->curr + kbuf->start;
759 return kbuf->start;
782 int start;
790 start = 16;
792 start = 12;
797 if (ptr < subbuf || ptr >= subbuf + start + size)