OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:latency_ts
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/media/audio/cras/
cras_unified.cc
236
const struct timespec&
latency_ts
) {
240
if (
latency_ts
.tv_sec < 0 ||
latency_ts
.tv_nsec < 0) {
243
latency_usec = (
latency_ts
.tv_sec * base::Time::kMicrosecondsPerSecond) +
244
latency_ts
.tv_nsec / base::Time::kNanosecondsPerMicrosecond;
305
timespec
latency_ts
= {0, 0};
local
306
cras_client_calc_playback_latency(sample_ts, &
latency_ts
);
309
output_bus_.get(), AudioBuffersState(0, GetBytesLatency(
latency_ts
)));
cras_input.cc
242
timespec
latency_ts
= {0, 0};
local
247
cras_client_calc_capture_latency(sample_ts, &
latency_ts
);
249
latency_ts
.tv_sec * base::Time::kMicrosecondsPerSecond +
250
latency_ts
.tv_nsec / base::Time::kNanosecondsPerMicrosecond;
/external/fio/
fio.h
261
struct timeval
latency_ts
;
member in struct:thread_data
Completed in 314 milliseconds