Lines Matching full:source
10 If you grep through the kernel source you will find a number of architecture-
15 To provide timekeeping for your platform, the clock source provides
19 provide an accurate delay source using hardware counters.
25 The purpose of the clock source is to provide a timeline for the system that
27 a Linux system will eventually read the clock source to determine exactly
30 Typically the clock source is a monotonic, atomic counter which will provide
35 The clock source shall have as high resolution as possible, and the frequency
46 When the wall-clock accuracy of the clock source isn't satisfactory, there
50 the clock source, which provides the fundamental timeline for the system.
51 These measures does not affect the clock source per se, they only adapt the
54 The clock source struct shall provide means to translate the provided counter
63 You will find a number of helper functions in the clock source code intended
68 factors using the frequency of the clock source as the only input.
77 seconds, the code handling the clock source will have to compensate for this.
78 That is the reason why the clock source struct also contains a 'mask'
79 member telling how many bits of the source are valid. This way the timekeeping
125 between accuracy compared to the clock source, you may sacrifice accuracy
127 characteristics as the clock source, i.e. it should be monotonic.
150 same counter that is also used as clock source is used for this purpose.
157 that makes sched_clock() different from the ordinary clock source.