HomeSort by relevance Sort by last modified time
    Searched full:info_ (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /art/compiler/debug/
elf_debug_info_writer.h 116 info_(Is64BitInstructionSet(owner_->builder_->GetIsa()), &owner->debug_abbrev_) {
127 info_.StartTag(DW_TAG_compile_unit);
128 info_.WriteString(DW_AT_producer, "Android dex2oat");
129 info_.WriteData1(DW_AT_language, DW_LANG_Java);
130 info_.WriteString(DW_AT_comp_dir, "$JAVA_SRC_ROOT");
131 info_.WriteAddr(DW_AT_low_pc, base_address + compilation_unit.code_address);
132 info_.WriteUdata(DW_AT_high_pc, dchecked_integral_cast<uint32_t>(cu_size));
133 info_.WriteSecOffset(DW_AT_stmt_list, compilation_unit.debug_line_offset);
152 size_t reference_tag_offset = info_.StartTag(DW_TAG_reference_type);
154 size_t type_attrib_offset = info_.size()
657 dwarf::DebugInfoEntryWriter<> info_; member in class:art::debug::ElfCompilationUnitWriter
    [all...]
  /external/v8/src/compiler/
frame-states.h 132 info_(info) {}
135 return info_ == nullptr ? FrameStateType::kJavaScriptFunction
136 : info_->type();
141 return info_ == nullptr ? MaybeHandle<SharedFunctionInfo>()
142 : info_->shared_info();
145 return info_ == nullptr ? 0 : info_->parameter_count();
148 return info_ == nullptr ? 0 : info_->local_count();
150 const FrameStateFunctionInfo* function_info() const { return info_; }
155 const FrameStateFunctionInfo* const info_; member in class:v8::internal::compiler::final
    [all...]
pipeline.h 28 explicit Pipeline(CompilationInfo* info) : info_(info) {}
60 CompilationInfo* info_; member in class:v8::internal::compiler::Pipeline
69 CompilationInfo* info() const { return info_; }
70 Isolate* isolate() { return info_->isolate(); }
ast-loop-assignment-analyzer.h 55 CompilationInfo* info_; member in class:v8::internal::compiler::AstLoopAssignmentAnalyzer
60 CompilationInfo* info() { return info_; }
js-inlining-heuristic.h 24 info_(info) {}
54 CompilationInfo* info_; member in class:v8::internal::compiler::final
js-inlining.h 28 info_(info),
40 CompilationInfo* info_; member in class:v8::internal::compiler::final
graph-visualizer.h 44 explicit AsC1VCompilation(const CompilationInfo* info) : info_(info) {}
45 const CompilationInfo* info_; member in struct:v8::internal::compiler::AsC1VCompilation
js-inlining.cc 302 info_->shared_info()->DebugName()->ToCString().get());
311 info_->shared_info()->DebugName()->ToCString().get());
321 info_->shared_info()->DebugName()->ToCString().get());
329 info_->shared_info()->DebugName()->ToCString().get());
342 info_->context()->native_context()) {
345 info_->shared_info()->DebugName()->ToCString().get());
361 info_->shared_info()->DebugName()->ToCString().get());
370 info_->shared_info()->DebugName()->ToCString().get());
377 if (info_->is_deoptimization_enabled()) {
384 info_->shared_info()->DebugName()->ToCString().get())
    [all...]
