Home
last modified time | relevance | path

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

12

/external/perfetto/src/trace_processor/
Dtimestamped_trace_piece.h148 TimestampedTracePiece(TimestampedTracePiece&& ttp) noexcept { in TimestampedTracePiece()
152 switch (ttp.type) { in TimestampedTracePiece()
156 new (&ftrace_event) TraceBlobView(std::move(ttp.ftrace_event)); in TimestampedTracePiece()
159 new (&packet_data) TracePacketData(std::move(ttp.packet_data)); in TimestampedTracePiece()
162 new (&sched_switch) InlineSchedSwitch(std::move(ttp.sched_switch)); in TimestampedTracePiece()
165 new (&sched_waking) InlineSchedWaking(std::move(ttp.sched_waking)); in TimestampedTracePiece()
169 std::unique_ptr<Json::Value>(std::move(ttp.json_value)); in TimestampedTracePiece()
173 std::unique_ptr<FuchsiaRecord>(std::move(ttp.fuchsia_record)); in TimestampedTracePiece()
177 std::unique_ptr<TrackEventData>(std::move(ttp.track_event_data)); in TimestampedTracePiece()
181 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 isNonCompact ? ttp.ftrace_event.data() : nullptr, in ParseFtracePacket()
54 isNonCompact ? ttp.ftrace_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.h185 inline void Append(TimestampedTracePiece ttp) { in Append()
186 const int64_t timestamp = ttp.timestamp; in Append()
187 events_.emplace_back(std::move(ttp)); in Append()
/external/perfetto/src/trace_processor/importers/proto/
Dgraphics_event_module.cc37 const TimestampedTracePiece& ttp, in ParsePacket() argument
41 parser_.ParseGpuCounterEvent(ttp.timestamp, decoder.gpu_counter_event()); in ParsePacket()
44 parser_.ParseGpuRenderStageEvent(ttp.timestamp, in ParsePacket()
48 parser_.ParseGpuLog(ttp.timestamp, decoder.gpu_log()); in ParsePacket()
51 frame_parser_.ParseGraphicsFrameEvent(ttp.timestamp, in ParsePacket()
55 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
56 parser_.ParseVulkanMemoryEvent(ttp.packet_data.sequence_state, in ParsePacket()
60 parser_.ParseVulkanApiEvent(ttp.timestamp, decoder.vulkan_api_event()); in ParsePacket()
Dtrack_event_module.cc65 const TimestampedTracePiece& ttp, in ParsePacket() argument
69 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
73 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTrackEvent); in ParsePacket()
74 parser_.ParseTrackEvent(ttp.timestamp, ttp.track_event_data.get(), in ParsePacket()
79 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
84 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
Dprofile_module.cc61 const TimestampedTracePiece& ttp, in ParsePacket() argument
65 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTracePacket); in ParsePacket()
66 ParseStreamingProfilePacket(ttp.timestamp, ttp.packet_data.sequence_state, 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.cc116 const TimestampedTracePiece& ttp, in ParsePacket() argument
120 parser_.ParseBatteryCounters(ttp.timestamp, decoder.battery()); in ParsePacket()
123 parser_.ParsePowerRails(ttp.timestamp, decoder.power_rails()); in ParsePacket()
132 parser_.ParseInitialDisplayState(ttp.timestamp, in ParsePacket()
Dproto_trace_parser.cc86 void ProtoTraceParser::ParseTracePacket(int64_t ts, TimestampedTracePiece ttp) { in ParseTracePacket() argument
88 if (ttp.type == TimestampedTracePiece::Type::kTracePacket) { in ParseTracePacket()
89 data = &ttp.packet_data; in ParseTracePacket()
91 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kTrackEvent); in ParseTracePacket()
92 data = ttp.track_event_data.get(); in ParseTracePacket()
98 ParseTracePacketImpl(ts, std::move(ttp), data, packet); in ParseTracePacket()
109 TimestampedTracePiece ttp, in ParseTracePacketImpl() argument
116 modules[field_id]->ParsePacket(packet, ttp, field_id); in ParseTracePacketImpl()
169 TimestampedTracePiece ttp) { in ParseFtracePacket() argument
170 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kFtraceEvent || in ParseFtracePacket()
[all …]
Dsystem_probes_module.h40 const TimestampedTracePiece& ttp,
Dtrack_event_module.h43 const TimestampedTracePiece& ttp,
Dandroid_probes_module.h42 const TimestampedTracePiece& ttp,
/external/perfetto/src/trace_processor/importers/json/
Djson_trace_parser.cc49 TimestampedTracePiece ttp) { in ParseTracePacket() argument
53 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kJsonValue || in ParseTracePacket()
54 ttp.type == TimestampedTracePiece::Type::kSystraceLine); in ParseTracePacket()
55 if (ttp.type == TimestampedTracePiece::Type::kSystraceLine) { in ParseTracePacket()
56 systrace_line_parser_.ParseLine(*ttp.systrace_line); in ParseTracePacket()
60 const Json::Value& value = *(ttp.json_value); in ParseTracePacket()
139 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.cc62 const TimestampedTracePiece& ttp) { in ParseFtracePacket() argument
63 util::Status res = parser_.ParseFtraceEvent(cpu, ttp); in ParseFtracePacket()
Dftrace_module.h29 const TimestampedTracePiece& ttp);
Dftrace_module_impl.h49 const TimestampedTracePiece& ttp) override;
Dftrace_parser.cc187 const TimestampedTracePiece& ttp) { in ParseFtraceEvent() argument
189 int64_t ts = ttp.timestamp; in ParseFtraceEvent()
193 if (ttp.type == TimestampedTracePiece::Type::kInlineSchedSwitch) { in ParseFtraceEvent()
194 const auto& event = ttp.sched_switch; in ParseFtraceEvent()
202 if (ttp.type == TimestampedTracePiece::Type::kInlineSchedWaking) { in ParseFtraceEvent()
203 const auto& event = ttp.sched_waking; in ParseFtraceEvent()
210 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kFtraceEvent); in ParseFtraceEvent()
211 const TraceBlobView& event = ttp.ftrace_event; in ParseFtraceEvent()
/external/perfetto/src/trace_processor/importers/fuchsia/
Dfuchsia_trace_parser.cc70 void FuchsiaTraceParser::ParseTracePacket(int64_t, TimestampedTracePiece ttp) { in ParseTracePacket() argument
71 PERFETTO_DCHECK(ttp.type == TimestampedTracePiece::Type::kFuchsiaRecord); in ParseTracePacket()
72 PERFETTO_DCHECK(ttp.fuchsia_record != nullptr); in ParseTracePacket()
77 ttp.fuchsia_record->record_view()->data(), in ParseTracePacket()
78 ttp.fuchsia_record->record_view()->length()); in ParseTracePacket()
79 FuchsiaRecord* record = ttp.fuchsia_record.get(); in ParseTracePacket()
/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/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
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Dda4a93493661d01dc5f116b2dab2ffc5.0000028b.honggfuzz.cov1 POST /server%status/ttp/1.0 HTTP/1.1
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dda4a93493661d01dc5f116b2dab2ffc5.0000028b.honggfuzz.cov1 POST /server%status/ttp/1.0 HTTP/1.1

12