/art/compiler/linker/ |
D | relative_patcher_test.h | 65 bss_begin_(0u), in RelativePatcherTest() 76 CHECK_NE(method_idx, 0u); in MethodRef() 89 /* frame_size_in_bytes */ 0u, 90 /* core_spill_mask */ 0u, 91 /* fp_spill_mask */ 0u, 108 static_assert(kTrampolineOffset == 0u, "Unexpected trampoline offset."); in Link() 110 size_t idx = 0u; in Link() 136 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u in Link() 195 size_t idx = 0u; in CheckLinkedMethod() 240 CHECK_EQ(diff_indicator_str.length() % 3u, 0u); in DumpDiff() [all …]
|
D | method_bss_mapping_encoder.h | 34 entry_.index_mask = 0u; in MethodBssMappingEncoder() 49 if ((entry_.index_mask & ~(static_cast<uint32_t>(-1) << diff)) != 0u) { in TryMerge() 63 entry_.index_mask = 0u; in Reset()
|
D | relative_patcher.h | 119 : size_code_alignment_(0u), in RelativePatcher() 120 size_relative_call_thunks_(0u), in RelativePatcher() 121 size_misc_thunks_(0u) { in RelativePatcher()
|
D | multi_oat_relative_patcher.h | 59 return (it != method_offset_map_.map.end()) ? it->second - adjustment_ : 0u; in GetOffset() 89 if (offset != 0u) { // 0u indicates write error. in WriteThunks()
|
/art/compiler/utils/ |
D | test_dex_file_builder.h | 47 types_.emplace(descriptor, 0u); in AddType() 57 fields_.emplace(key, 0u); in AddField() 78 methods_.emplace(method_key, 0u); in AddMethod() 94 header->link_size_ = 0u; // Unused. in Build() 95 header->link_off_ = 0u; // Unused. in Build() 96 header->map_off_ = 0u; // Unused. TODO: This is wrong. Dex files created by this builder in Build() 99 uint32_t data_section_size = 0u; in Build() 102 uint32_t string_idx = 0u; in Build() 110 header->string_ids_off_ = strings_.empty() ? 0u : string_ids_offset; in Build() 113 uint32_t type_idx = 0u; in Build() [all …]
|
D | dedupe_set-inl.h | 42 size_t collision_sum = 0u; 43 size_t collision_max = 0u; 44 size_t total_probe_distance = 0u; 45 size_t total_size = 0u; 115 HashedKey() : hash_(0u), key_(nullptr) { }
|
/art/runtime/ |
D | oat_file-inl.h | 37 return 0u; in GetOatQuickMethodHeaderOffset() 45 return 0u; in GetQuickCodeSizeOffset() 53 return 0u; in GetFrameSizeInBytes() 61 return 0u; in GetCoreSpillMask() 69 return 0u; in GetFpSpillMask() 76 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u); in GetVmapTableOffset() 82 return 0u; in GetVmapTableOffsetOffset() 93 if (UNLIKELY(offset == 0u)) { in GetVmapTable() 102 return 0u; in GetQuickCodeSize()
|
D | indenter.h | 49 if (n != 0u) { in xsputn() 73 while (remaining != 0u) { in Write() 87 while (n != 0u) { in RawWrite() 90 CHECK_NE(written, 0u) << "Error writing to buffer. Disk full?"; in RawWrite() 115 : indenter_(os->rdbuf(), text, 0u),
|
D | backtrace_helper.h | 55 size_t num_frames_ = 0u; 56 const size_t max_depth_ = 0u; 57 size_t skip_count_ = 0u;
|
D | oat_quick_method_header.h | 179 DCHECK_EQ(code_size_ & kShouldDeoptimizeMask, 0u); in SetHasShouldDeoptimizeFlag() 192 uint32_t vmap_table_offset_ = 0u; 197 uint32_t method_info_offset_ = 0u; 202 uint32_t code_size_ = 0u;
|
D | dex_file_layout.h | 65 uint32_t offset_ = 0u; 66 uint32_t size_ = 0u;
|
D | method_reference.h | 83 size_t param1_size = (params1 != nullptr) ? params1->Size() : 0u; in SlowCompare() 85 size_t param2_size = (params2 != nullptr) ? params2->Size() : 0u; in SlowCompare()
|
D | bytecode_utils.h | 29 explicit CodeItemIterator(const DexFile::CodeItem& code_item) : CodeItemIterator(code_item, 0u) {} in CodeItemIterator() 139 index_(0u) {} in DexSwitchTableIterator()
|
/art/runtime/utils/ |
D | dex_cache_arrays_layout.h | 36 methods_offset_(0u), in DexCacheArraysLayout() 37 strings_offset_(0u), in DexCacheArraysLayout() 38 fields_offset_(0u), in DexCacheArraysLayout() 39 method_types_offset_(0u), in DexCacheArraysLayout() 40 call_sites_offset_(0u), in DexCacheArraysLayout() 41 size_(0u) { in DexCacheArraysLayout() 53 return Size() != 0u; in Valid() 121 static constexpr size_t types_offset_ = 0u;
|
/art/runtime/quick/ |
D | quick_method_frame_info.h | 29 : frame_size_in_bytes_(0u), in QuickMethodFrameInfo() 30 core_spill_mask_(0u), in QuickMethodFrameInfo() 31 fp_spill_mask_(0u) { in QuickMethodFrameInfo()
|
/art/runtime/base/ |
D | debug_stack.h | 48 size_t IncrementRefCount() { return 0u; } in IncrementRefCount() 50 size_t GetRefCount() const { return 0u; } in GetRefCount() 77 DebugStackRefCounterImpl() : ref_count_(0u) { } in DebugStackRefCounterImpl() 82 void CheckNoRefs() const { CHECK_EQ(ref_count_, 0u); } in CheckNoRefs()
|
D | bit_utils_iterator.h | 42 BitIteratorBase() : bits_(0u) { } in BitIteratorBase() 46 DCHECK_NE(bits_, 0u); 81 DCHECK_NE(this->bits_, 0u); 92 DCHECK_NE(this->bits_, 0u);
|
D | hash_set.h | 144 : num_elements_(0u), in HashSet() 145 num_buckets_(0u), in HashSet() 146 elements_until_expand_(0u), in HashSet() 160 num_elements_(0u), in HashSet() 161 num_buckets_(0u), in HashSet() 162 elements_until_expand_(0u), in HashSet() 201 other.num_elements_ = 0u; in HashSet() 202 other.num_buckets_ = 0u; in HashSet() 203 other.elements_until_expand_ = 0u; in HashSet()
|
D | bit_field.h | 37 static_assert(size != 0u, "Invalid size.");
|
/art/runtime/mirror/ |
D | accessible_object.h | 40 return SetFieldBoolean<kTransactionActive>(FlagOffset(), value ? 1u : 0u); in SetAccessible()
|
/art/compiler/ |
D | compiled_method.h | 78 DCHECK_NE(array->size(), 0u); in GetArray() 210 uint32_t custom_value1 = 0u, 211 uint32_t custom_value2 = 0u) { 302 cmp1_ = 0u; in LinkerPatch() 303 cmp2_ = 0u; in LinkerPatch()
|
/art/compiler/linker/arm/ |
D | relative_patcher_arm_base.h | 50 explicit ThunkKey(ThunkType type, uint32_t custom_value1 = 0u, uint32_t custom_value2 = 0u)
|
/art/cmdline/ |
D | memory_representation.h | 39 Memory() : Value(0u) {} in Memory()
|
/art/tools/checker/file_format/checker/ |
D | test.py | 30 checkerText = u"/// CHECK-START: pass\n" + ToUnicode(string) 79 checkerText = (u"/// CHECK-START: pass\n" + 80 u"/// CHECK" + ToUnicode(variant) + u": " + ToUnicode(string)) 371 checkerText = u"/// CHECK-START: pass\n" + ToUnicode(string)
|
/art/compiler/optimizing/ |
D | block_builder.h | 40 number_of_branches_(0u), in HBasicBlockBuilder()
|