Searched refs:DCHECK_LE (Results 1 - 25 of 82) sorted by relevance

1234

/art/compiler/linker/x86_64/
H A Drelative_patcher_x86_64.cc28 DCHECK_LE(patch.LiteralOffset() + 4u, code->size());
/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmServer.cc31 DCHECK_LE(offset + length, static_cast<int32_t>(data.size()));
/art/compiler/linker/x86/
H A Drelative_patcher_x86_base.cc41 DCHECK_LE(literal_offset + 4u, code->size());
H A Drelative_patcher_x86.cc44 DCHECK_LE(literal_offset, code->size());
/art/runtime/base/
H A Darray_slice.h58 DCHECK_LE(start_offset, end_offset);
78 DCHECK_LE(start_offset, end_offset);
79 DCHECK_LE(start_offset, array->size());
80 DCHECK_LE(end_offset, array->size());
H A Dbounded_fifo.h51 DCHECK_LE(size_, kMaxSize);
H A Dbit_vector-inl.h50 DCHECK_LE(start_index, BitSize());
H A Dhistogram-inl.h92 DCHECK_LE(val, max_);
95 DCHECK_LE(bucket_idx, GetBucketCount());
134 DCHECK_LE(bucket_idx, GetBucketCount());
224 DCHECK_LE(std::abs(out_data->perc_.back() - 1.0), 0.001);
/art/compiler/debug/dwarf/
H A Dwriter.h37 DCHECK_LE(value, UINT8_MAX);
43 DCHECK_LE(value, UINT16_MAX);
61 DCHECK_LE(value, UINT32_MAX);
78 DCHECK_LE(value, INT8_MAX);
84 DCHECK_LE(value, INT16_MAX);
150 DCHECK_LE(offset + UnsignedLeb128Size(value), data_->size());
/art/compiler/linker/arm/
H A Drelative_patcher_thumb2.cc35 DCHECK_LE(literal_offset + 4u, code->size());
97 DCHECK_LE(offset + 4u, code->size());
107 DCHECK_LE(offset + 4u, code.size());
H A Drelative_patcher_arm_base.cc45 DCHECK_LE(aligned_offset - unprocessed_patches_.front().second, max_positive_displacement_);
174 DCHECK_LE(target_offset - patch_offset, max_positive_displacement_);
/art/runtime/lambda/
H A Dclosure_builder.cc120 DCHECK_LE(header_size, GetSize());
131 DCHECK_LE(header_size, GetSize());
176 DCHECK_LE(var_size, sizeof(values_[i]));
/art/runtime/
H A Dlock_word-inl.h61 DCHECK_LE(mon->GetMonitorId(), static_cast<uint32_t>(kMaxMonitorId));
H A Dthread-inl.h245 DCHECK_LE(tlsPtr_.thread_local_alloc_stack_top, tlsPtr_.thread_local_alloc_stack_end);
248 DCHECK_LE(reinterpret_cast<uint8_t*>(tlsPtr_.thread_local_alloc_stack_top) +
/art/runtime/gc/accounting/
H A Dremembered_set.cc177 DCHECK_LE(space_->Begin(), start);
178 DCHECK_LE(end, space_->Limit());
H A Dspace_bitmap-inl.h67 DCHECK_LE(visit_begin, visit_end);
76 DCHECK_LE(heap_begin_, visit_begin);
77 DCHECK_LE(visit_end, HeapLimit());
H A Dbitmap-inl.h59 DCHECK_LE(bit_start, bit_end);
/art/compiler/optimizing/
H A Dstack_map_stream.cc351 DCHECK_LE(entry.inline_infos_start_index + entry.inlining_depth, inline_infos_.size());
400 DCHECK_LE(number_of_live_dex_registers, dex_register_locations_.size());
401 DCHECK_LE(start_index_in_dex_register_locations,
456 DCHECK_LE(number_of_live_dex_registers, dex_register_locations_.size());
457 DCHECK_LE(a.dex_register_locations_start_index,
459 DCHECK_LE(b.dex_register_locations_start_index,
/art/runtime/mirror/
H A Darray-inl.h82 DCHECK_LE((1U << component_size_shift), 8U);
287 DCHECK_LE(dst_pos, GetLength() - count);
289 DCHECK_LE(src_pos, src->GetLength() - count);
347 DCHECK_LE(dst_pos, GetLength() - count);
349 DCHECK_LE(src_pos, src->GetLength() - count);
393 DCHECK_LE(element, static_cast<uint64_t>(0xFFFFFFFFu));
/art/compiler/debug/
H A Delf_debug_loc_writer.h115 DCHECK_LE(pc_offset, method_info->code_size);
116 DCHECK_LE(compilation_unit_code_address, method_info->code_address);
132 DCHECK_LE(low_pc, high_pc);
/art/runtime/gc/space/
H A Dregion_space-inl.h130 DCHECK_LE(atomic_top->LoadRelaxed(), end_);
132 DCHECK_LE(new_top, end_);
273 DCHECK_LE(num_bytes, num_regs * kRegionSize);
H A Dregion_space.h382 DCHECK_LE(live_bytes_, BytesAllocated());
393 DCHECK_LE(live_bytes_, BytesAllocated());
397 DCHECK_LE(result, 100U);
410 DCHECK_LE(begin_, top_);
412 DCHECK_LE(bytes, kRegionSize);
/art/compiler/linker/
H A Drelative_patcher.cc107 DCHECK_LE(aligned_code_delta, sizeof(kPadding));
/art/compiler/utils/
H A Darray_ref.h172 DCHECK_LE(pos, size());
173 DCHECK_LE(length, size() - pos);
H A Dassembler.h123 DCHECK_LE(oldposition + size, Size());
124 DCHECK_LE(newposition + size, Size());
341 DCHECK_LE(0u, first);
342 DCHECK_LE(first, last);
343 DCHECK_LE(last, raw_data.size());

Completed in 435 milliseconds

1234