Home
last modified time | relevance | path

Searched refs:profile_ (Results 1 – 18 of 18) sorted by relevance

/external/perf_data_converter/src/
Dbuilder.cc30 Builder::Builder() : profile_(new Profile()) { in Builder()
32 profile_->add_string_table(""); in Builder()
40 const int64 index = profile_->string_table_size(); in StringId()
46 profile_->add_string_table(inserted.first->first); in StringId()
58 int64 index = profile_->function_size() + 1; in FunctionId()
66 auto function = profile_->add_function(); in FunctionId()
77 if (!profile_ || !Finalize()) { in Emit()
80 return Marshal(*profile_, output); in Emit()
206 if (profile_->location_size() == 0) { in Finalize()
208 for (auto &sample : *profile_->mutable_sample()) { in Finalize()
[all …]
Dbuilder.h87 std::unique_ptr<Profile> Consume() { return std::move(profile_); } in Consume()
93 Profile *mutable_profile() { return profile_.get(); } in mutable_profile()
114 std::unique_ptr<Profile> profile_; variable
/external/webrtc/webrtc/base/
Dwinfirewall.cc31 WinFirewall::WinFirewall() : mgr_(NULL), policy_(NULL), profile_(NULL) { in WinFirewall()
53 hr = policy_->get_CurrentProfile(&profile_); in Initialize()
57 return SUCCEEDED(hr) && (profile_ != NULL); in Initialize()
61 RELEASE(profile_); in Shutdown()
67 if (!profile_) in Enabled()
71 profile_->get_FirewallEnabled(&fwEnabled); in Enabled()
85 if (!profile_) in QueryAuthorizedW()
91 HRESULT hr = profile_->get_AuthorizedApplications(&apps); in QueryAuthorizedW()
129 HRESULT hr = profile_->get_AuthorizedApplications(&apps); in AddApplicationW()
Dwinfirewall.h49 INetFwProfile* profile_; variable
/external/v8/tools/
Dic-processor.js64 this.profile_ = new Profile();
123 this.profile_.addFuncCode(type, name, timestamp, start, size, funcAddr, state);
125 this.profile_.addCode(type, name, timestamp, start, size);
131 this.profile_.moveCode(from, to);
136 this.profile_.deleteCode(start);
141 this.profile_.moveFunc(from, to);
157 var entry = this.profile_.findEntry(pc);
Dtickprocessor.js199 this.profile_ = new JsonProfile();
201 this.profile_ = new V8Profile(separateIc, separateBytecodes,
287 var entry = this.profile_.addLibrary(name, startAddr, endAddr, aslrSlide);
293 self.profile_.addStaticCode(fName, fStart, fEnd);
304 this.profile_.addFuncCode(type, name, timestamp, start, size, funcAddr, state);
306 this.profile_.addCode(type, name, timestamp, start, size);
314 this.profile_.deoptCode(timestamp, code, inliningId, scriptOffset,
320 this.profile_.moveCode(from, to);
324 this.profile_.deleteCode(start);
330 this.profile_.addSourcePositions(start, script, startPos,
[all …]
Dmap-processor.js42 this.profile_ = new Profile();
113 this.profile_.addFuncCode(type, name, timestamp, start, size, funcAddr, state);
115 this.profile_.addCode(type, name, timestamp, start, size);
120 this.profile_.moveCode(from, to);
124 this.profile_.deleteCode(start);
128 this.profile_.moveFunc(from, to);
132 let entry = this.profile_.findEntry(pc);
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dhlo_execution_profiler.cc59 profile_(profile), in HloExecutionProfiler()
73 profile_->set_total_cycles_executed( in FinishExecution()
88 profile_->set_total_cycles_executed( in FinishHloComputation()
104 profile_->SetCyclesTakenBy( in FinishHloInstruction()
Dhlo_execution_profiler.h73 HloExecutionProfile* profile_; variable
/external/tensorflow/tensorflow/compiler/xla/service/
Dexecution_tracker.h50 const ExecutionProfile& profile() const { return profile_; } in profile()
60 ExecutionProfile profile_; variable
Dhlo_graph_dumper.cc316 profile_(profile), in HloDotDumper()
383 const HloExecutionProfile* profile_; // may be null member in xla::__anon7102e5d00111::HloDotDumper
465 if (profile_ != nullptr) { in Header()
466 auto cycles = profile_->total_cycles_executed(*computation_); in Header()
1161 if (profile_ != nullptr) { in GetInstructionNodeExtraInfo()
1162 double hlo_cycles_executed = profile_->GetCyclesTakenBy(*instr); in GetInstructionNodeExtraInfo()
1164 profile_->total_cycles_executed(*instr->parent()); in GetInstructionNodeExtraInfo()
Dexecution_tracker.cc33 profile_(profile), in AsyncExecution()
/external/webp/src/dec/
Dvp8i_dec.h72 uint8_t profile_; member
Dvp8_dec.c284 frm_hdr->profile_ = (bits >> 1) & 7; in VP8GetHeaders()
287 if (frm_hdr->profile_ > 3) { in VP8GetHeaders()
/external/webp/src/enc/
Dvp8i_enc.h355 int profile_; // VP8's profile, deduced from Config. member
Dwebp_enc.c232 enc->profile_ = use_filter ? ((config->filter_type == 1) ? 0 : 1) : 2; in InitVP8Encoder()
Dsyntax_enc.c175 err = PutVP8FrameHeader(pic, enc->profile_, size0); in PutWebPHeaders()
/external/ImageMagick/Magick++/lib/
DImage.cpp3956 const Magick::Blob &profile_) in profile() argument
3960 (void) ProfileImage(image(),name_.c_str(),(unsigned char *)profile_.data(), in profile()
3961 profile_.length(),exceptionInfo); in profile()