/external/perfetto/src/trace_processor/ |
D | timestamped_trace_piece.h | 148 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 …]
|
D | trace_sorter_unittest.cc | 50 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()
|
D | trace_sorter.h | 185 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/ |
D | graphics_event_module.cc | 37 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()
|
D | track_event_module.cc | 65 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()
|
D | profile_module.cc | 61 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()
|
D | system_probes_module.cc | 56 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()
|
D | android_probes_module.cc | 116 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()
|
D | proto_trace_parser.cc | 86 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 …]
|
D | system_probes_module.h | 40 const TimestampedTracePiece& ttp,
|
D | track_event_module.h | 43 const TimestampedTracePiece& ttp,
|
D | android_probes_module.h | 42 const TimestampedTracePiece& ttp,
|
/external/perfetto/src/trace_processor/importers/json/ |
D | json_trace_parser.cc | 49 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/ |
D | cfx_rtfbreak.cpp | 501 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 …]
|
D | cfx_txtbreak.cpp | 406 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/ |
D | ftrace_module_impl.cc | 62 const TimestampedTracePiece& ttp) { in ParseFtracePacket() argument 63 util::Status res = parser_.ParseFtraceEvent(cpu, ttp); in ParseFtracePacket()
|
D | ftrace_module.h | 29 const TimestampedTracePiece& ttp);
|
D | ftrace_module_impl.h | 49 const TimestampedTracePiece& ttp) override;
|
D | ftrace_parser.cc | 187 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/ |
D | fuchsia_trace_parser.cc | 70 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/ |
D | test1519 | 18 Location: h ttp://1.2.4.5/test 56 redirecturl: http://%HOSTIP:%HTTPPORT/h%20ttp://1.2.4.5/test
|
/external/libpng/scripts/ |
D | makefile.atari | 42 all: $(LBR) pngtest.ttp 54 pngtest.ttp: pngtest.o $(LBR)
|
/external/skqp/src/compute/skc/platforms/cl_12/kernels/ |
D | prefix.cl | 74 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/ |
D | da4a93493661d01dc5f116b2dab2ffc5.0000028b.honggfuzz.cov | 1 POST /server%status/ttp/1.0 HTTP/1.1
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | da4a93493661d01dc5f116b2dab2ffc5.0000028b.honggfuzz.cov | 1 POST /server%status/ttp/1.0 HTTP/1.1
|