Home
last modified time | relevance | path

Searched refs:less (Results 1 – 25 of 42) sorted by relevance

12

/art/test/580-fp16/src-art/
DMain.java277 assertTrue(FP16.less(FP16.NEGATIVE_INFINITY, FP16.POSITIVE_INFINITY)); in testLess()
278 assertTrue(FP16.less(FP16.MAX_VALUE, FP16.POSITIVE_INFINITY)); in testLess()
279 assertFalse(FP16.less(FP16.POSITIVE_INFINITY, FP16.MAX_VALUE)); in testLess()
280 assertFalse(FP16.less(FP16.LOWEST_VALUE, FP16.NEGATIVE_INFINITY)); in testLess()
281 assertTrue(FP16.less(FP16.NEGATIVE_INFINITY, FP16.LOWEST_VALUE)); in testLess()
282 assertFalse(FP16.less(FP16.POSITIVE_ZERO, FP16.NEGATIVE_ZERO)); in testLess()
283 assertFalse(FP16.less(FP16.NEGATIVE_ZERO, FP16.POSITIVE_ZERO)); in testLess()
284 assertFalse(FP16.less(FP16.NaN, FP16.toHalf(12.3f))); in testLess()
285 assertFalse(FP16.less(FP16.toHalf(12.3f), FP16.NaN)); in testLess()
286 assertTrue(FP16.less(FP16.MIN_VALUE, FP16.MIN_NORMAL)); in testLess()
[all …]
/art/test/530-checker-loops2/
Dinfo.txt1 Test on loop optimizations, in particular around less common induction.
/art/libartbase/base/
Dtracking_safe_map.h25 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
Darena_containers.h58 template <typename T, typename Comparator = std::less<T>>
64 template <typename T, typename Comparator = std::less<T>>
67 template <typename K, typename V, typename Comparator = std::less<K>>
Dscoped_arena_containers.h56 template <typename T, typename Comparator = std::less<T>>
62 template <typename T, typename Comparator = std::less<T>>
65 template <typename K, typename V, typename Comparator = std::less<K>>
Dintrusive_forward_list.h321 merge(other, std::less<value_type>()); in merge()
351 sort(std::less<value_type>()); in sort()
Dsafe_map.h30 template <typename K, typename V, typename Comparator = std::less<K>,
/art/tools/ahat/src/main/com/android/ahat/
DSubsetSelector.java89 int less = Math.max(0, mLimit - kIncrAmount); in render() local
92 menu.appendLink(mQuery.with(mId, less), DocString.text("show less")); in render()
/art/compiler/optimizing/
Dsuperblock_cloner_test.cc160 HBasicBlockMap bb_map(std::less<HBasicBlock*>(), arena->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
161 HInstructionMap hir_map(std::less<HInstruction*>(), arena->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
302 std::less<HBasicBlock*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
304 std::less<HInstruction*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
339 std::less<HBasicBlock*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
341 std::less<HInstruction*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
376 std::less<HBasicBlock*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
378 std::less<HInstruction*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
657 HBasicBlockMap bb_map(std::less<HBasicBlock*>(), arena->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
658 HInstructionMap hir_map(std::less<HInstruction*>(), arena->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
Dgraph_visualizer.h59 instruction_intervals_(std::less<const HInstruction*>(), allocator->Adapter()),
Dblock_builder.cc44 quicken_index_for_dex_pc_(std::less<uint32_t>(), in HBasicBlockBuilder()
283 std::less<uint32_t>(), local_allocator_->Adapter(kArenaAllocGraphBuilder)); in InsertTryBoundaryBlocks()
308 std::less<uint32_t>(), local_allocator_->Adapter(kArenaAllocGraphBuilder)); in InsertTryBoundaryBlocks()
Dselect_generator.cc98 std::less<HInstruction*>(), allocator.Adapter(kArenaAllocSelectGenerator)); in Run()
Dsuperblock_cloner.cc843 live_outs_(std::less<HInstruction*>(), in SuperblockCloner()
864 std::less<HInstruction*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in IsSubgraphClonable()
1200 : bb_map_(std::less<HBasicBlock*>(), in LoopClonerSimpleHelper()
1202 hir_map_(std::less<HInstruction*>(), in LoopClonerSimpleHelper()
Dinduction_var_analysis.cc234 map_(std::less<HInstruction*>(), in HInductionVarAnalysis()
237 cycle_(std::less<HInstruction*>(), in HInductionVarAnalysis()
240 induction_(std::less<HLoopInformation*>(), in HInductionVarAnalysis()
242 cycles_(std::less<HPhi*>(), in HInductionVarAnalysis()
1199 std::less<HInstruction*>(), in AssignInfo()
/art/runtime/gc/accounting/
Dremembered_set.h47 typedef std::set<uint8_t*, std::less<uint8_t*>,
Dmod_union_table.h55 typedef std::set<uint8_t*, std::less<uint8_t*>,
/art/runtime/
Ddex_reference_collection.h40 std::less<const DexFile*>,
/art/compiler/driver/
Dcompiled_method_storage.h84 std::less<ThunkMapKey>,
Dcompiled_method_storage.cc157 thunk_map_(std::less<ThunkMapKey>(), SwapAllocator<ThunkMapValueType>(swap_space_.get())) { in CompiledMethodStorage()
/art/test/670-bitstring-type-check/
Dbuild57 // less bits for the level 1 character. 1025 classes at level 2 similarly guarantees
58 // an overflow if the number of bits for level 2 character is 10 or less. To test
/art/test/435-try-finally-without-catch/
Dinfo.txt20 special block(s) related to `catch'-less `try' statement(s), the
/art/test/503-dead-instructions/smali/
DDeadInstructions.smali60 # Provide less arguments than we should.
/art/libprofile/profile/
Dprofile_compilation_info.h164 classes(std::less<ClassReference>(), allocator->Adapter(kArenaAllocProfile)) {} in DexPcData()
610 method_map(std::less<uint16_t>(), allocator->Adapter(kArenaAllocProfile)), in DexFileData()
611 class_set(std::less<dex::TypeIndex>(), allocator->Adapter(kArenaAllocProfile)), in DexFileData()
/art/runtime/verifier/
Dregister_line-inl.h202 reg_to_lock_depths_(std::less<uint32_t>(), in RegisterLine()
/art/runtime/gc/collector/
Dgarbage_collector.cc105 return std::less()(a.first, b.first); in ExtractRssFromMincore()

12