Home
last modified time | relevance | path

Searched refs:upper_bound (Results 1 – 12 of 12) sorted by relevance

/art/libartbase/base/
Dsafe_map.h81 iterator upper_bound(const K& k) { return map_.upper_bound(k); } in upper_bound() function
82 const_iterator upper_bound(const K& k) const { return map_.upper_bound(k); } in upper_bound() function
Dbit_memory_region_test.cc46 uint32_t upper_bound = RoundUp(MinimumBitsToStore(value), kBitsPerByte) + kVarintHeaderBits; in TEST() local
49 EXPECT_GE(upper_bound, writer.NumberOfWrittenBits()); in TEST()
Dmemory_type_table.h272 auto it = ranges_.upper_bound(address); in Lookup()
Dmem_map.cc1034 auto it = gMaps->upper_bound(reinterpret_cast<void*>(ptr)); in MapInternalArtLow4GBAllocator()
/art/compiler/debug/
Delf_debug_line_writer.h228 auto dex2line = std::upper_bound( in WriteCompilationUnit()
/art/compiler/optimizing/
Dbounds_check_elimination.cc428 ValueBound upper_bound = range->GetUpper(); in Narrow() local
429 if (upper_bound.IsConstant()) { in Narrow()
430 upper = upper_bound.GetConstant(); in Narrow()
431 } else if (upper_bound.IsRelatedToArrayLength() && upper_bound.GetConstant() <= 0) { in Narrow()
433 upper = max_array_len + upper_bound.GetConstant(); in Narrow()
Dreference_type_propagation.cc215 ReferenceTypeInfo upper_bound, in ShouldCreateBoundType() argument
226 if (existing_bound_type->GetUpperBound().IsSupertypeOf(upper_bound)) { in ShouldCreateBoundType()
Dnodes.cc2822 void HBoundType::SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null) { in SetUpperBound() argument
2825 DCHECK(upper_bound.IsValid()); in SetUpperBound()
2827 CheckAgainstUpperBound(GetReferenceTypeInfo(), upper_bound); in SetUpperBound()
2829 upper_bound_ = upper_bound; in SetUpperBound()
Dnodes.h7256 void SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null);
/art/libdexfile/external/
Ddex_file_ext.cc118 auto it = method_cache_.upper_bound(dex_offset); in GetMethodCacheEntryForOffset()
/art/runtime/gc/allocator/
Drosalloc.cc375 for (auto it = free_page_runs_.upper_bound(fpr); it != free_page_runs_.end(); ) { in FreePages()
409 for (auto it = free_page_runs_.upper_bound(fpr); it != free_page_runs_.begin(); ) { in FreePages()
/art/oatdump/
Doatdump.cc693 auto it = offsets_.upper_bound(begin_offset); in ComputeSize()