Home
last modified time | relevance | path

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

/art/libartbase/base/
Dsafe_map.h83 template<typename Kv> iterator upper_bound(const Kv& k) { return map_.upper_bound(k); } in upper_bound() function
84 template<typename Kv> const_iterator upper_bound(const Kv& k) const { in upper_bound() function
85 return map_.upper_bound(k); in upper_bound()
Dbit_memory_region_test.cc46 uint32_t upper_bound = RoundUp(MinimumBitsToStore(value), kBitsPerByte) + kVarintBits; in TEST() local
49 EXPECT_GE(upper_bound, writer.NumberOfWrittenBits()); in TEST()
Dmem_map.cc1052 auto it = gMaps->upper_bound(reinterpret_cast<void*>(ptr)); in MapInternalArtLow4GBAllocator()
/art/libdexfile/external/
Ddex_file_ext.cc110 auto it = method_cache_.upper_bound(dex_offset); in GetMethodCacheEntryForOffset()
176 auto it = std::upper_bound(class_cache_.begin(), class_cache_.end(), dex_offset, comp); in GetClassDefIndex()
/art/compiler/debug/
Delf_debug_line_writer.h226 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.cc176 ReferenceTypeInfo upper_bound, in ShouldCreateBoundType() argument
187 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.h7416 void SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null);
/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/runtime/
Dinstrumentation.cc135 auto i = stack->upper_bound(pop_until_); in PopFramesTo()
/art/oatdump/
Doatdump.cc696 auto it = offsets_.upper_bound(begin_offset); in ComputeSize()