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