loop-analysis.cc 58 info_(graph->NodeCount(), {nullptr, nullptr}, zone),
75 for (NodeInfo& ni : info_) {
110 ZoneVector<NodeInfo> info_; member in class:v8::internal::compiler::LoopFinderImpl
298 NodeInfo& i = info_[node->id()];
322 for (NodeInfo& ni : info_) {
369 for (NodeInfo& ni : info_) {
  /external/freetype/include/internal/services/
svsfnt.h 75 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
78 load_, get_, info_ \
83 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
89 clazz->table_info = info_; \
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/services/
svsfnt.h 75 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
78 load_, get_, info_ \
83 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
89 clazz->table_info = info_; \
  /external/pdfium/third_party/freetype/include/freetype/internal/services/
svsfnt.h 75 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
78 load_, get_, info_ \
83 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
89 clazz->table_info = info_; \
  /external/webrtc/webrtc/base/
latebindingsymboltable.cc 63 : info_(info),
79 ASSERT(info_->dll_name != NULL);
80 return LoadFromPath(info_->dll_name);
125 for (int i = 0; i < info_->num_symbols; ++i) {
126 if (!LoadSymbol(handle_, info_->symbol_names[i], &table_[i])) {
153 memset(table_, 0, sizeof(void *) * info_->num_symbols);
latebindingsymboltable.h 59 const TableInfo *info_; member in class:rtc::LateBindingSymbolTable
  /external/libchrome/base/test/
test_file_util_posix.cc 99 : path_(path), info_(NULL), length_(0) {
100 info_ = GetPermissionInfo(path_, &length_);
101 DCHECK(info_ != NULL);
106 if (!RestorePermissionInfo(path_, info_, length_))
test_file_util.h 66 void* info_; // The opaque stored permission information. member in class:base::FilePermissionRestorer
  /external/v8/src/
safepoint-table.h 20 SafepointEntry() : info_(0), bits_(NULL) {}
22 SafepointEntry(unsigned info, uint8_t* bits) : info_(info), bits_(bits) {
29 return info_ == other.info_ && bits_ == other.bits_;
33 info_ = 0;
39 return DeoptimizationIndexField::decode(info_);
59 return ArgumentsField::decode(info_);
64 return SaveDoublesField::decode(info_);
76 unsigned info_; member in class:v8::internal::BASE_EMBEDDED
compiler.h 531 // the underlying DeferredHandleScope and stores them in info_ on
536 : deferred_(info->isolate()), info_(info) {}
538 info_->set_deferred_handles(deferred_.Detach());
543 CompilationInfo* info_; member in class:v8::internal::BASE_EMBEDDED
560 : info_(info),
576 CompilationInfo* info() const { return info_; }
580 info_->RetryOptimization(reason);
585 info_->AbortOptimization(reason);
590 DCHECK(info_->is_osr());
597 CompilationInfo* info_; member in class:v8::internal::OptimizedCompileJob
717 CompilationInfo* info_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/red/
audio_encoder_copy_red_unittest.cc 84 memset(&info_, 0, sizeof(info_));
93 RTC_CHECK_LE(info_.encoded_bytes, max_encoded_bytes);
94 memcpy(encoded, payload_, info_.encoded_bytes);
96 return info_;
99 AudioEncoder::EncodedInfo info_; member in class:webrtc::MockEncodeHelper
218 helper.info_.encoded_bytes = 17;
219 helper.info_.encoded_timestamp = timestamp_;
231 helper.info_.encoded_timestamp = timestamp_;
245 helper.info_.encoded_bytes = kPayloadLenBytes
    [all...]
  /external/v8/src/crankshaft/
lithium-codegen.h 28 CompilationInfo* info() const { return info_; }
29 Isolate* isolate() const { return info_->isolate(); }
74 CompilationInfo* const info_; member in class:v8::internal::BASE_EMBEDDED
lithium-codegen.cc 50 info_(info),
297 data->SetOptimizationId(Smi::FromInt(info_->optimization_id()));
298 if (info_->IsOptimizing()) {
301 data->SetSharedFunctionInfo(*info_->shared_info());
317 data->SetOsrAstId(Smi::FromInt(info_->osr_ast_id().ToInt()));
  /art/runtime/jit/
offline_profiling_info.cc 189 AddUintToBuffer(&buffer, static_cast<uint16_t>(info_.size()));
191 for (const auto& it : info_) {
244 auto info_it = info_.find(dex_location);
245 if (info_it == info_.end()) {
246 info_it = info_.Put(dex_location, DexFileData(checksum));
526 for (const auto& other_it : other.info_) {
527 auto info_it = info_.find(other_it.first);
528 if ((info_it != info_.end()) && (info_it->second.checksum != other_it.second.checksum)) {
534 for (const auto& other_it : other.info_) {
537 auto info_it = info_.find(other_dex_location)
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.h 108 inline CompilationInfo* info() const { return info_; }
109 inline void set_info(CompilationInfo* info) { info_ = info; }
139 CompilationInfo* info_; member in class:v8::internal::interpreter::final
  /external/webp/src/demux/
anim_decode.c 38 WebPAnimInfo info_; // Global info about the animation. member in struct:WebPAnimDecoder
109 dec->info_.canvas_width = WebPDemuxGetI(dec->demux_, WEBP_FF_CANVAS_WIDTH);
110 dec->info_.canvas_height = WebPDemuxGetI(dec->demux_, WEBP_FF_CANVAS_HEIGHT);
111 dec->info_.loop_count = WebPDemuxGetI(dec->demux_, WEBP_FF_LOOP_COUNT);
112 dec->info_.bgcolor = WebPDemuxGetI(dec->demux_, WEBP_FF_BACKGROUND_COLOR);
113 dec->info_.frame_count = WebPDemuxGetI(dec->demux_, WEBP_FF_FRAME_COUNT);
117 dec->info_.canvas_width * NUM_CHANNELS * dec->info_.canvas_height;
136 *info = dec->info_;
317 width = dec->info_.canvas_width
    [all...]
  /external/v8/src/profiler/
allocation-tracker.cc 306 info_(info) {
325 info_->line = Script::GetLineNumber(script_, start_position_);
326 info_->column = Script::GetColumnNumber(script_, start_position_);

Completed in 730 milliseconds

1 2 3 4