Lines Matching refs:nsecs_t
32 std::optional<nsecs_t> getProperty(const char* name) { in getProperty()
107 .value_or(std::numeric_limits<nsecs_t>::max()), in PhaseOffsets()
110 PhaseOffsets::PhaseOffsets(Fps currentFps, nsecs_t vsyncPhaseOffsetNs, nsecs_t sfVSyncPhaseOffsetNs, in PhaseOffsets()
111 std::optional<nsecs_t> earlySfOffsetNs, in PhaseOffsets()
112 std::optional<nsecs_t> earlyGpuSfOffsetNs, in PhaseOffsets()
113 std::optional<nsecs_t> earlyAppOffsetNs, in PhaseOffsets()
114 std::optional<nsecs_t> earlyGpuAppOffsetNs, in PhaseOffsets()
115 nsecs_t highFpsVsyncPhaseOffsetNs, nsecs_t highFpsSfVSyncPhaseOffsetNs, in PhaseOffsets()
116 std::optional<nsecs_t> highFpsEarlySfOffsetNs, in PhaseOffsets()
117 std::optional<nsecs_t> highFpsEarlyGpuSfOffsetNs, in PhaseOffsets()
118 std::optional<nsecs_t> highFpsEarlyAppOffsetNs, in PhaseOffsets()
119 std::optional<nsecs_t> highFpsEarlyGpuAppOffsetNs, in PhaseOffsets()
120 nsecs_t thresholdForNextVsync, nsecs_t hwcMinWorkDuration) in PhaseOffsets()
137 VsyncConfigSet PhaseOffsets::constructOffsets(nsecs_t vsyncDuration) const { in constructOffsets()
146 std::chrono::nanoseconds sfOffsetToDuration(nsecs_t sfOffset, nsecs_t vsyncDuration) { in sfOffsetToDuration()
150 std::chrono::nanoseconds appOffsetToDuration(nsecs_t appOffset, nsecs_t sfOffset, in appOffsetToDuration()
151 nsecs_t vsyncDuration) { in appOffsetToDuration()
161 VsyncConfigSet PhaseOffsets::getDefaultOffsets(nsecs_t vsyncDuration) const { in getDefaultOffsets()
199 VsyncConfigSet PhaseOffsets::getHighFpsOffsets(nsecs_t vsyncDuration) const { in getHighFpsOffsets()
279 nsecs_t sfDurationToOffset(std::chrono::nanoseconds sfDuration, nsecs_t vsyncDuration) { in sfDurationToOffset()
283 nsecs_t appDurationToOffset(std::chrono::nanoseconds appDuration, in appDurationToOffset()
284 std::chrono::nanoseconds sfDuration, nsecs_t vsyncDuration) { in appDurationToOffset()
289 VsyncConfigSet WorkDuration::constructOffsets(nsecs_t vsyncDuration) const { in constructOffsets()
290 const auto sfDurationFixup = [vsyncDuration](nsecs_t duration) { in constructOffsets()
295 const auto appDurationFixup = [vsyncDuration](nsecs_t duration) { in constructOffsets()
365 WorkDuration::WorkDuration(Fps currentRefreshRate, nsecs_t sfDuration, nsecs_t appDuration, in WorkDuration()
366 nsecs_t sfEarlyDuration, nsecs_t appEarlyDuration, in WorkDuration()
367 nsecs_t sfEarlyGpuDuration, nsecs_t appEarlyGpuDuration, in WorkDuration()
368 nsecs_t hwcMinWorkDuration) in WorkDuration()