Home
last modified time | relevance | path

Searched refs:profile_ (Results 1 – 16 of 16) 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.js75 this.profile_ = new Profile();
121 this.profile_.addFuncCode(type, name, start, size, funcAddr, state);
123 this.profile_.addCode(type, name, start, size);
129 this.profile_.moveCode(from, to);
134 this.profile_.deleteCode(start);
139 this.profile_.moveFunc(from, to);
155 var entry = this.profile_.findEntry(pc);
164 var entry = this.profile_.findEntry(pc);
174 var entry = this.profile_.findEntry(pc);
182 var entry = this.profile_.findEntry(pc);
[all …]
Dtickprocessor.js168 this.profile_ = new V8Profile(separateIc);
250 var entry = this.profile_.addLibrary(name, startAddr, endAddr, aslrSlide);
256 self.profile_.addStaticCode(fName, fStart, fEnd);
268 this.profile_.addFuncCode(type, name, start, size, funcAddr, state);
270 this.profile_.addCode(type, name, start, size);
276 this.profile_.moveCode(from, to);
281 this.profile_.deleteCode(start);
286 this.profile_.moveFunc(from, to);
330 var funcEntry = this.profile_.findEntry(tos_or_external_callback);
336 this.profile_.recordTick(this.processStack(pc, tos_or_external_callback, stack));
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dexecution_tracker.h50 const ExecutionProfile& profile() const { return profile_; } in profile()
60 ExecutionProfile profile_; variable
Dhlo_graph_dumper.cc322 profile_(profile), in HloDotDumper()
388 const HloExecutionProfile* profile_; // may be null member in xla::hlo_graph_dumper::__anon1f36c7c40111::HloDotDumper
470 if (profile_ != nullptr) { in Header()
471 auto cycles = profile_->total_cycles_executed(*computation_); in Header()
1096 if (profile_ != nullptr) { in GetInstructionNodeExtraInfo()
1097 double hlo_cycles_executed = profile_->GetCyclesTakenBy(*instr); in GetInstructionNodeExtraInfo()
1099 profile_->total_cycles_executed(*instr->parent()); in GetInstructionNodeExtraInfo()
Dexecution_tracker.cc33 profile_(profile), in AsyncExecution()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dgpu_executable.cc53 profile_(profile), in HloExecutionProfiler()
75 profile_->set_total_cycles_executed( in FinishExecution()
93 profile_->SetCyclesTakenBy( in FinishOperation()
101 HloExecutionProfile* profile_; member in xla::gpu::__anonf8cd0fcc0111::HloExecutionProfiler
/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.h346 int profile_; // VP8's profile, deduced from Config. member
Dwebp_enc.c225 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.cpp3894 const Magick::Blob &profile_) in profile() argument
3898 (void) ProfileImage(image(),name_.c_str(),(unsigned char *)profile_.data(), in profile()
3899 profile_.length(),exceptionInfo); in profile()