Lines Matching full:timestamp

47 	u64			timestamp;  member
135 unsigned long long timestamp = 0; in powerpc_vpadtl_timestamp() local
141 * Formula used to get timestamp that can be co-related with in powerpc_vpadtl_timestamp()
152 timestamp = result; in powerpc_vpadtl_timestamp()
155 return timestamp; in powerpc_vpadtl_timestamp()
248 * frequency details which are needed to get timestamp which is required to
312 static int powerpc_vpadtl_run_decoder(struct powerpc_vpadtl_queue *vpaq, u64 *timestamp) in powerpc_vpadtl_run_decoder() argument
337 /* Update timestamp for the last record */ in powerpc_vpadtl_run_decoder()
338 if (vpaq_timestamp > vpaq->timestamp) in powerpc_vpadtl_run_decoder()
339 vpaq->timestamp = vpaq_timestamp; in powerpc_vpadtl_run_decoder()
342 * If the timestamp of the queue is later than timestamp of the in powerpc_vpadtl_run_decoder()
346 if (vpaq->timestamp >= *timestamp) { in powerpc_vpadtl_run_decoder()
347 *timestamp = vpaq->timestamp; in powerpc_vpadtl_run_decoder()
361 * For each of the PERF_RECORD_XX record, compare the timestamp
362 * of perf record with timestamp of top element in the auxtrace heap.
363 * Process the auxtrace queue if the timestamp of element from heap is
364 * lower than timestamp from entry in perf record.
366 * Update the timestamp of the auxtrace heap with the timestamp
369 static int powerpc_vpadtl_process_queues(struct powerpc_vpadtl *vpa, u64 timestamp) in powerpc_vpadtl_process_queues() argument
382 if (vpa->heap.heap_array[0].ordinal >= timestamp) in powerpc_vpadtl_process_queues()
393 if (ts > timestamp) in powerpc_vpadtl_process_queues()
394 ts = timestamp; in powerpc_vpadtl_process_queues()
396 ts = timestamp; in powerpc_vpadtl_process_queues()
438 * increasing order of timestamp. Allocate and setup auxtrace queues here.
440 * of timestamp. So always the lowest timestamp (entries to be processed first)
443 * To add to auxtrace heap, fetch the timestamp from first DTL entry
474 vpaq->timestamp = powerpc_vpadtl_timestamp(vpaq); in powerpc_vpadtl__setup_queue()
476 ret = auxtrace_heap__add(&vpa->heap, queue_nr, vpaq->timestamp); in powerpc_vpadtl__setup_queue()