Lines Matching full:timestamps
39 nsecs_t* timestamps = reinterpret_cast<nsecs_t*>(buffer);
43 memcpy(timestamps, &refreshPeriodNano, timestampSize);
44 timestamps += 1;
46 memcpy(timestamps, desiredPresentTimesNano.array(), frameCount * timestampSize);
47 timestamps += frameCount;
49 memcpy(timestamps, actualPresentTimesNano.array(), frameCount * timestampSize);
50 timestamps += frameCount;
52 memcpy(timestamps, frameReadyTimesNano.array(), frameCount * timestampSize);
64 nsecs_t const* timestamps = reinterpret_cast<nsecs_t const*>(buffer);
67 memcpy(&refreshPeriodNano, timestamps, timestampSize);
68 timestamps += 1;
71 memcpy(desiredPresentTimesNano.editArray(), timestamps, frameCount * timestampSize);
72 timestamps += frameCount;
75 memcpy(actualPresentTimesNano.editArray(), timestamps, frameCount * timestampSize);
76 timestamps += frameCount;
79 memcpy(frameReadyTimesNano.editArray(), timestamps, frameCount * timestampSize);