/art/tools/dexanalyze/ |
D | dexanalyze_experiments.h | 72 int64_t total_bytes_ = 0u; 73 int64_t total_entropy_ = 0u; 74 int64_t total_opcode_bytes_ = 0u; 75 int64_t total_opcode_entropy_ = 0u; 76 int64_t total_non_header_bytes_ = 0u; 77 int64_t total_unique_non_header_bytes_ = 0u; 79 int64_t total_end_seq_bytes_ = 0u; 80 int64_t total_advance_pc_bytes_ = 0u; 81 int64_t total_advance_line_bytes_ = 0u; 82 int64_t total_start_local_bytes_ = 0u; [all …]
|
D | dexanalyze_strings.h | 37 uint64_t time_equal_comparisons_ = 0u; 38 uint64_t time_non_equal_comparisons_ = 0u; 39 uint64_t num_comparisons_ = 0u; 56 int64_t wide_string_bytes_ = 0u; 57 int64_t ascii_string_bytes_ = 0u; 58 int64_t string_data_bytes_ = 0u; 59 int64_t total_unique_string_data_bytes_ = 0u; 60 int64_t total_shared_prefix_bytes_ = 0u; 61 int64_t total_prefix_savings_ = 0u; 62 int64_t total_prefix_dict_ = 0u; [all …]
|
D | dexanalyze_bytecode.h | 80 uint64_t output_size_ = 0u; 81 uint64_t deduped_size_ = 0u; 82 uint64_t dex_code_bytes_ = 0u; 84 uint64_t extended_field_ = 0u; 85 uint64_t extended_method_ = 0u;
|
/art/test/669-checker-break/src/ |
D | Main.java | 71 int u = a.length - 1; in breakLoop() local 73 if (l <= u) { in breakLoop() 76 if (i == u) break; in breakLoop() 110 int u = a.length - 1; in breakLoopDown() local 111 int i = u; in breakLoopDown() 112 if (u >= l) { in breakLoopDown() 172 int u = Integer.MAX_VALUE - 1; in breakLoopSafeConst() local 174 if (l <= u) { // will be removed by simplifier in breakLoopSafeConst() 177 if (i == u) break; in breakLoopSafeConst() 204 int u = Integer.MAX_VALUE; in breakLoopUnsafeConst() local [all …]
|
/art/libdexfile/dex/ |
D | test_dex_file_builder.h | 49 types_.emplace(descriptor, 0u); in AddType() 59 fields_.emplace(key, 0u); in AddField() 80 methods_.emplace(method_key, 0u); in AddMethod() 84 uint32_t location_checksum = 0u) { 95 header->link_size_ = 0u; // Unused. 96 header->link_off_ = 0u; // Unused. 97 header->map_off_ = 0u; // Unused. TODO: This is wrong. Dex files created by this builder 100 uint32_t data_section_size = 0u; 103 uint32_t string_idx = 0u; 111 header->string_ids_off_ = strings_.empty() ? 0u : string_ids_offset; [all …]
|
D | type_lookup_table.h | 49 mask_bits_(0u), in TypeLookupTable() 114 Entry() : str_offset_(0u), data_(0u) {} in Entry() 118 DCHECK_EQ(class_def_index & ~GetMask(mask_bits), 0u); in Entry() 122 DCHECK_EQ(GetNextPosDelta(mask_bits), 0u); in SetNextPosDelta() 123 DCHECK_EQ(next_pos_delta & ~GetMask(mask_bits), 0u); in SetNextPosDelta() 124 DCHECK_NE(next_pos_delta, 0u); in SetNextPosDelta() 129 return str_offset_ == 0u; in IsEmpty() 133 return GetNextPosDelta(mask_bits) == 0u; in IsLast()
|
D | class_accessor.h | 86 uint32_t index_ = 0u; 87 uint32_t access_flags_ = 0u; 88 uint32_t hiddenapi_flags_ = 0u; 144 index_ = 0u; in NextSection() 148 uint32_t code_off_ = 0u; 171 index_ = 0u; in NextSection() 393 const uint32_t num_static_fields_ = 0u; 394 const uint32_t num_instance_fields_ = 0u; 395 const uint32_t num_direct_methods_ = 0u; 396 const uint32_t num_virtual_methods_ = 0u;
|
D | class_accessor-inl.h | 54 num_static_fields_(ptr_pos_ != nullptr ? DecodeUnsignedLeb128(&ptr_pos_) : 0u), in ClassAccessor() 55 num_instance_fields_(ptr_pos_ != nullptr ? DecodeUnsignedLeb128(&ptr_pos_) : 0u), in ClassAccessor() 56 num_direct_methods_(ptr_pos_ != nullptr ? DecodeUnsignedLeb128(&ptr_pos_) : 0u), in ClassAccessor() 57 num_virtual_methods_(ptr_pos_ != nullptr ? DecodeUnsignedLeb128(&ptr_pos_) : 0u) { in ClassAccessor() 169 0u, in GetFieldsInternal() 192 0u, in GetMethodsInternal()
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 47 bss_begin_(0u), in RelativePatcherTest() 69 bss_begin_ = 0u; in TearDown() 88 bss_begin_ = 0u; in Reset() 99 CHECK_NE(method_idx, 0u); in MethodRef() 127 static_assert(kTrampolineOffset == 0u, "Unexpected trampoline offset."); in Link() 129 size_t idx = 0u; in Link() 155 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u in Link() 229 size_t idx = 0u; in CheckLinkedMethod() 273 CHECK_EQ(diff_indicator_str.length() % 3u, 0u); in DumpDiff() 278 expected_hex_str.replace(0u, remove * 3u, replacement); in DumpDiff() [all …]
|
D | code_info_table_deduper.h | 36 DCHECK_EQ(output->size(), 0u); in CodeInfoTableDeduper() 54 item = {0u, 0u}; in MakeEmpty() 57 return item.bit_size == 0u; in IsEmpty() 78 DCHECK_NE(lhs.bit_size, 0u); in operator() 79 DCHECK_NE(rhs.bit_size, 0u); in operator()
|
/art/runtime/oat/ |
D | oat_file-inl.h | 40 return 0u; in GetOatQuickMethodHeaderOffset() 48 return 0u; in GetFrameSizeInBytes() 56 return 0u; in GetCoreSpillMask() 64 return 0u; in GetFpSpillMask() 71 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u); in GetVmapTableOffset() 80 if (UNLIKELY(offset == 0u)) { in GetVmapTable() 89 return 0u; in GetQuickCodeSize() 106 bcp_dexfiles = bcp_dexfiles.SubArray(/*pos=*/ 0u, mapping_info_vector.size()); in FindBcpMappingInfo()
|
D | image.h | 123 uint32_t data_offset_ = 0u; 124 uint32_t data_size_ = 0u; 127 uint32_t image_offset_ = 0u; 128 uint32_t image_size_ = 0u; 423 return blocks_count_ != 0u; in HasCompressedBlock() 463 uint32_t image_reservation_size_ = 0u; 471 uint32_t component_count_ = 0u; 474 uint32_t image_begin_ = 0u; 477 uint32_t image_size_ = 0u; 480 uint32_t image_checksum_ = 0u; [all …]
|
D | image-inl.h | 55 for (size_t pos = 0u; pos < fields.Size(); ) { in VisitPackedArtFields() 57 for (size_t i = 0u; i < array->size(); ++i) { in VisitPackedArtFields() 71 for (size_t pos = 0u; pos < methods.Size(); ) { in VisitPackedArtMethods() 73 for (size_t i = 0u; i < array->size(); ++i) { in VisitPackedArtMethods() 79 for (size_t pos = 0u; pos < runtime_methods.Size(); ) { in VisitPackedArtMethods()
|
/art/test/2254-class-value-before-and-after-u/ |
D | Android.bp | 3 // Build rules for ART run-test `2254-class-value-before-and-after-u`. 16 name: "art-run-test-2254-class-value-before-and-after-u", 21 ":art-run-test-2254-class-value-before-and-after-u-expected-stdout", 22 ":art-run-test-2254-class-value-before-and-after-u-expected-stderr", 28 name: "art-run-test-2254-class-value-before-and-after-u-expected-stdout", 29 out: ["art-run-test-2254-class-value-before-and-after-u-expected-stdout.txt"], 36 name: "art-run-test-2254-class-value-before-and-after-u-expected-stderr", 37 out: ["art-run-test-2254-class-value-before-and-after-u-expected-stderr.txt"],
|
/art/test/952-invoke-custom/src/ |
D | TestLinkerMethodWithRange.java | 108 public static void test(int u, int v, int w, int x, int y, int z) throws Throwable { in test() argument 109 assertEquals(u + v + w + x + y + z, add(u, v, w, x, y, z)); in test() 110 System.out.println(u + v + w + x + y + z); in test() 157 public static void test(Double u, Double v, Double w, Double x, Double y, Double z) in test() argument 160 if (u != null) product *= u; in test() 166 assertEquals(product, multiply(u, v, w, x, y, z)); in test()
|
/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/ |
D | managed_stack.h | 100 return tagged_top_quick_frame_.GetTaggedSp() != 0u; in HasTopQuickFrame() 131 DCHECK_EQ(tagged_top_quick_frame_.GetTaggedSp(), 0u); in SetTopShadowFrame() 157 DCHECK_NE(tagged_sp_, 0u); in GetSpKnownNotTagged() 166 return (tagged_sp_ & 1u) != 0u; in GetGenericJniTag() 170 return (tagged_sp_ & 2u) != 0u; in GetJitJniTag()
|
D | backtrace_helper.h | 50 size_t num_frames_ = 0u; 51 const size_t max_depth_ = 0u; 52 size_t skip_count_ = 0u;
|
D | nterp_helpers-inl.h | 40 uint32_t nterp_flags = 0u; in GetNterpFastPathFlags() 41 if ((access_flags & kAccNative) == 0u && all_parameters_are_reference) { in GetNterpFastPathFlags()
|
/art/runtime/jni/ |
D | local_reference_table.h | 147 return (GetRawValue() & (1u << kFlagFree)) != 0u; in IsFree() 163 return (GetRawValue() & (1u << kFlagSerialNumber)) != 0u; in IsSerialNumber() 176 static constexpr size_t kFlagFree = 0u; 257 return (free_entries_list_ & (1u << kFlagCheckJni)) != 0u; in IsCheckJniEnabled() 372 static constexpr size_t kFlagCheckJni = 0u; 386 FirstFreeField::Update(kFreeListEnd, 0u); // kFlagCheckJni not set. 414 return kSmallLrtEntries << (table_index != 0u ? table_index - 1u : 0u); in GetTableSize() 435 (entry_index < kSmallLrtEntries) ? 0u : TruncToPowerOfTwo(entry_index); in GetEntry() 437 (entry_index < kSmallLrtEntries) ? 0u : NumTablesForSize(table_start_index); in GetEntry() 455 return serial_number != 0u && serial_number < kCheckJniEntriesPerReference; in IsValidSerialNumber()
|
/art/runtime/mirror/ |
D | method_type-inl.h | 35 return hs_->Size() != 0u; in IsValid() 40 DCHECK_EQ(hs_->Size(), 0u); in SetRType() 47 DCHECK_NE(hs_->Size(), 0u); in AddPType() 54 DCHECK_NE(hs_->Size(), 0u); in GetNumberOfPTypes() 68 DCHECK_NE(hs_->Size(), 0u); in GetRTypeHandle() 69 return hs_->GetHandle<mirror::Class>(0u); in GetRTypeHandle()
|
/art/libartbase/base/ |
D | indenter.h | 51 if (n != 0u) { in xsputn() 75 while (remaining != 0u) { in Write() 89 while (n != 0u) { in RawWrite() 92 CHECK_NE(written, 0u) << "Error writing to buffer. Disk full?"; in RawWrite() 117 : indenter_(os->rdbuf(), text, 0u),
|
D | debug_stack.h | 49 size_t IncrementRefCount() { return 0u; } in IncrementRefCount() 51 size_t GetRefCount() const { return 0u; } in GetRefCount() 78 DebugStackRefCounterImpl() : ref_count_(0u) { } in DebugStackRefCounterImpl() 83 void CheckNoRefs() const { CHECK_EQ(ref_count_, 0u); } in CheckNoRefs()
|
D | bit_utils_iterator.h | 48 BitIteratorBase() : bits_(0u) { } in BitIteratorBase() 52 DCHECK_NE(bits_, 0u); 87 DCHECK_NE(this->bits_, 0u); 98 DCHECK_NE(this->bits_, 0u);
|
D | bit_string.h | 44 BitStringChar() : data_(0u), bitlength_(0u) { } in BitStringChar() 50 DCHECK_EQ(0u, data & ~MaskLeastSignificant(bitlength_)) in BitStringChar() 212 if (bc != 0u) { in Length() 217 if (i == 0u) { in Length()
|