/external/perfetto/src/trace_processor/importers/proto/ |
D | graphics_event_module.cc | 41 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 …]
|
D | track_event_module.cc | 68 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()
|
D | profile_module.cc | 65 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()
|
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 | 161 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()
|
D | chrome_system_probes_module.cc | 36 const TimestampedTracePiece& ttp, in ParsePacket() argument 40 parser_.ParseProcessStats(ttp.timestamp, decoder.process_stats()); in ParsePacket()
|
D | memory_tracker_snapshot_module.cc | 34 const TimestampedTracePiece& ttp, in ParsePacket() argument 38 parser_.ParseMemoryTrackerSnapshot(ttp.timestamp, in ParsePacket()
|
D | proto_trace_parser.cc | 90 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 …]
|
D | chrome_system_probes_module.h | 36 const TimestampedTracePiece& ttp,
|
D | system_probes_module.h | 40 const TimestampedTracePiece& ttp,
|
D | android_probes_module.h | 42 const TimestampedTracePiece& ttp,
|
D | heap_graph_module.h | 36 const TimestampedTracePiece& ttp,
|
/external/perfetto/src/trace_processor/ |
D | timestamped_trace_piece.h | 152 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 …]
|
D | trace_sorter_unittest.cc | 50 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()
|
D | trace_sorter.h | 186 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/ |
D | json_trace_parser.cc | 71 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/ |
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 | 63 const TimestampedTracePiece& ttp) { in ParseFtracePacket() argument 64 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;
|
/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/perfetto/src/trace_processor/importers/fuchsia/ |
D | fuchsia_trace_parser.cc | 74 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/ |
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
|