Home
last modified time | relevance | path

Searched refs:ttp (Results 1 – 25 of 42) sorted by relevance

12

/external/perfetto/src/trace_processor/importers/proto/
Dgraphics_event_module.cc41 const TimestampedTracePiece& ttp, in ParsePacket() argument
46 ttp.timestamp, decoder.frame_timeline_event()); in ParsePacket()
49 parser_.ParseGpuCounterEvent(ttp.timestamp, decoder.gpu_counter_event()); in ParsePacket()
52 parser_.ParseGpuRenderStageEvent(ttp.timestamp, in ParsePacket()
53 ttp.packet_data.sequence_state.get(), in ParsePacket()
57 parser_.ParseGpuLog(ttp.timestamp, decoder.gpu_log()); in ParsePacket()
60 frame_parser_.ParseGraphicsFrameEvent(ttp.timestamp, in ParsePacket()
64 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
65 parser_.ParseVulkanMemoryEvent(ttp.packet_data.sequence_state.get(), in ParsePacket()
69 parser_.ParseVulkanApiEvent(ttp.timestamp, decoder.vulkan_api_event()); in ParsePacket()
[all …]
Dtrack_event_module.cc68 const TimestampedTracePiece& ttp, in ParsePacket() argument
72 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
76 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTrackEvent); in ParsePacket()
77 parser_.ParseTrackEvent(ttp.timestamp, ttp.track_event_data.get(), in ParsePacket()
82 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
87 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
Dprofile_module.cc65 const TimestampedTracePiece& ttp, in ParsePacket() argument
69 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
70 ParseStreamingProfilePacket(ttp.timestamp, in ParsePacket()
71 ttp.packet_data.sequence_state.get(), in ParsePacket()
75 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
76 ParsePerfSample(ttp.timestamp, ttp.packet_data.sequence_state.get(), in ParsePacket()
Dsystem_probes_module.cc56 const TimestampedTracePiece& ttp, in ParsePacket() argument
63 parser_.ParseProcessStats(ttp.timestamp, decoder.process_stats()); in ParsePacket()
66 parser_.ParseSysStats(ttp.timestamp, decoder.sys_stats()); in ParsePacket()
Dandroid_probes_module.cc161 const TimestampedTracePiece& ttp, in ParsePacket() argument
165 parser_.ParseBatteryCounters(ttp.timestamp, decoder.battery()); in ParsePacket()
168 parser_.ParsePowerRails(ttp.timestamp, decoder.power_rails()); in ParsePacket()
177 parser_.ParseInitialDisplayState(ttp.timestamp, in ParsePacket()
Dchrome_system_probes_module.cc36 const TimestampedTracePiece& ttp, in ParsePacket() argument
40 parser_.ParseProcessStats(ttp.timestamp, decoder.process_stats()); in ParsePacket()
Dmemory_tracker_snapshot_module.cc34 const TimestampedTracePiece& ttp, in ParsePacket() argument
38 parser_.ParseMemoryTrackerSnapshot(ttp.timestamp, in ParsePacket()
Dproto_trace_parser.cc90 void ProtoTraceParser::ParseTracePacket(int64_t ts, TimestampedTracePiece ttp) { in ParseTracePacket() argument
92 if (ttp.type == TimestampedTracePiece::Type::kTracePacket) { in ParseTracePacket()
93 data = &ttp.packet_data; in ParseTracePacket()
95 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTrackEvent); in ParseTracePacket()
96 data = ttp.track_event_data.get(); in ParseTracePacket()
102 ParseTracePacketImpl(ts, ttp, data->sequence_state.get(), packet); in ParseTracePacket()
113 const TimestampedTracePiece& ttp, in ParseTracePacketImpl() argument
138 module->ParsePacket(packet, ttp, field_id); in ParseTracePacketImpl()
170 TimestampedTracePiece ttp) { in ParseFtracePacket() argument
171 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kFtraceEvent || in ParseFtracePacket()
[all …]
Dchrome_system_probes_module.h36 const TimestampedTracePiece& ttp,
Dsystem_probes_module.h40 const TimestampedTracePiece& ttp,
Dandroid_probes_module.h42 const TimestampedTracePiece& ttp,
Dheap_graph_module.h36 const TimestampedTracePiece& ttp,
/external/perfetto/src/trace_processor/
Dtimestamped_trace_piece.h152 TimestampedTracePiece(TimestampedTracePiece&& ttp) noexcept { in TimestampedTracePiece()
156 switch (ttp.type) { in TimestampedTracePiece()
160 new (&ftrace_event) FtraceEventData(std::move(ttp.ftrace_event)); in TimestampedTracePiece()
163 new (&packet_data) TracePacketData(std::move(ttp.packet_data)); in TimestampedTracePiece()
166 new (&sched_switch) InlineSchedSwitch(std::move(ttp.sched_switch)); in TimestampedTracePiece()
169 new (&sched_waking) InlineSchedWaking(std::move(ttp.sched_waking)); in TimestampedTracePiece()
172 new (&json_value) std::string(std::move(ttp.json_value)); in TimestampedTracePiece()
176 std::unique_ptr<FuchsiaRecord>(std::move(ttp.fuchsia_record)); in TimestampedTracePiece()
180 std::unique_ptr<TrackEventData>(std::move(ttp.track_event_data)); in TimestampedTracePiece()
184 std::unique_ptr<SystraceLine>(std::move(ttp.systrace_line)); in TimestampedTracePiece()
[all …]
Dtrace_sorter_unittest.cc50 TimestampedTracePiece ttp) override { in ParseFtracePacket() argument
51 bool isNonCompact = ttp.type == TimestampedTracePiece::Type::kFtraceEvent; in ParseFtracePacket()
53 cpu, timestamp, isNonCompact ? ttp.ftrace_event.event.data() : nullptr, in ParseFtracePacket()
54 isNonCompact ? ttp.ftrace_event.event.length() : 0); in ParseFtracePacket()
60 void ParseTracePacket(int64_t ts, TimestampedTracePiece ttp) override { in ParseTracePacket() argument
61 TraceBlobView& tbv = ttp.packet_data.packet; in ParseTracePacket()
Dtrace_sorter.h186 inline void Append(TimestampedTracePiece ttp) { in Append()
187 const int64_t timestamp = ttp.timestamp; in Append()
188 events_.emplace_back(std::move(ttp)); in Append()
/external/perfetto/src/trace_processor/importers/json/
Djson_trace_parser.cc71 TimestampedTracePiece ttp) { in ParseTracePacket() argument
75 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kJsonValue || in ParseTracePacket()
76 ttp.type == TimestampedTracePiece::Type::kSystraceLine); in ParseTracePacket()
77 if (ttp.type == TimestampedTracePiece::Type::kSystraceLine) { in ParseTracePacket()
78 systrace_line_parser_.ParseLine(*ttp.systrace_line); in ParseTracePacket()
82 auto opt_value = json::ParseJsonString(base::StringView(ttp.json_value)); in ParseTracePacket()
213 perfetto::base::ignore_result(ttp); in ParseTracePacket()
/external/pdfium/xfa/fgas/layout/
Dcfx_rtfbreak.cpp501 CFX_BreakPiece& ttp = m_pCurLine->m_LinePieces[it.index]; in EndBreak_BidiLine() local
502 ttp.m_iStartPos = iStartPos; in EndBreak_BidiLine()
503 iStartPos += ttp.m_iWidth; in EndBreak_BidiLine()
514 CFX_BreakPiece& ttp = m_pCurLine->m_LinePieces[it->index]; in EndBreak_Alignment() local
516 iNetWidth = ttp.GetEndPos(); in EndBreak_Alignment()
518 bool bArabic = FX_IsOdd(ttp.m_iBidiLevel); in EndBreak_Alignment()
519 int32_t j = bArabic ? 0 : ttp.m_iChars - 1; in EndBreak_Alignment()
520 while (j > -1 && j < ttp.m_iChars) { in EndBreak_Alignment()
521 const CFX_Char* tc = ttp.GetChar(j); in EndBreak_Alignment()
552 CFX_BreakPiece& ttp = m_pCurLine->m_LinePieces[tpo.index]; in EndBreak_Alignment() local
[all …]
Dcfx_txtbreak.cpp406 CFX_BreakPiece& ttp = m_pCurLine->m_LinePieces[tpo.index]; in EndBreak_BidiLine() local
407 ttp.m_iStartPos = iStartPos; in EndBreak_BidiLine()
408 iStartPos += ttp.m_iWidth; in EndBreak_BidiLine()
422 CFX_BreakPiece& ttp = m_pCurLine->m_LinePieces[it->index]; in EndBreak_Alignment() local
424 iNetWidth = ttp.GetEndPos(); in EndBreak_Alignment()
426 bool bArabic = FX_IsOdd(ttp.m_iBidiLevel); in EndBreak_Alignment()
427 int32_t j = bArabic ? 0 : ttp.m_iChars - 1; in EndBreak_Alignment()
428 while (j > -1 && j < ttp.m_iChars) { in EndBreak_Alignment()
429 const CFX_Char* pTC = ttp.GetChar(j); in EndBreak_Alignment()
455 CFX_BreakPiece& ttp = m_pCurLine->m_LinePieces[tpo.index]; in EndBreak_Alignment() local
[all …]
/external/perfetto/src/trace_processor/importers/ftrace/
Dftrace_module_impl.cc63 const TimestampedTracePiece& ttp) { in ParseFtracePacket() argument
64 util::Status res = parser_.ParseFtraceEvent(cpu, ttp); in ParseFtracePacket()
Dftrace_module.h29 const TimestampedTracePiece& ttp);
Dftrace_module_impl.h49 const TimestampedTracePiece& ttp) override;
/external/curl/tests/data/
Dtest151918 Location: h ttp://1.2.4.5/test
56 redirecturl: http://%HOSTIP:%HTTPPORT/h%20ttp://1.2.4.5/test
/external/libpng/scripts/
Dmakefile.atari42 all: $(LBR) pngtest.ttp
54 pngtest.ttp: pngtest.o $(LBR)
/external/perfetto/src/trace_processor/importers/fuchsia/
Dfuchsia_trace_parser.cc74 void FuchsiaTraceParser::ParseTracePacket(int64_t, TimestampedTracePiece ttp) { in ParseTracePacket() argument
75 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kFuchsiaRecord); in ParseTracePacket()
76 PERFETTO_DCHECK(ttp.fuchsia_record != nullptr); in ParseTracePacket()
81 ttp.fuchsia_record->record_view()->data(), in ParseTracePacket()
82 ttp.fuchsia_record->record_view()->length()); in ParseTracePacket()
83 FuchsiaRecord* record = ttp.fuchsia_record.get(); in ParseTracePacket()
/external/skqp/src/compute/skc/platforms/cl_12/kernels/
Dprefix.cl74 SKC_ATOMIC_INT ttp[SKC_TILE_HEIGHT];
78 skc_ttp_t ttp[SKC_TILE_HEIGHT];
82 SKC_PREFIX_TTP_V ttp[SKC_PREFIX_SUBGROUP_SIZE];
86 SKC_PREFIX_SMEM_ZERO ttp[SKC_TILE_HEIGHT / SKC_PREFIX_SMEM_ZERO_WIDTH];
171 SKC_ATOMIC_ADD_LOCAL_RELAXED_SUBGROUP(smem->accum.atomic.ttp + py C, dy C); \
184 smem->accum.aN.ttp[py C] = dy C;
203 // load the ttp elements
204 SKC_PREFIX_TTP_V const ttp_v = smem->accum.vN.ttp[get_sub_group_local_id()];
231 smem->accum.zero.ttp[ii * SKC_PREFIX_SUBGROUP_SIZE + skc_subgroup_lane()] = ( 0 );
961 // flush accumulated ttp vector to block/subblock at ttpb_id

12